/* ==========================================================================
   PET NUTS — közös stíluslap (főoldal + aloldalak)
   Design nyelv: fekete #1D1D1B, Pantone 2035C piros #D70321, fehér, halvány
   szürke #F4F3F1. Nincs gradiens, minta vagy ív; lekerekítés csak gombokon.
   ========================================================================== */

:root {
  /* színek */
  --black: #1D1D1B;
  --red: #D70321;
  --white: #fff;
  --grey: #F4F3F1;
  --page: #E9E7E2;

  --line: rgba(29, 29, 27, .14);
  --line-soft: rgba(29, 29, 27, .12);
  --line-strong: rgba(29, 29, 27, .16);

  --text: var(--black);
  --text-2: rgba(29, 29, 27, .82);
  --text-3: rgba(29, 29, 27, .75);
  --text-4: rgba(29, 29, 27, .6);
  --text-5: rgba(29, 29, 27, .55);

  /* tipográfia */
  --font: 'Comfortaa', system-ui, sans-serif;
  --fs-h1: clamp(34px, 4.6vw, 64px);
  --fs-h2-lg: clamp(26px, 3vw, 40px);
  --fs-h2: clamp(24px, 2.7vw, 36px);
  --fs-h2-sm: clamp(22px, 2.2vw, 30px);
  --fs-h3: 19px;
  --fs-lead: clamp(15px, 1.5vw, 19px);
  --fs-body: 15px;
  --fs-body-lg: 16px;
  --fs-small: 13px;
  --fs-xs: 12.5px;
  --fs-label: 11.5px;
  --fs-nav: clamp(11px, 1.05vw, 12.5px);

  /* térközök */
  --pad-x: clamp(24px, 4.4vw, 64px);
  --pad-y: clamp(32px, 4.4vw, 64px);
  --pad-y-sm: clamp(28px, 4vw, 56px);
  --gap: clamp(20px, 3vw, 44px);
  --head-gap: 34px;

  /* egyéb */
  --max: 1440px;
  --radius: 10px;
  --shadow-hover: 0 14px 28px rgba(29, 29, 27, .16);
  --shadow-btn: 0 8px 18px rgba(29, 29, 27, .2);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 88px;
}

/* --------------------------------------------------------------------------
   Alapok
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font: 400 var(--fs-body)/1.8 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--black); }

h1, h2, h3, p { margin: 0; }

button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.page {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px var(--line-soft);
}

/* --------------------------------------------------------------------------
   Tipográfia
   -------------------------------------------------------------------------- */
.h1 { font: 700 var(--fs-h1)/1.16 var(--font); letter-spacing: -.015em; }
.h2-lg { font: 700 var(--fs-h2-lg)/1.2 var(--font); }
.h2 { font: 700 var(--fs-h2)/1.25 var(--font); }
.h2-sm { font: 700 var(--fs-h2-sm)/1.3 var(--font); }
.h3 { font: 700 var(--fs-h3)/1.3 var(--font); }

.eyebrow {
  font: 700 var(--fs-label) var(--font);
  letter-spacing: .14em;
  color: var(--red);
  text-transform: uppercase;
}

.text-2 { color: var(--text-2); }
.lead { font: 400 var(--fs-body-lg)/1.85 var(--font); color: var(--text-2); }

/* szekció-fejléc: cím + vonal (vékony vagy vastag piros) */
.sec-head {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: var(--head-gap);
}
.sec-head--thin { align-items: baseline; gap: 14px; }
.sec-head__line { flex: 1; height: 4px; background: var(--red); margin-bottom: 14px; min-width: 40px; }
.sec-head--thin .sec-head__line { height: 1px; background: var(--line); margin-bottom: 0; }
.sec-head__meta { font: 600 var(--fs-label) var(--font); letter-spacing: .1em; color: rgba(29, 29, 27, .5); white-space: nowrap; }
@media (max-width: 640px) {
  /* mobilon a vonal a cím alá kerül, teljes szélességben */
  .sec-head { flex-wrap: wrap; gap: 12px; }
  .sec-head__line { flex: 1 1 100%; order: 3; margin-bottom: 0; }
  .sec-head__meta { order: 2; }
}

/* --------------------------------------------------------------------------
   Gombok
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: 700 15px/1.2 var(--font);
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease, border-color .24s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-btn); }
.btn--lg { font-size: 17px; padding: 18px 32px; }

.btn--primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--primary:hover { background: var(--black); border-color: var(--black); color: var(--white); }

.btn--outline { border-color: var(--black); color: var(--black); background: transparent; }
.btn--outline:hover { background: var(--black); color: var(--white); }

/* piros háttéren */
.btn--white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn--white:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.btn--outline-white { border-color: var(--white); color: var(--white); background: transparent; }
.btn--outline-white:hover { background: var(--white); color: var(--red); transform: translateY(-4px); box-shadow: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.icon-btn {
  width: 44px; height: 44px; flex: none;
  border: 1.5px solid rgba(29, 29, 27, .2);
  border-radius: var(--radius);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: color .2s ease, border-color .2s ease;
}
.icon-btn:hover { color: var(--red); border-color: var(--red); }

/* piros pötty (marquee elválasztó) */
.dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; display: block; flex: none; }

/* piros ikonkör */
.icon-circle {
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.icon-circle svg { fill: currentColor; }
.icon-circle--sm { width: 36px; height: 36px; }
.icon-circle--sm svg { width: 19px; height: 19px; }
.icon-circle--lg { width: 68px; height: 68px; }
.icon-circle--lg svg { width: 34px; height: 34px; }

/* --------------------------------------------------------------------------
   Fejléc + navigáció
   -------------------------------------------------------------------------- */
.site-header {
  background: var(--grey);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 32px);
  padding: 14px var(--pad-x);
  min-height: var(--header-h);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  z-index: 40;
}
.site-header__logo { display: block; flex: none; }
.site-header__logo img { height: 44px; width: auto; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.4vw, 26px);
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font: 600 var(--fs-nav)/1.2 var(--font);
  letter-spacing: .07em;
  color: var(--black);
  text-transform: uppercase;
  padding: 6px 0;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav-link:hover, .nav-link[aria-current="page"], .nav-item.is-open > .nav-link { color: var(--red); }
.nav-link svg { width: 10px; height: 7px; fill: currentColor; transition: transform .2s ease; }
.nav-item.is-open > .nav-link svg { transform: rotate(180deg); }

.nav-item { position: relative; display: flex; align-items: center; }
/* hover-híd a menüpont és a lenyíló között */
.nav-item::before { content: ''; position: absolute; left: -20px; right: -20px; top: 100%; height: 24px; }

.sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(29, 29, 27, .14);
  padding: 8px;
  min-width: 210px;
  z-index: 50;
  display: none;
  flex-direction: column;
}
.nav-item.is-open > .sub-menu { display: flex; }
.sub-menu a {
  font: 600 13px/1.3 var(--font);
  color: var(--black);
  padding: 11px 14px;
  border-radius: 8px;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}
.sub-menu a:hover, .sub-menu a[aria-current="page"] { background: var(--red); color: var(--white); }
.sub-menu a[aria-current="page"] { font-weight: 700; }

.nav-toggle { display: none; }

@media (hover: hover) {
  .nav-item:hover > .sub-menu { display: flex; }
  .nav-item:hover > .nav-link { color: var(--red); }
}

/* mobil / tablet: hamburger */
@media (max-width: 1023px) {
  .site-header { flex-wrap: wrap; gap: 14px; }
  .nav-toggle {
    display: inline-flex; order: 3; margin-left: auto;
  }
  .site-header__search { order: 2; margin-left: auto; }
  .nav-toggle .icon-btn { color: var(--black); }
  .nav-toggle__bars { position: relative; width: 20px; height: 14px; display: block; }
  .nav-toggle__bars::before, .nav-toggle__bars::after, .nav-toggle__bars span {
    content: ''; position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; transition: transform .25s ease, opacity .2s ease;
  }
  .nav-toggle__bars::before { top: 0; }
  .nav-toggle__bars span { top: 6px; }
  .nav-toggle__bars::after { bottom: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars span { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

  .site-nav {
    order: 4;
    flex: 1 1 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
    padding: 8px 0 6px;
    border-top: 1px solid var(--line-soft);
    margin-top: 4px;
  }
  .site-nav.is-open { display: flex; }
  .nav-link { font-size: 13px; padding: 14px 0; border-bottom: 1px solid var(--line-soft); width: 100%; justify-content: space-between; }
  .nav-item { flex-direction: column; align-items: stretch; }
  .nav-item::before { display: none; }
  .sub-menu {
    position: static; box-shadow: none; border: 0; background: transparent; padding: 0 0 6px 14px; min-width: 0;
  }
  .sub-menu a { padding: 11px 14px; }
  @media (hover: hover) { .nav-item:hover > .sub-menu { display: none; } .nav-item.is-open:hover > .sub-menu { display: flex; } }
}

/* --------------------------------------------------------------------------
   Sticky kapcsolat-sáv (oldalt)
   -------------------------------------------------------------------------- */
.sticky-contact {
  position: fixed;
  right: 0;
  top: 62vh;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: rgba(29, 29, 27, .55);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, .28);
  border-right: 0;
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 20px 12px;
  color: var(--white);
  transition: background .28s ease;
}
.sticky-contact:hover { background: var(--red); color: var(--white); }
.sticky-contact__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--white); display: block; animation: ping 2.8s ease-out infinite; }
.sticky-contact__dot:last-child { animation-delay: 1.4s; }
.sticky-contact__label {
  writing-mode: vertical-rl;
  font: 600 var(--fs-label)/1 var(--font);
  letter-spacing: .09em;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .sticky-contact { padding: 14px 8px; gap: 10px; top: auto; bottom: 18vh; }
  .sticky-contact__label { font-size: 10.5px; }
}

/* --------------------------------------------------------------------------
   Szekciók
   -------------------------------------------------------------------------- */
.section { padding: var(--pad-y) var(--pad-x); }
.section--grey { background: var(--grey); }
.section--bordered { border-bottom: 1px solid var(--line-strong); }

/* HERO (főoldal) */
.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 20px;
  align-items: end;
  padding: 28px 0 0 var(--pad-x);
}
.hero__body { padding-bottom: clamp(36px, 4.5vw, 64px); }
.hero__title { margin-bottom: 24px; }
.hero__lead { margin-bottom: 32px; font: 600 var(--fs-lead)/1.6 var(--font); letter-spacing: .02em; }
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 20px 44px;
  padding: 24px 0; margin-bottom: 32px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.stat__num { font: 700 34px/1.1 var(--font); color: var(--red); }
.stat__label { margin-top: 8px; font: 600 var(--fs-label)/1.5 var(--font); letter-spacing: .1em; text-transform: uppercase; }
.hero__media { display: flex; align-items: flex-end; justify-content: flex-end; padding-right: clamp(16px, 4vw, 64px); overflow: hidden; }
.hero__media img { width: 100%; max-width: 820px; margin-bottom: -5px; }
@media (max-width: 839px) {
  .hero { padding-right: var(--pad-x); }
  .hero__media { padding-right: 0; justify-content: center; }
}

/* HERO (aloldal) */
.subhero { background: var(--white); border-bottom: 1px solid var(--line); padding: 20px var(--pad-x) 0; }
.breadcrumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: 9px;
  font: 600 11px/1.3 var(--font); letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-5); margin-bottom: 34px;
}
.breadcrumb a { color: var(--text-5); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb [aria-current] { color: var(--red); }
.subhero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.subhero__body { align-self: start; padding: clamp(16px, 3vw, 48px) 0 44px; }
.subhero__title { margin-bottom: 16px; }
.subhero__rule { width: 64px; height: 4px; background: var(--red); margin-bottom: 18px; }
.subhero__lead { margin-bottom: 24px; max-width: 640px; }
.subhero__media { align-self: end; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.subhero__media img { width: 100%; max-width: 470px; margin-bottom: -4px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grey); border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 999px;
  font: 600 12px/1.2 var(--font); letter-spacing: .04em; color: var(--black);
}
.pill svg { width: 16px; height: 16px; fill: var(--red); flex: none; }

/* FUTÓ SZALAG */
.marquee { background: var(--black); color: var(--white); overflow: hidden; padding: 15px 0; }
.marquee__track { display: flex; width: max-content; animation: marq 38s linear infinite; }
.marquee__group { display: flex; align-items: center; gap: 22px; padding-right: 22px; }
.marquee__group span:not(.dot) { font: 700 15px/1.2 var(--font); letter-spacing: .04em; white-space: nowrap; }
.marquee--brands { background: transparent; color: inherit; padding: 0; }
.marquee--brands .marquee__track { animation-duration: 42s; }
.marquee--brands .marquee__group { gap: 18px; padding-right: 18px; }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ÉRTÉKEK */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 26px;
  align-items: start;
}
.value { text-align: center; display: flex; flex-direction: column; align-items: center; }
.value .icon-circle { margin-bottom: 16px; animation: pulse 4.2s ease-in-out infinite; }
.value .icon-circle > span { display: flex; animation: swing 4.2s ease-in-out infinite; animation-delay: inherit; }
.value__label { font: 700 14px/1.45 var(--font); }
@media (max-width: 480px) { .values { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; } }

/* TUDATOS VÁSÁRLÓ (hero 2) */
.aware { background: var(--grey); padding: clamp(32px, 5vw, 80px) var(--pad-x) 0; border-bottom: 1px solid var(--line-strong); }
.aware__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 330px), 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
}
.aware__media { display: flex; align-items: flex-end; justify-content: center; }
.aware__media img { width: 100%; max-width: 440px; margin-bottom: -1px; }
.aware__body { padding-bottom: clamp(40px, 5vw, 80px); }
.aware__title { margin-bottom: 26px; letter-spacing: -.01em; font-size: clamp(30px, 3.6vw, 48px); }
.checklist { border-top: 1px solid var(--line-strong); width: fit-content; max-width: 100%; margin-bottom: 34px; }
.checklist__item {
  display: flex; align-items: center; gap: 16px;
  padding: 15px 40px 15px 0; border-bottom: 1px solid var(--line-strong);
  font: 600 16px/1.4 var(--font); letter-spacing: .06em; text-transform: uppercase;
}
.checklist__item::before { content: ''; flex: none; width: 12px; height: 12px; background: var(--red); display: block; }
.aware__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 30px var(--gap);
  color: var(--text-2);
  line-height: 1.95;
}
.aware__col { position: relative; overflow: hidden; }
.aware__col svg { position: absolute; right: -14px; top: -16px; width: 104px; height: 104px; fill: var(--black); opacity: .055; pointer-events: none; }
.aware__col p { position: relative; }
.aware__closing { margin-top: 34px; padding-top: 26px; border-top: 2px solid var(--red); width: fit-content; }
.aware__closing p { font: 700 21px/1.5 var(--font); color: var(--red); }
@media (max-width: 480px) { .checklist__item { font-size: 14px; padding-right: 16px; } .aware__closing p { font-size: 18px; } }

/* AKCIÓS TERMÉKEK */
.deals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 178px), 1fr));
  gap: 18px;
  align-items: stretch;
}
.deal {
  border: 1px solid var(--line); background: var(--white);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.deal:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.deal__media { height: 196px; background: var(--grey); display: flex; align-items: center; justify-content: center; padding: 18px; }
.deal__media img { max-height: 100%; width: auto; max-width: var(--img-w, 76%); object-fit: contain; filter: drop-shadow(0 14px 16px rgba(29, 29, 27, .26)); }
.deal__body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.deal__name { font: 700 14.5px/1.35 var(--font); }
.deal__size { font: 400 var(--fs-xs)/1.3 var(--font); color: var(--text-4); }
.deal__price { margin-top: auto; padding-top: 14px; }
.price-tag { background: var(--red); color: var(--white); font: 700 17px/1.2 var(--font); padding: 7px 12px; display: inline-block; }
@media (max-width: 480px) { .deals { grid-template-columns: repeat(2, 1fr); gap: 12px; } .deal__media { height: 150px; padding: 12px; } .deal__body { padding: 14px; } }

/* TERMÉKEK ÉS SZOLGÁLTATÁSOK (csempék) */
.intro { max-width: 960px; margin-bottom: 40px; color: var(--text-2); display: flex; flex-direction: column; gap: 14px; }
.intro strong { font-weight: 600; color: var(--black); }
.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 24px;
}
.tile {
  background: var(--white); display: flex; flex-direction: column; overflow: hidden; color: inherit;
  transition: transform .28s ease, box-shadow .28s ease;
}
.tile:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); color: inherit; }
.tile__media { overflow: hidden; }
.tile__media img { width: 100%; height: 190px; object-fit: cover; transition: transform .5s ease; }
.tile:hover .tile__media img { transform: scale(1.07); }
.tile__body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tile__head { display: flex; align-items: center; gap: 10px; }
.tile__text { font: 400 var(--fs-small)/1.7 var(--font); color: var(--text-3); }
.tile__more { margin-top: auto; padding-top: 6px; font: 700 12px/1.2 var(--font); letter-spacing: .08em; color: var(--red); text-transform: uppercase; }

/* MÁRKÁK */
.brands { padding: var(--pad-y-sm) 0; border-bottom: 1px solid var(--line-soft); }
.brands .sec-head { padding: 0 var(--pad-x); margin-bottom: 28px; }
.brand-chip { flex: none; border: 1px solid var(--line-strong); padding: 14px 22px; font: 600 15px/1.2 var(--font); color: var(--black); white-space: nowrap; }

/* KAPCSOLAT / ÜZLET */
.store {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 28px;
  align-items: stretch;
}
.store__media { overflow: hidden; }
.store__media img { width: 100%; height: 100%; min-height: clamp(220px, 30vw, 480px); object-fit: cover; transition: transform .7s ease; }
.store__media:hover img { transform: scale(1.04); }
.store__card { border: 1px solid var(--line); padding: 28px; display: flex; flex-direction: column; }
.store__card .eyebrow { margin-bottom: 10px; }
.store__name { font: 700 24px/1.25 var(--font); }
.store__district { margin-top: 8px; font: 600 14.5px/1.5 var(--font); }
.store__address { margin-top: 4px; font: 400 14.5px/1.6 var(--font); color: var(--text-3); }
.hours { margin-top: 20px; padding-top: 6px; border-top: 1px solid var(--line); flex: 1; display: flex; flex-direction: column; justify-content: space-between; }
.hours__row {
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
  padding: 9px 0; flex: 1; border-bottom: 1px solid var(--line-soft);
  font: 600 14px/1.3 var(--font);
}
.hours__row:last-child { border-bottom: 0; }
.hours__row b { font-weight: 700; }
.hours__row--closed { color: var(--text-5); font-weight: 400; }
.hours__row--closed b { font-weight: 400; }
.map { margin-top: 20px; border: 1px solid var(--line); height: 150px; overflow: hidden; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (max-width: 480px) { .store__card { padding: 20px; } }

/* TANÁCSADÁS SÁV (aloldal) */
.advice {
  background: var(--grey);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: var(--pad-y-sm) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.advice__title { margin-bottom: 18px; }
.advice__text { margin-bottom: 24px; max-width: 560px; color: var(--text-2); line-height: 1.9; }
.advice__list { max-width: 540px; border-bottom: 1px solid var(--line-strong); }
.advice__item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-top: 1px solid var(--line-strong); font: 600 14.5px/1.4 var(--font); }
.advice__item svg { width: 22px; height: 22px; fill: var(--red); flex: none; }
.advice__cta { margin-top: 28px; }
.advice__media { display: flex; align-items: flex-end; justify-content: center; }
.advice__media img { width: 100%; max-width: 440px; }

/* ZÁRÓ CTA */
.cta {
  background: var(--red); color: var(--white);
  padding: var(--pad-y-sm) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.cta__title { font-size: clamp(24px, 2.6vw, 34px); }
.cta__actions { display: flex; flex-direction: column; gap: 12px; }
.cta__actions .btn { white-space: nowrap; }
.cta--center { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 32px; }
.cta--center .cta__title { max-width: 1000px; }
@media (max-width: 480px) { .cta__actions .btn { white-space: normal; } }

/* LÁBLÉC */
.site-footer { background: var(--black); color: var(--white); padding: var(--pad-y-sm) var(--pad-x) 40px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(24px, 3vw, 40px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.site-footer__logo { height: 52px; width: auto; margin-bottom: 18px; }
.site-footer__tagline { font: 400 13.5px/1.7 var(--font); color: rgba(255, 255, 255, .66); max-width: 320px; }
.site-footer__col { display: flex; flex-direction: column; gap: 10px; font: 400 13.5px/1.5 var(--font); color: rgba(255, 255, 255, .78); }
.site-footer__col a { color: inherit; transition: color .2s ease; }
.site-footer__col a:hover { color: var(--white); }
.site-footer__col a[aria-current="page"] { color: var(--white); font-weight: 700; }
.site-footer__head { font: 700 var(--fs-label)/1.3 var(--font); letter-spacing: .12em; color: var(--white); margin-bottom: 4px; text-transform: uppercase; }
.site-footer__bottom {
  padding-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between;
  font: 400 var(--fs-xs)/1.4 var(--font); color: rgba(255, 255, 255, .5);
}
.site-footer__bottom b { font: 700 13px/1.4 var(--font); color: var(--white); }

/* --------------------------------------------------------------------------
   Terméklista (aloldal)
   -------------------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.filter {
  font: 600 12px/1.2 var(--font); letter-spacing: .06em;
  padding: 11px 18px; border-radius: 999px;
  border: 1.5px solid rgba(29, 29, 27, .24); color: var(--black); background: transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.filter:hover { border-color: var(--black); }
.filter[aria-pressed="true"] { background: var(--black); color: var(--white); border-color: var(--black); }
.result-label { font: 400 var(--fs-xs)/1.4 var(--font); color: var(--text-5); margin-bottom: 24px; }

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 22px;
}
.product {
  border: 1px solid var(--line); background: var(--white);
  display: flex; flex-direction: column; text-align: left; width: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product:hover { transform: translateY(-8px); box-shadow: 0 16px 30px rgba(29, 29, 27, .16); }
.product__media { height: 230px; background: var(--grey); display: flex; align-items: center; justify-content: center; padding: 22px; position: relative; }
.product__img { width: var(--img-w, 62%); height: 100%; background: center / contain no-repeat; filter: drop-shadow(0 16px 18px rgba(29, 29, 27, .26)); }
.product__badge {
  position: absolute; top: 14px; left: 14px;
  font: 700 10px/1.2 var(--font); letter-spacing: .12em;
  background: var(--black); color: var(--white); padding: 6px 10px;
}
.product__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product__brand { font: 600 10.5px/1.3 var(--font); letter-spacing: .14em; color: var(--red); }
.product__name { font: 700 17px/1.35 var(--font); }
.product__short { font: 400 var(--fs-small)/1.7 var(--font); color: rgba(29, 29, 27, .7); }
.product__foot { margin-top: auto; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-soft); }
.product__size { font: 600 var(--fs-xs)/1.3 var(--font); }
.product__more { font: 700 12px/1.2 var(--font); letter-spacing: .08em; color: var(--red); }
.products__empty { grid-column: 1 / -1; padding: 40px 0; text-align: center; color: var(--text-4); }

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: clamp(12px, 3vw, 32px);
}
.modal.is-open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(29, 29, 27, .55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal__panel {
  position: relative; width: 900px; max-width: 100%;
  max-height: calc(100vh - 2 * clamp(12px, 3vw, 32px)); max-height: calc(100dvh - 2 * clamp(12px, 3vw, 32px));
  overflow: auto;
  background: var(--white); border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px rgba(29, 29, 27, .32);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}
.modal__media { background: var(--grey); display: flex; align-items: center; justify-content: center; padding: 32px; border-right: 1px solid var(--line-soft); }
.modal__img { width: var(--img-w, 62%); height: 340px; background: center / contain no-repeat; filter: drop-shadow(0 18px 20px rgba(29, 29, 27, .26)); }
.modal__body { padding: 34px 36px 30px; display: flex; flex-direction: column; }
.modal__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.modal__brand { font: 600 10.5px/1.3 var(--font); letter-spacing: .14em; color: var(--red); margin-bottom: 8px; }
.modal__name { font: 700 26px/1.3 var(--font); }
.modal__close { width: 38px; height: 38px; }
.modal__close svg { width: 18px; height: 18px; stroke: currentColor; }
.modal__long { margin-top: 18px; font: 400 14.5px/1.85 var(--font); color: var(--text-2); }
.specs { margin-top: 22px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr)); gap: 0 28px; }
.spec { padding: 12px 0; border-top: 1px solid var(--line); }
.spec__label { font: 600 10.5px/1.3 var(--font); letter-spacing: .12em; color: var(--text-5); margin-bottom: 5px; text-transform: uppercase; }
.spec__value { font: 700 14px/1.4 var(--font); }
.modal__note { margin-top: 22px; padding: 16px 18px; background: var(--grey); display: flex; align-items: center; gap: 14px; font: 400 var(--fs-small)/1.6 var(--font); color: var(--text-2); }
.modal__note svg { width: 20px; height: 20px; fill: var(--red); flex: none; }
.modal__actions { margin-top: auto; padding-top: 22px; }
@media (max-width: 640px) {
  .modal__media { padding: 20px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .modal__img { height: 200px; }
  .modal__body { padding: 22px 20px 20px; }
  .modal__name { font-size: 22px; }
}
body.modal-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Görgetésre beúszás
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
.no-js [data-reveal] { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   Animációk
   -------------------------------------------------------------------------- */
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes ping { 0% { transform: scale(1); opacity: .55; } 70% { transform: scale(1.55); opacity: 0; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes swing { 0%, 100% { transform: rotate(-14deg); } 50% { transform: rotate(14deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee__group[aria-hidden] { display: none; }
  .marquee__group { flex-wrap: wrap; row-gap: 10px; padding: 0 var(--pad-x); }
}
