/* Магазини ДАР — стилове
   Палитрата идва от логото: оранжево #FD8103, зелено листо #77BD1F,
   и от фасадите на магазините: графит #25282B. */

:root {
  --orange: #FD8103;
  --orange-2: #FF9A2E;
  --orange-ink: #B85300;
  --orange-soft: #FFE8CC;
  --green: #77BD1F;
  --green-2: #9ED45A;
  --green-ink: #3F7410;
  --green-soft: #E7F5D3;
  --forest: #1F4D2B;
  --char: #25282B;
  --char-2: #2F3337;
  --ink: #1E2124;
  --muted: #5B6167;
  --cream: #FFF8EE;
  --paper: #FFFFFF;
  --line: #F0E4D2;
  --glovo: #FFC244;

  --r-s: 12px;
  --r-m: 20px;
  --r-l: 32px;
  --shadow: 0 18px 40px -22px rgba(110, 52, 0, .35), 0 2px 6px -2px rgba(110, 52, 0, .08);
  --shadow-lg: 0 30px 70px -30px rgba(80, 36, 0, .45);
  --font-d: "Unbounded", "Manrope", system-ui, sans-serif;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1240px;
  --gut: clamp(16px, 4vw, 32px);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0;
  font: 500 16px/1.6 var(--font);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  /* българските форми на буквите (т, д, л…) само в големите заглавия — в текста четат по-трудно */
  font-feature-settings: "locl" 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, .stat b, .tl b, .nf b, .sticker { font-feature-settings: "locl" 1; }
h1, h2, h3, h4 { font-family: var(--font-d); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); letter-spacing: -.01em; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--char); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gut); }
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font: 700 .78rem/1 var(--font); letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange-ink); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 22px; height: 12px; background: var(--green); border-radius: 0 100% 0 100%; transform: rotate(-12deg); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 60ch; }
.hl { position: relative; white-space: nowrap; z-index: 0; }
.hl::after {
  content: ""; position: absolute; left: -.08em; right: -.08em; bottom: .06em; height: .38em; z-index: -1;
  background: var(--orange); border-radius: .2em; transform: rotate(-1.5deg);
}
.hl--green::after { background: var(--green-2); }

/* ------------------------------------------------ бутони */
.btn {
  --bg: var(--char); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 52px; padding: .8em 1.5em; border-radius: 999px; border: 0;
  background: var(--bg); color: var(--fg); text-decoration: none; cursor: pointer;
  font: 800 1rem/1.1 var(--font); letter-spacing: .01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  box-shadow: 0 10px 22px -12px rgba(0, 0, 0, .45);
}
.btn:hover { transform: translateY(-2px) rotate(-.6deg); box-shadow: 0 16px 28px -14px rgba(0, 0, 0, .5); }
.btn:active { transform: translateY(0) scale(.98); }
.btn--primary { --bg: var(--orange); --fg: var(--ink); }
.btn--primary:hover { --bg: var(--orange-2); }
.btn--green { --bg: var(--green); --fg: var(--ink); }
.btn--glovo { --bg: var(--glovo); --fg: var(--ink); }
.btn--light { --bg: #fff; --fg: var(--ink); }
.btn--ghost { --bg: transparent; --fg: var(--ink); box-shadow: inset 0 0 0 2px currentColor; }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px currentColor; }
.btn--sm { min-height: 42px; padding: .6em 1.1em; font-size: .92rem; }
.btn .icon { width: 1.15em; height: 1.15em; }

/* ------------------------------------------------ хедър */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 238, .86);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px -24px rgba(80, 36, 0, .5); }
.nav { display: flex; align-items: center; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; flex: none; }
.brand img { width: 54px; height: auto; transition: transform .4s var(--ease); }
.brand:hover img { transform: rotate(-6deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font: 700 1.05rem var(--font-d); letter-spacing: -.01em; }
.brand-text small { font-size: .74rem; color: var(--muted); font-weight: 700; }
.menu { display: flex; gap: 4px; list-style: none; margin: 0 0 0 auto; padding: 0; }
.menu a {
  position: relative; display: block; padding: .6em 1em; border-radius: 999px;
  text-decoration: none; font-weight: 800; font-size: .96rem; transition: background .2s;
}
.menu a:hover { background: var(--orange-soft); }
.menu a[aria-current="page"] { background: var(--char); color: #fff; }
.nav-cta { display: flex; gap: 10px; }
.burger { display: none; margin-left: auto; width: 48px; height: 48px; border-radius: 50%; border: 0; background: var(--char); color: #fff; cursor: pointer; place-items: center; }
.burger .icon { width: 22px; height: 22px; }

@media (max-width: 1060px) {
  .nav-cta .btn--glovo span { display: none; }
}
@media (max-width: 920px) {
  .nav { height: 68px; }
  .brand img { width: 46px; }
  .burger { display: grid; }
  .nav-cta { display: none; }
  .menu {
    position: fixed; inset: 68px 0 auto 0; flex-direction: column; gap: 6px;
    background: var(--cream); padding: 18px var(--gut) 28px; border-bottom: 1px solid var(--line);
    box-shadow: 0 30px 40px -30px rgba(0, 0, 0, .35);
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: .25s var(--ease);
  }
  .menu a { font: 700 1.3rem var(--font-d); padding: .7em .9em; }
  .menu .menu-extra { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
  .menu .menu-extra a { font: 800 1rem var(--font); padding: .8em 1.3em; }
  body.menu-open .menu { transform: none; opacity: 1; visibility: visible; }
}
@media (min-width: 921px) { .menu .menu-extra { display: none; } }

/* ------------------------------------------------ герой (начало) */
.hero { position: relative; padding: clamp(28px, 5vw, 64px) 0 clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.hero h1 { margin-bottom: .4em; }
.hero .lead { margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 2rem; }
.hero-live {
  display: inline-flex; align-items: center; gap: 12px; padding: 10px 18px 10px 12px;
  background: #fff; border-radius: 999px; box-shadow: var(--shadow); font-weight: 700; font-size: .95rem;
}
.hero-live b { font-family: var(--font-d); }
.pulse { width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(119, 189, 31, .6); animation: pulse 1.8s infinite; flex: none; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(119, 189, 31, 0); } 100% { box-shadow: 0 0 0 0 rgba(119, 189, 31, 0); } }

.hero-visual { position: relative; min-height: 520px; }
.hero-blob {
  position: absolute; inset: 6% 2% 4% 8%;
  background: var(--orange); border-radius: 46% 54% 42% 58% / 38% 44% 56% 62%;
  animation: blob 14s ease-in-out infinite alternate;
}
@keyframes blob { to { border-radius: 58% 42% 55% 45% / 50% 38% 62% 50%; transform: rotate(6deg); } }
.hero-card {
  position: absolute; border-radius: var(--r-m); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-lg); transition: transform .5s var(--ease);
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card--cover { width: 52%; aspect-ratio: 1211 / 1713; left: 8%; top: 4%; transform: rotate(-6deg); z-index: 2; border: 6px solid #fff; }
.hero-card--store { width: 58%; aspect-ratio: 16 / 10; right: 0; bottom: 6%; transform: rotate(4deg); z-index: 3; border: 6px solid #fff; }
.hero-visual:hover .hero-card--cover { transform: rotate(-9deg) translateY(-6px); }
.hero-visual:hover .hero-card--store { transform: rotate(6deg) translateX(6px); }
.sticker {
  position: absolute; z-index: 4; right: 6%; top: 2%;
  width: 132px; height: 132px; border-radius: 50%;
  background: var(--green); color: var(--ink); display: grid; place-items: center; text-align: center;
  font: 700 .82rem/1.15 var(--font-d); box-shadow: var(--shadow); transform: rotate(10deg);
  animation: wobble 5s ease-in-out infinite;
}
.sticker b { display: block; font-size: 1.6rem; letter-spacing: -.03em; }
@keyframes wobble { 50% { transform: rotate(-4deg) scale(1.04); } }
.leaf {
  position: absolute; width: 60px; height: 34px; background: var(--green);
  border-radius: 0 100% 0 100%; z-index: 1; opacity: .95;
  animation: sway 6s ease-in-out infinite alternate;
}
.leaf::after { content: ""; position: absolute; left: 12%; right: 12%; top: 50%; height: 2px; background: rgba(255, 255, 255, .5); transform: rotate(-24deg); }
@keyframes sway { to { transform: translate(8px, -14px) rotate(18deg); } }
.hero .leaf--1 { left: 0; top: 60%; transform: rotate(-20deg); }
.hero .leaf--2 { right: 2%; top: 44%; width: 44px; height: 26px; animation-delay: -2s; }
.hero .leaf--3 { left: 44%; bottom: 0; width: 38px; height: 22px; animation-delay: -4s; background: var(--green-2); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 0; aspect-ratio: 1 / .95; max-width: 520px; width: 100%; margin: 0 auto; }
  .sticker { width: 104px; height: 104px; font-size: .7rem; }
  .sticker b { font-size: 1.25rem; }
}

/* ------------------------------------------------ вълна като в логото */
.wave { display: block; width: 100%; height: clamp(40px, 6vw, 90px); }
.wave path { fill: currentColor; }

/* ------------------------------------------------ бягаща лента */
.marquee-clip { overflow: hidden; padding: 8px 0; margin-top: -18px; position: relative; z-index: 3; }
.marquee { background: var(--orange); color: var(--ink); overflow: hidden; transform: rotate(-1.2deg) scaleX(1.03); margin: 0; box-shadow: var(--shadow); position: relative; z-index: 3; }
.marquee-track { display: flex; width: max-content; animation: marq 40s linear infinite; }
.marquee span { display: inline-flex; align-items: center; gap: 22px; padding: 16px 0 16px 22px; font: 700 clamp(1rem, 1.8vw, 1.35rem) var(--font-d); white-space: nowrap; }
.marquee span::after { content: ""; width: 26px; height: 15px; background: var(--char); border-radius: 0 100% 0 100%; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ------------------------------------------------ секции */
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section.wrap { padding-left: var(--gut); padding-right: var(--gut); }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { margin: 0; max-width: 18ch; }
.section-head p { margin: 0; max-width: 46ch; color: var(--muted); }
.dark { background: var(--char); color: #fff; }
.dark .lead, .dark .section-head p { color: #C9CDD1; }
.dark .eyebrow { color: var(--orange); }
.link-arrow { display: inline-flex; align-items: center; gap: .45em; font-weight: 800; text-decoration: none; color: var(--orange-ink); }
.link-arrow .icon { transition: transform .25s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }
.dark .link-arrow { color: var(--orange); }

/* ------------------------------------------------ оферти (брошура/каталог) */
.offers { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; }
.offer {
  position: relative; display: grid; grid-template-columns: .9fr 1fr; gap: 24px; align-items: center;
  padding: clamp(20px, 3vw, 32px); border-radius: var(--r-l); background: #fff; box-shadow: var(--shadow);
  text-decoration: none; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s;
}
.offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-cover { border-radius: var(--r-s); overflow: hidden; box-shadow: 0 16px 30px -16px rgba(0, 0, 0, .45); transform: rotate(-3deg); transition: transform .4s var(--ease); background: var(--cream); }
.offer:hover .offer-cover { transform: rotate(0) scale(1.03); }
.offer h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); margin-bottom: .35em; }
.offer p { color: var(--muted); margin-bottom: 1.1em; }
.offer--catalog { grid-template-columns: 1fr; background: var(--green-soft); }
.offer--catalog .offer-cover { transform: rotate(2deg); }
.badge {
  display: inline-flex; align-items: center; gap: .45em; padding: .45em .9em; border-radius: 999px;
  font: 800 .8rem/1 var(--font); background: var(--orange-soft); color: var(--orange-ink); margin-bottom: 14px;
}
.badge--green { background: var(--green-soft); color: var(--green-ink); }
.badge--dark { background: var(--char); color: #fff; }
.badge .icon { width: 1.1em; height: 1.1em; }
@media (max-width: 960px) { .offers { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .offer { grid-template-columns: 1fr; } .offer-cover { max-width: 280px; } }

/* ------------------------------------------------ числа */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { padding: clamp(18px, 3vw, 28px) clamp(16px, 2.4vw, 24px); border-radius: var(--r-m); background: var(--char-2); position: relative; overflow: hidden; }
.stat b { display: block; font: 700 clamp(1.7rem, 4.4vw, 3.6rem)/1 var(--font-d); white-space: nowrap; color: var(--orange); letter-spacing: -.04em; margin-bottom: 10px; }
.stat:nth-child(even) b { color: var(--green-2); }
.stat span { color: #D5D8DB; font-weight: 700; }
.stat::after { content: ""; position: absolute; right: -18px; bottom: -14px; width: 70px; height: 40px; border-radius: 0 100% 0 100%; background: rgba(255, 255, 255, .06); transform: rotate(-24deg); }
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------ промо банери */
.promos { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.promo {
  grid-column: span 6; position: relative; border-radius: var(--r-m); overflow: hidden; background: #fff;
  box-shadow: var(--shadow); text-decoration: none; transition: transform .35s var(--ease), box-shadow .35s;
}
.promo--wide { grid-column: span 12; }
.promo:hover { transform: translateY(-5px) rotate(-.3deg); box-shadow: var(--shadow-lg); }
.promo img { width: 100%; aspect-ratio: 851 / 479; object-fit: cover; }
.promo--wide img { aspect-ratio: 2430 / 744; }
.promo-body { padding: 18px 22px 22px; }
.promo-body h3 { margin-bottom: .3em; }
.promo-body p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .promo { grid-column: span 12; } }

/* ------------------------------------------------ услуги */
.services { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 16px; }
.service { display: flex; gap: 14px; align-items: flex-start; padding: 20px; background: #fff; border-radius: var(--r-m); box-shadow: var(--shadow); }
.service-ic { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange-ink); flex: none; transition: transform .3s var(--ease); }
.service:nth-child(3n+2) .service-ic { background: var(--green-soft); color: var(--green-ink); }
.service:nth-child(3n) .service-ic { background: var(--char); color: var(--orange); }
.service:hover .service-ic { transform: rotate(-10deg) scale(1.08); }
.service-ic .icon { width: 24px; height: 24px; }
.service h3 { font-size: 1rem; margin: 2px 0 4px; }
.service p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ------------------------------------------------ Glovo лента */
.cta-band {
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
  padding: clamp(28px, 5vw, 56px); border-radius: var(--r-l); background: var(--glovo); position: relative; overflow: hidden;
}
.cta-band h2 { margin-bottom: .3em; max-width: 20ch; }
.cta-band p { margin: 0; font-weight: 600; max-width: 52ch; }
.cta-band::before { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255, 255, 255, .35); }
.cta-band--green { background: var(--green); }
.cta-band--dark { background: var(--char); color: #fff; }
@media (max-width: 760px) { .cta-band { grid-template-columns: 1fr; } }

/* ------------------------------------------------ статус отворено/затворено */
.status {
  display: inline-flex; align-items: center; gap: .5em; padding: .38em .8em; border-radius: 999px;
  font: 800 .8rem/1 var(--font); background: #EDEEEF; color: #43484D; white-space: nowrap;
}
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status--open { background: var(--green-soft); color: var(--green-ink); }
.status--open::before { background: var(--green); animation: pulse 1.8s infinite; }
.status--soon { background: var(--orange-soft); color: var(--orange-ink); }

/* ------------------------------------------------ страници: заглавна част */
.page-hero { padding: clamp(36px, 6vw, 80px) 0 clamp(28px, 4vw, 48px); position: relative; overflow: hidden; }
.page-hero h1 { max-width: 16ch; }
.page-hero .lead { margin: 0; }
.page-hero .leaf--a { right: 8%; top: 28%; width: 80px; height: 46px; }
.page-hero .leaf--b { right: 20%; top: 62%; width: 42px; height: 24px; animation-delay: -3s; background: var(--green-2); }
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: .88rem; font-weight: 700; color: var(--muted); margin-bottom: 18px; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--orange-ink); }
.crumbs span[aria-hidden] { opacity: .5; }
@media (max-width: 700px) { .page-hero .leaf { display: none; } }

/* ------------------------------------------------ магазини: списък + карта */
.finder-bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.search { position: relative; flex: 1 1 260px; }
.search .icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search input {
  width: 100%; height: 54px; padding: 0 18px 0 50px; border-radius: 999px; border: 2px solid var(--line);
  background: #fff; font: 600 1rem var(--font); color: var(--ink); transition: border-color .2s;
}
.search input:focus { outline: none; border-color: var(--orange); }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.chip {
  display: inline-flex; align-items: center; gap: .45em; min-height: 42px; padding: .5em 1em; border-radius: 999px;
  border: 2px solid var(--line); background: #fff; cursor: pointer; font-weight: 800; font-size: .9rem; transition: .2s;
}
.chip .icon { width: 1.1em; height: 1.1em; }
.chip:hover { border-color: var(--orange); }
.chip[aria-pressed="true"] { background: var(--char); color: #fff; border-color: var(--char); }
.stores-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 28px; align-items: start; }
.map-sticky { position: sticky; top: 96px; height: calc(100vh - 120px); min-height: 460px; border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-lg); background: #E8E3DA; }
.map { width: 100%; height: 100%; }
.store-list { display: grid; gap: 14px; list-style: none; margin: 0; padding: 0; }
.store-card {
  display: grid; grid-template-columns: 150px 1fr; gap: 16px; padding: 12px; border-radius: var(--r-m);
  background: #fff; box-shadow: var(--shadow); text-decoration: none; transition: transform .3s var(--ease), box-shadow .3s, outline-color .2s;
  outline: 3px solid transparent; outline-offset: -3px;
}
.store-card:hover, .store-card.is-active { transform: translateX(4px); outline-color: var(--orange); }
.store-card img { width: 100%; height: 100%; min-height: 108px; object-fit: cover; border-radius: 14px; }
.store-card h3 { margin: 4px 0 4px; font-size: 1.08rem; }
.store-card .addr { font-size: .9rem; color: var(--muted); margin: 0 0 8px; }
.store-meta { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.store-dist { font-weight: 800; font-size: .82rem; color: var(--orange-ink); }
.mini-svc { display: inline-flex; gap: 4px; }
.mini-svc span { width: 28px; height: 28px; border-radius: 9px; display: grid; place-items: center; background: var(--cream); color: var(--char); }
.mini-svc .icon { width: 16px; height: 16px; }
.empty { padding: 32px; text-align: center; background: #fff; border-radius: var(--r-m); color: var(--muted); font-weight: 700; }
@media (max-width: 980px) {
  .stores-layout { grid-template-columns: minmax(0, 1fr); }
  .map-sticky { position: relative; top: 0; height: 360px; min-height: 0; order: -1; }
}
@media (max-width: 480px) { .store-card { grid-template-columns: 104px 1fr; } }

/* маркер на картата: табелката на ДАР с листо */
.dar-pin { width: 38px; height: 46px; position: relative; filter: drop-shadow(0 6px 6px rgba(0, 0, 0, .3)); transition: transform .2s; }
.dar-pin i {
  position: absolute; left: 0; top: 8px; width: 38px; height: 38px; background: var(--orange);
  border-radius: 50% 50% 50% 4px; transform: rotate(-45deg); border: 3px solid #fff;
}
.dar-pin b { position: absolute; left: 0; right: 0; top: 17px; text-align: center; font: 800 11px/1 var(--font); color: var(--ink); z-index: 1; }
.dar-pin::before { content: ""; position: absolute; left: 17px; top: 0; width: 18px; height: 11px; background: var(--green); border-radius: 0 100% 0 100%; z-index: 2; transform: rotate(-18deg); }
.dar-pin.is-active { transform: scale(1.25) translateY(-4px); }
.dar-pin.is-active i { background: var(--char); }
.dar-pin.is-active b { color: #fff; }
.leaflet-popup-content-wrapper { border-radius: 16px !important; box-shadow: var(--shadow-lg) !important; }
.leaflet-popup-content { margin: 14px 16px !important; font: 600 14px/1.45 var(--font) !important; }
.leaflet-popup-content b { font-family: var(--font-d); font-size: 15px; display: block; margin-bottom: 2px; }
.leaflet-popup-content a { color: var(--orange-ink); font-weight: 800; }
.leaflet-container { font-family: var(--font); background: #E8E3DA; }
/* по-топли и приглушени плочки, за да изпъкват оранжевите маркери */
.leaflet-tile-pane { filter: saturate(.7) sepia(.12) brightness(1.02); }
.user-dot { width: 18px; height: 18px; border-radius: 50%; background: #2F7DF6; border: 3px solid #fff; box-shadow: 0 0 0 6px rgba(47, 125, 246, .25); }

/* ------------------------------------------------ страница на магазин */
.store-hero { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; align-items: stretch; }
.store-photo { position: relative; border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 320px; }
.store-photo img { width: 100%; height: 100%; object-fit: cover; }
.store-photo .code { position: absolute; left: 18px; top: 18px; }
.info-card { background: #fff; border-radius: var(--r-l); padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 18px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; }
.info-row > .icon { width: 44px; height: 44px; padding: 11px; border-radius: 14px; background: var(--orange-soft); color: var(--orange-ink); }
.info-row h3 { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font); font-weight: 800; color: var(--muted); margin: 2px 0 4px; }
.info-row p { margin: 0; font-weight: 700; font-size: 1.05rem; }
.hours { width: 100%; border-collapse: collapse; font-weight: 700; }
.hours td { padding: 6px 0; border-bottom: 1px dashed var(--line); }
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; padding-left: 12px; }
.hours tr.today td { color: var(--orange-ink); }
.hours tr.today td:first-child::after { content: " · днес"; font-weight: 800; }
.info-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.svc { display: flex; gap: 12px; align-items: center; padding: 14px 16px; border-radius: 16px; background: #fff; box-shadow: var(--shadow); font-weight: 800; }
.svc .icon { width: 36px; height: 36px; padding: 8px; border-radius: 12px; background: var(--green-soft); color: var(--green-ink); }
.store-map { height: 380px; border-radius: var(--r-l); overflow: hidden; box-shadow: var(--shadow); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.near { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.near .store-card { grid-template-columns: 1fr; }
.near .store-card img { aspect-ratio: 16 / 10; min-height: 0; }
@media (max-width: 900px) { .store-hero, .two-col { grid-template-columns: 1fr; } .near { grid-template-columns: 1fr; } }

/* ------------------------------------------------ брошура */
.tabs { display: inline-flex; padding: 6px; gap: 4px; background: #fff; border-radius: 999px; box-shadow: var(--shadow); margin-bottom: 24px; max-width: 100%; overflow-x: auto; }
.tab { border: 0; background: transparent; padding: .8em 1.3em; border-radius: 999px; font-weight: 800; cursor: pointer; white-space: nowrap; min-height: 46px; }
.tab[aria-selected="true"] { background: var(--orange); color: var(--ink); }
.viewer { background: var(--char); border-radius: var(--r-l); padding: clamp(14px, 3vw, 30px); color: #fff; box-shadow: var(--shadow-lg); }
.viewer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
.viewer-top h2 { margin: 0; font-size: clamp(1.2rem, 2.4vw, 1.7rem); }
.viewer-top .badge { margin: 0; }
.viewer-tools { display: flex; gap: 8px; flex-wrap: wrap; }
.stage { position: relative; display: flex; justify-content: center; align-items: center; gap: 4px; min-height: 300px; user-select: none; touch-action: pan-y; }
.stage figure { margin: 0; flex: 0 1 auto; max-width: 50%; cursor: zoom-in; background: #1a1c1e; border-radius: 6px; overflow: hidden; box-shadow: 0 20px 40px -20px #000; }
.stage.single figure { max-width: 100%; }
.stage img { width: auto; max-width: 100%; max-height: min(78vh, 1000px); height: auto; animation: pagein .45s var(--ease); }
@keyframes pagein { from { opacity: 0; transform: translateY(8px) scale(.99); } }
.stage-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 56px; height: 56px; border-radius: 50%; border: 0;
  background: var(--orange); color: var(--ink); display: grid; place-items: center; cursor: pointer; box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .6); transition: transform .2s, opacity .2s;
}
.stage-nav:hover { transform: translateY(-50%) scale(1.08); }
.stage-nav[disabled] { opacity: .25; cursor: default; }
.stage-nav.prev { left: -6px; }
.stage-nav.next { right: -6px; }
.stage-nav .icon { width: 26px; height: 26px; stroke-width: 2.6; }
.pager { text-align: center; margin: 16px 0 12px; font: 700 .95rem var(--font-d); color: #D5D8DB; }
.thumbs { display: flex; gap: 10px; overflow-x: auto; padding: 6px 2px 10px; scroll-snap-type: x proximity; scrollbar-color: var(--orange) transparent; }
.thumbs button { flex: none; width: 84px; padding: 0; border: 3px solid transparent; border-radius: 8px; overflow: hidden; background: #1a1c1e; cursor: pointer; scroll-snap-align: center; opacity: .6; transition: .2s; }
.thumbs button:hover { opacity: 1; }
.thumbs button[aria-current="true"] { border-color: var(--orange); opacity: 1; transform: translateY(-3px); }
.thumbs.landscape button { width: 124px; }
.thumbs img { width: 100%; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(18, 19, 21, .96); display: none; flex-direction: column; }
.lightbox.open { display: flex; }
.lightbox-bar { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 12px 16px; color: #fff; font-weight: 800; }
.lightbox-scroll { flex: 1; overflow: auto; display: flex; justify-content: center; align-items: flex-start; padding: 0 12px 24px; }
.lightbox-scroll img { max-width: min(100%, 1100px); height: auto; cursor: zoom-in; border-radius: 4px; }
.lightbox-scroll.zoomed img { max-width: none; width: min(2200px, 220%); cursor: zoom-out; }
.icon-btn { width: 48px; height: 48px; border-radius: 50%; border: 0; display: grid; place-items: center; background: rgba(255, 255, 255, .1); color: #fff; cursor: pointer; }
.icon-btn:hover { background: var(--orange); color: var(--ink); }
@media (max-width: 700px) {
  .stage-nav { width: 44px; height: 44px; }
  .stage-nav.prev { left: -4px; } .stage-nav.next { right: -4px; }
}

/* ------------------------------------------------ за нас */
.story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.story-photos { position: relative; aspect-ratio: 1 / .92; }
.story-photos img { position: absolute; border-radius: var(--r-m); box-shadow: var(--shadow-lg); border: 6px solid #fff; object-fit: cover; }
.story-photos img:nth-child(1) { width: 70%; aspect-ratio: 16 / 11; left: 0; top: 0; transform: rotate(-4deg); }
.story-photos img:nth-child(2) { width: 62%; aspect-ratio: 16 / 11; right: 0; bottom: 0; transform: rotate(4deg); }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value { padding: 26px 22px; border-radius: var(--r-m); background: #fff; box-shadow: var(--shadow); }
.value .service-ic { margin-bottom: 16px; }
.value h3 { margin-bottom: .4em; }
.value p { margin: 0; color: var(--muted); font-size: .95rem; }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: t; }
.tl { padding: 26px; border-radius: var(--r-m); background: var(--char-2); }
.tl b { display: block; font: 700 2rem/1 var(--font-d); color: var(--orange); margin-bottom: 10px; }
.tl p { margin: 0; color: #D5D8DB; }
@media (max-width: 960px) { .values { grid-template-columns: repeat(2, 1fr); } .story, .timeline { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }

/* ------------------------------------------------ контакти */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 28px; align-items: start; }
.form-card { background: #fff; border-radius: var(--r-l); padding: clamp(22px, 4vw, 40px); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
fieldset { min-width: 0; }
.field input, .field select, .field textarea { min-width: 0; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { font-weight: 800; font-size: .92rem; }
.field label small { color: var(--muted); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px; border-radius: 14px; border: 2px solid var(--line); background: var(--cream);
  font: 600 1rem var(--font); color: var(--ink); transition: border-color .2s, background .2s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); background: #fff; }
.topics { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; border: 0; padding: 0; margin: 0; }
.topics legend { margin-bottom: 8px; }
.topics label { cursor: pointer; }
.topics input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; min-height: 0; padding: 0; margin: 0; }
.topics span { display: inline-flex; min-height: 42px; align-items: center; padding: .5em 1em; border-radius: 999px; border: 2px solid var(--line); font-weight: 800; font-size: .9rem; transition: .2s; }
.topics input:checked + span { background: var(--char); color: #fff; border-color: var(--char); }
.topics input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--muted); font-weight: 600; }
.consent input { width: 22px; height: 22px; accent-color: var(--orange); flex: none; margin-top: 2px; }
.hp { position: absolute; left: -9999px; }
.form-msg { display: none; padding: 14px 18px; border-radius: 14px; font-weight: 700; margin-top: 16px; }
.form-msg.ok { display: block; background: var(--green-soft); color: var(--green-ink); }
.form-msg.err { display: block; background: #FDE3DF; color: #9B2415; }
.contact-list { display: grid; gap: 14px; }
.contact-item { display: flex; gap: 14px; align-items: center; padding: 16px 18px; border-radius: var(--r-m); background: #fff; box-shadow: var(--shadow); text-decoration: none; transition: transform .25s var(--ease); }
a.contact-item:hover { transform: translateX(4px); }
.contact-item .icon { width: 46px; height: 46px; padding: 12px; border-radius: 14px; background: var(--orange-soft); color: var(--orange-ink); }
.contact-item small { display: block; color: var(--muted); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; }
.contact-item b { font-size: 1.05rem; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 560px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------ правни текстове */
.prose { max-width: 820px; background: #fff; border-radius: var(--r-l); padding: clamp(22px, 5vw, 56px); box-shadow: var(--shadow); }
.prose h2 { font-size: clamp(1.15rem, 2vw, 1.45rem); margin: 1.8em 0 .6em; color: var(--char); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: #33373B; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--orange); }
.prose .note { padding: 16px 20px; border-radius: 16px; background: var(--orange-soft); font-weight: 700; }
.tariff { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 1.2em 0; }
.tariff div { padding: 18px; border-radius: 16px; background: var(--cream); }
.tariff b { display: block; font: 700 1.5rem var(--font-d); color: var(--orange-ink); }
@media (max-width: 600px) { .tariff { grid-template-columns: 1fr; } }
.doc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.doc { display: flex; flex-direction: column; gap: 10px; padding: 24px; border-radius: var(--r-m); background: #fff; box-shadow: var(--shadow); text-decoration: none; transition: transform .3s var(--ease); }
.doc:hover { transform: translateY(-4px); }
.doc > .icon { width: 44px; height: 44px; padding: 10px; border-radius: 14px; background: var(--char); color: var(--orange); }
.doc h3 { margin: 4px 0 0; font-size: 1.05rem; }
.doc p { margin: 0; color: var(--muted); font-size: .92rem; }

/* ------------------------------------------------ футър */
.site-footer { background: var(--char); color: #D5D8DB; position: relative; }
.footer-wave { color: var(--char); background: var(--cream); display: block; line-height: 0; }
.footer-wave .wave { margin-bottom: -1px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 40px 0 36px; }
.footer-grid h3 { font-size: .95rem; color: #fff; margin-bottom: 1em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { text-decoration: none; font-weight: 600; }
.footer-grid a:hover { color: var(--orange); }
.footer-brand img { width: 74px; margin-bottom: 16px; }
.footer-brand p { max-width: 34ch; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--char-2); }
.socials a:hover { background: var(--orange); color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); padding: 20px 0 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ------------------------------------------------ 404 */
.nf { text-align: center; padding: clamp(60px, 10vw, 140px) 0; }
.nf b { display: block; font: 700 clamp(6rem, 20vw, 13rem)/1 var(--font-d); color: var(--orange); letter-spacing: -.06em; }

/* ------------------------------------------------ поява при скрол */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ------------------------------------------------ телефон: центрирано херо, по-сбито */
@media (max-width: 900px) {
  .hero { text-align: center; }
  .hero .eyebrow, .hero-actions { justify-content: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-live { text-align: left; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  h1 { font-size: clamp(1.9rem, 8.6vw, 2.4rem); }
  h2 { font-size: clamp(1.4rem, 6.4vw, 1.75rem); }
  .lead { font-size: 1rem; }
  .eyebrow { margin-bottom: .7rem; font-size: .72rem; }
  .btn { min-height: 48px; padding: .7em 1.2em; font-size: .95rem; }

  .nav { height: 62px; }
  .brand img { width: 42px; }
  .brand-text b { font-size: .95rem; }
  .menu { inset: 62px 0 auto 0; }
  .burger { width: 44px; height: 44px; }

  .hero { padding: 18px 0 34px; }
  .hero h1 { margin-bottom: .35em; }
  .hero .lead { margin-bottom: 1.2rem; }
  .hero-actions { gap: 8px; margin-bottom: 1.1rem; }
  .hero-actions .btn { flex: 1 1 0; padding-left: .7em; padding-right: .7em; white-space: nowrap; font-size: .9rem; gap: .4em; }
  .hero-live { padding: 8px 14px 8px 10px; font-size: .85rem; gap: 10px; }
  .hero-grid { gap: 22px; }
  .hero-visual { max-width: 330px; }
  .sticker { width: 88px; height: 88px; font-size: .62rem; }
  .sticker b { font-size: 1.05rem; }

  .marquee span { padding: 10px 0 10px 16px; gap: 16px; }
  .marquee span::after { width: 20px; height: 11px; }

  .section { padding: 44px 0; }
  .section--tight { padding: 28px 0; }
  .section-head { margin-bottom: 18px; gap: 10px; }
  .section-head p { font-size: .95rem; }

  .offers { gap: 12px; }
  .offer, .offer--catalog { grid-template-columns: 96px 1fr; gap: 14px; padding: 14px; border-radius: var(--r-m); }
  .offer--catalog { grid-template-columns: 128px 1fr; }
  .offer-cover { max-width: none; transform: rotate(-2deg); }
  .offer h3 { font-size: 1.05rem; margin-bottom: .25em; }
  .offer p { font-size: .88rem; margin-bottom: .6em; }
  .offer .badge { margin-bottom: 8px; font-size: .72rem; }

  .stats { gap: 10px; }
  .stat span { font-size: .85rem; }

  .promos { gap: 12px; }
  .promo-body { padding: 12px 14px 14px; }
  .promo-body h3 { font-size: 1rem; }
  .promo-body p { font-size: .88rem; }

  .services { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service { flex-direction: column; gap: 10px; padding: 14px; }
  .service-ic { width: 40px; height: 40px; border-radius: 13px; }
  .service-ic .icon { width: 20px; height: 20px; }
  .service h3 { font-size: .92rem; }
  .service p { font-size: .8rem; }

  .cta-band { padding: 24px 20px; gap: 16px; border-radius: var(--r-m); }
  .cta-band .btn { width: 100%; }

  .page-hero { padding: 22px 0 18px; text-align: center; }
  .page-hero h1 { margin-left: auto; margin-right: auto; }
  .page-hero .lead { margin-left: auto; margin-right: auto; }
  .page-hero .crumbs { justify-content: center; margin-bottom: 10px; }
  .hl { white-space: normal; background: linear-gradient(transparent 60%, var(--orange) 60%, var(--orange) 94%, transparent 94%);
        -webkit-box-decoration-break: clone; box-decoration-break: clone; padding: 0 .06em; }
  .hl--green { background-image: linear-gradient(transparent 60%, var(--green-2) 60%, var(--green-2) 94%, transparent 94%); }
  .hl::after { display: none; }

  .finder-bar { gap: 8px; }
  .finder-bar .btn { width: 100%; }
  .search input { height: 50px; }
  .chips { gap: 6px; flex-wrap: nowrap; overflow-x: auto; margin: 0 calc(var(--gut) * -1) 16px; padding: 0 var(--gut) 4px; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; min-height: 38px; font-size: .85rem; }
  .map-sticky { height: 280px; border-radius: var(--r-m); }
  .store-list { gap: 10px; }
  .store-card { grid-template-columns: 96px 1fr; gap: 12px; padding: 10px; }
  .store-card img { min-height: 92px; border-radius: 12px; }
  .store-card h3 { font-size: .98rem; }
  .store-card .addr { font-size: .84rem; margin-bottom: 6px; }
  .mini-svc span { width: 24px; height: 24px; }
  .mini-svc .icon { width: 14px; height: 14px; }

  .store-photo { min-height: 220px; border-radius: var(--r-m); }
  .info-card { padding: 18px; gap: 14px; border-radius: var(--r-m); }
  .info-actions .btn { flex: 1 1 100%; }
  .svc-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .svc { padding: 10px 12px; font-size: .88rem; gap: 10px; }
  .svc .icon { width: 32px; height: 32px; padding: 7px; }
  .svc small { display: none; }
  .store-map { height: 260px; border-radius: var(--r-m); }
  .hours { font-size: .92rem; }
  .near { gap: 10px; }
  .near .store-card { grid-template-columns: 96px 1fr; }
  .near .store-card img { aspect-ratio: auto; min-height: 92px; }

  .viewer { padding: 12px; border-radius: var(--r-m); }
  .viewer-top { margin-bottom: 12px; }
  .tabs { margin-bottom: 14px; }
  .tab { padding: .7em 1em; font-size: .9rem; }
  .stage img { max-height: 70vh; }
  .thumbs button { width: 64px; }
  .thumbs.landscape button { width: 96px; }

  .form-card, .prose { padding: 20px 16px; border-radius: var(--r-m); }
  .contact-item { padding: 12px 14px; }
  .contact-item .icon { width: 40px; height: 40px; padding: 10px; }
  .value { padding: 18px; }
  .tl { padding: 20px; }
  .tl b { font-size: 1.6rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; padding: 28px 0 24px; }
  .footer-brand, .footer-grid > div:last-child { grid-column: 1 / -1; }
  .footer-brand img { width: 60px; margin-bottom: 10px; }
  .footer-bottom { font-size: .8rem; padding-bottom: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
