/* =========================================================
   Virág, Ajándék, Dekor Sziget — design tokens & base styles
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  /* colour */
  --bg:        #FAF6EF;
  --bg-alt:    #F1ECDC;
  --paper:     #FFFDF8;
  --ink:       #26312A;
  --ink-soft:  #5B6459;
  --green:     #3E5A45;
  --green-dk:  #263A2C;
  --rose:      #B9727C;
  --rose-soft: #EBD9D6;
  --gold:      #A6813F;
  --line:      #D9D6C4;

  /* type */
  --display: "Fraunces", serif;
  --body: "Work Sans", sans-serif;

  /* layout */
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
.site-header, .site-footer, section, .lightbox-overlay { position: relative; z-index: 1; }

body {
  margin: 0;
  background:
    radial-gradient(ellipse 900px 600px at 100% -5%, rgba(185, 114, 124, .08), transparent 60%),
    radial-gradient(ellipse 800px 500px at -5% 15%, rgba(62, 90, 69, .07), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  color: var(--green-dk);
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.6rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.25rem; font-weight: 600; }

p { margin: 0 0 1rem; max-width: 62ch; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.eyebrow {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rose);
  margin: 0 0 .35rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.5rem;
  border-radius: 3px;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .25s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--green);
  color: var(--paper);
  box-shadow: 0 1px 2px rgba(38,58,44,.15);
}
.btn-primary:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -6px rgba(38,58,44,.45);
}
.btn-primary:active { transform: translateY(0); box-shadow: 0 4px 10px -4px rgba(38,58,44,.4); }
.btn-ghost {
  background: transparent;
  border-color: var(--green);
  color: var(--green-dk);
}
.btn-ghost:hover {
  background: var(--green);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -8px rgba(38,58,44,.35);
}
.btn-ghost:active { transform: translateY(0); }

/* ---------------- névnap sáv ---------------- */
.nevnap-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.nevnap-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .7rem;
  padding: .55rem var(--gutter);
  text-align: center;
}
.nevnap-item {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  font-family: var(--display);
  font-size: .92rem;
  line-height: 1;
}
.nevnap-label {
  font-family: var(--body);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.nevnap-item strong {
  font-weight: 600;
  color: var(--green-dk);
}
.nevnap-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rose);
  flex: none;
}
@media (max-width: 480px) {
  .nevnap-bar-inner { gap: .5rem; padding: .5rem var(--gutter); }
  .nevnap-item { font-size: .82rem; }
  .nevnap-label { font-size: .6rem; }
}

/* ---------------- header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background-color .25s ease, backdrop-filter .25s ease, opacity .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 20px -10px rgba(38,58,44,.25);
}
.site-header.header-faded {
  background: rgba(250, 246, 239, .28); /* var(--bg) with transparency */
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: .55; /* fades everything inside too: logo, nav, fb icon, etc. */
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1.5rem;
}
.brand {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1.15;
}
.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: .9rem;
  flex-shrink: 0;
}
.brand-logo {
  display: block;
  height: 112px;
  width: auto;
  aspect-ratio: 900 / 380;
  flex-shrink: 0;
}
.fb-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: none;
  transition: transform .2s ease, box-shadow .2s ease;
  border-radius: 8px;
}
.fb-icon-link svg { width: 100%; height: 100%; display: block; }
.fb-icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -8px rgba(38,58,44,.4);
}
.brand-name {
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dk);
}
.brand-tag {
  font-size: .78rem;
  color: var(--rose);
  font-style: italic;
  font-family: var(--display);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.main-nav a {
  text-decoration: none;
  font-size: .95rem;
  color: var(--ink-soft);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  position: relative;
  transition: color .2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--rose);
  transition: width .25s ease;
}
.main-nav a:hover { color: var(--green-dk); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--green-dk); }
.nav-primary, .nav-categories { display: contents; }
.nav-primary a:first-child { order: 1; }
.nav-categories a { order: 2; }
.nav-primary a:last-child { order: 3; }
.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-dk);
  white-space: nowrap;
  text-decoration: none;
  padding: .4rem .7rem;
  border-radius: 999px;
  transition: background-color .18s ease, color .18s ease;
}
.phone-pill:hover { background: var(--rose-soft); color: var(--green-dk); }
.nav-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  height: 40px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green-dk);
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.nav-toggle:hover { background: var(--rose-soft); }
.nav-toggle:active { transform: scale(.96); }
.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 16px;
  flex: none;
}
.nav-toggle-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: currentColor;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* telefon-ikon és menü gomb csoportja — csak mobilon jelenik meg */
.mobile-actions { display: none; align-items: center; gap: .55rem; flex: none; }
.phone-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose-soft);
  flex: none;
  transition: background-color .18s ease, transform .18s ease;
}
.phone-icon-btn svg { width: 18px; height: 18px; fill: var(--green-dk); display: block; }
.phone-icon-btn:hover { background: var(--rose); transform: translateY(-1px); }
.phone-icon-btn:active { transform: scale(.94); }

/* háttér-elhomályosítás a kicsusszanó menü mögött */
.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(38, 58, 44, .38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 45;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

.nav-close { display: none; }

@media (max-width: 1280px) {
  .site-header { position: static; }
  .site-header .wrap {
    flex-wrap: wrap;
    padding-bottom: .95rem;
  }
  .brand-logo-wrap { order: 1; }
  .phone-pill { order: 2; }
  .main-nav {
    order: 3;
    flex-basis: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .7rem;
    margin-top: .9rem;
    padding-top: .9rem;
    border-top: 1px solid var(--line);
  }
  /* Főoldal + Kapcsolat: kiemelt, saját sor, két egyenlő gomb */
  .nav-primary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    width: 100%;
  }
  .nav-primary a {
    order: initial;
    text-align: center;
    font-size: .88rem;
    font-weight: 600;
    padding: .65rem .8rem;
    border-radius: 10px;
    line-height: 1.2;
  }
  .nav-primary a:first-child {
    color: var(--green-dk);
    background: var(--paper);
    border: 1px solid var(--line);
  }
  .nav-primary a:last-child {
    color: var(--paper);
    background: var(--green);
    border: 1px solid var(--green);
  }
  .nav-primary a[aria-current="page"] {
    color: var(--paper);
    background: var(--green);
    border-color: var(--green);
  }
  /* kategóriák: rendezett rács, egyenletes gombméretek */
  .nav-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: .5rem;
    width: 100%;
  }
  .nav-categories a {
    order: initial;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: .8rem;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: .6rem .65rem;
    line-height: 1.25;
  }
  .main-nav a::after { display: none; }
  .nav-categories a:hover { color: var(--green-dk); }
  .nav-categories a[aria-current="page"] {
    color: var(--paper);
    background: var(--green);
    border-color: var(--green);
  }
}

@media (max-width: 860px) {
  /* a fejléc telefonon is stickeljen a tetejéhez, pontosan úgy, mint asztali nézetben */
  .site-header { position: sticky; top: 0; }
  .site-header .wrap {
    position: relative;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: .5rem;
  }
  /* logó, facebook, telefon, menü — egy rendezett, egyenletesen elosztott sorban */
  .brand-logo-wrap, .mobile-actions { display: contents; }
  .brand-logo { height: 74px; }
  .fb-icon-link { display: inline-flex; width: 34px; height: 34px; }
  .phone-pill { display: none; }
  .phone-icon-btn { width: 34px; height: 34px; }
  .nav-toggle { display: inline-flex; flex-shrink: 0; }

  /* a menü innentől nem a fejléc alatt, hanem balról besuhanó panelként jelenik meg */
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    order: initial;
    flex-basis: auto;
    width: min(86vw, 340px);
    height: 100vh;
    height: 100dvh;
    margin-top: 0;
    padding: 4.5rem 1.25rem 2rem;
    background: var(--paper);
    border-top: none;
    border-right: 1px solid var(--line);
    box-shadow: 18px 0 40px -20px rgba(38, 58, 44, .35);
    overflow-y: auto;
    transform: translateX(-105%);
    transition: transform .38s cubic-bezier(.4, 0, .2, 1);
    z-index: 50;
  }
  .main-nav.open { transform: translateX(0); }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--green-dk);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
  }
  .nav-close:hover { background: var(--rose-soft); }

  .nav-primary, .nav-categories {
    display: flex;
    flex-direction: column;
    gap: .55rem;
  }
  .nav-primary { grid-template-columns: none; margin-bottom: 1.1rem; }
  .nav-categories { grid-template-columns: none; }
  .nav-categories a { justify-content: flex-start; text-align: left; }

  /* a menüpontok egymás után, kis csúszó-fakuló animációval jelennek meg nyitáskor */
  .main-nav .nav-primary a,
  .main-nav .nav-categories a {
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity .32s ease, transform .32s ease;
    transition-delay: 0s;
  }
  .main-nav.open .nav-primary a,
  .main-nav.open .nav-categories a { opacity: 1; transform: translateX(0); }
  .main-nav.open .nav-primary a:nth-child(1) { transition-delay: .08s; }
  .main-nav.open .nav-primary a:nth-child(2) { transition-delay: .13s; }
  .main-nav.open .nav-categories a:nth-child(1) { transition-delay: .18s; }
  .main-nav.open .nav-categories a:nth-child(2) { transition-delay: .23s; }
  .main-nav.open .nav-categories a:nth-child(3) { transition-delay: .28s; }
  .main-nav.open .nav-categories a:nth-child(4) { transition-delay: .33s; }
  .main-nav.open .nav-categories a:nth-child(5) { transition-delay: .38s; }
  .main-nav.open .nav-categories a:nth-child(6) { transition-delay: .43s; }
}
@media (max-width: 400px) {
  .brand-logo { height: 62px; }
  .main-nav { width: min(88vw, 300px); }
  .nav-categories a { font-size: .8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .main-nav, .nav-scrim, .main-nav .nav-primary a, .main-nav .nav-categories a, .nav-toggle-icon span {
    transition-duration: .01ms !important;
  }
}

/* ---------------- hero ---------------- */
.hero {
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(3rem, 8vw, 6rem);
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-copy p { margin-top: 1.1rem; }
.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-art {
  position: relative;
  animation: hero-float 6s ease-in-out infinite;
}
.hero-art svg { width: 100%; height: auto; display: block; }
.hero-art img { width: 100%; height: auto; display: block; margin-inline: auto; }
.preorder-note {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin: 1.3rem 0 0;
  max-width: 62ch;
  padding: 1.4rem 1.6rem;
  background: linear-gradient(135deg, rgba(166,129,63,.09), rgba(166,129,63,.03));
  border: 1px solid rgba(166,129,63,.28);
  border-radius: 12px;
}
.preorder-note p {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--green-dk);
}
.preorder-note-accent {
  font-weight: 700;
  color: var(--gold);
}
.preorder-note-icon {
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: .15rem;
  fill: var(--gold);
}
@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art { animation: none; }
}

@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 340px; margin: 0 auto; }
}

@media (min-width: 861px) {
  .preorder-note {
    max-width: 48ch;
    padding: 1rem 1.2rem;
    gap: .8rem;
  }
  .preorder-note p { font-size: 1.02rem; line-height: 1.5; }
  .preorder-note-icon { width: 22px; height: 22px; }
}

/* ---------------- section shells ---------------- */
section { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.band-alt { background: var(--bg-alt); }
.band-green {
  background:
    radial-gradient(ellipse 600px 400px at 15% 0%, rgba(185,114,124,.18), transparent 60%),
    var(--green-dk);
  color: var(--paper);
}
.band-green h2, .band-green .eyebrow { color: var(--paper); }
.band-green .eyebrow { color: var(--rose-soft); }
.band-green p { color: #D7DED4; }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

hr.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------------- category / product cards ---------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.cat-card {
  background: var(--paper);
  padding: 1.8rem 1.5rem 2rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  min-height: 240px;
  border-top: 3px solid var(--accent, var(--green));
  transition: background-color .2s ease, transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.cat-card:hover {
  background: var(--bg-alt);
  transform: translateY(-5px);
  box-shadow: 0 18px 34px -18px rgba(38,58,44,.35);
  z-index: 2;
}
.cat-card .go {
  margin-top: auto;
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent, var(--green));
  transition: transform .2s ease;
}
.cat-card:hover .go { transform: translateX(4px); }
.cat-card .num {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent, var(--rose));
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.cat-card h3 { margin-bottom: .5rem; }
.cat-card p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 1.2rem; }

@media (max-width: 860px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cat-card { padding: 1.4rem 1.1rem 1.6rem; min-height: 200px; }
  .cat-card h3 { font-size: 1.05rem; }
  .cat-card p { font-size: .85rem; }
}

/* product grid used on category pages */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 1000px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .product-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }

.product-grid > img {
  border-radius: 4px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.product-grid > img:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 30px -14px rgba(38,58,44,.4);
}

.product-card { display: flex; flex-direction: column; }
.photo-slot {
  aspect-ratio: 4 / 5;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: .8rem;
  text-align: center;
  padding: .4rem;
  margin-bottom: .9rem;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
img.photo-slot:hover {
  transform: scale(1.035);
}
.photo-slot svg { width: 34px; height: 34px; margin-bottom: .5rem; opacity: .55; }
.product-card h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.price {
  font-family: var(--display);
  color: var(--green);
  font-weight: 600;
  margin-top: .3rem;
}
.price .old { color: var(--ink-soft); font-weight: 400; text-decoration: line-through; margin-right: .5rem; font-size: .9em; }

/* delivery table */
.delivery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 760px) { .delivery { grid-template-columns: 1fr; } }
.delivery-list { list-style: none; margin: 0; padding: 0; }
.delivery-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .2s ease, border-color .2s ease;
}
.delivery-list li:hover {
  padding-left: .4rem;
  border-color: var(--rose);
}
.delivery-list li strong { font-family: var(--display); color: var(--green-dk); white-space: nowrap; }

/* contact block */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { padding: .6rem 0; border-top: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: 1px solid var(--line); }
.contact-list a { text-decoration: none; font-weight: 600; transition: color .18s ease; }
.contact-list a:hover { color: var(--rose); }

.hours-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--line);
}
.hours-list .day { color: var(--ink); font-weight: 600; }
.hours-list .time { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours-list .closed { color: var(--rose); font-weight: 600; }
.hours-list li.today { background: var(--bg-alt); margin: 0 -1rem; padding: .65rem 1rem; border-radius: 8px; border-bottom-color: transparent; }
.hours-list li.today .day { color: var(--green-dk); }
.contact-label { display: block; font-size: .78rem; color: var(--ink-soft); margin-bottom: .15rem; }

/* footer */
.site-footer {
  background: var(--green-dk);
  color: #CFD9CA;
  padding: 2.5rem 0 2rem;
  font-size: .9rem;
}
.site-footer a { color: #EFE7DC; text-decoration: none; transition: color .18s ease; }
.site-footer a:hover { color: var(--rose-soft); text-decoration: underline; }
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #3C513F;
}
.footer-grid > div { flex: 1 1 180px; }
.footer-brand { font-family: var(--display); font-size: 1.2rem; color: var(--paper); }
.footer-map-link {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #3C513F;
  line-height: 0;
}
.footer-map-link iframe { width: 100%; height: 120px; display: block; pointer-events: none; }
.footer-map-overlay { position: absolute; inset: 0; display: block; }
.footer-photo-frame {
  display: block;
  width: 100px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #3C513F;
  line-height: 0;
}
.footer-photo-frame img { width: 100%; height: auto; display: block; }
.footer-bottom {
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .8rem;
  color: #9AA894;
}

/* page intro band (category pages) */
.page-intro .wrap { max-width: 760px; }
.page-intro .eyebrow { margin-bottom: .6rem; }
@media (max-width: 640px) {
  .page-intro .wrap { padding-right: 140px; }
}

/* facebook / community callout */
.callout {
  border-left: 3px solid var(--rose);
  padding-left: 1.5rem;
  font-family: var(--display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--green-dk);
  max-width: 50ch;
}

.rolunk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.rolunk-grid img {
  border-radius: 6px;
}
.rolunk-grid h2 {
  font-size: clamp(1.9rem, 3.9vw, 2.6rem);
}
.rolunk-grid .lede {
  font-size: 1.25rem;
  max-width: 52ch;
}
@media (max-width: 760px) {
  .rolunk-grid { grid-template-columns: 1fr; }
  .rolunk-grid img { order: -1; }
}

img { cursor: zoom-in; }
.brand-logo { cursor: pointer; }
.no-lightbox { cursor: default; }

/* ---------------- lightbox ---------------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 24, 18, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: clamp(1rem, 4vw, 3rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}
.lightbox-box {
  background: var(--paper);
  max-width: min(600px, 100%);
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 0 0 1.6rem;
  border-radius: 20px;
  box-shadow: 0 40px 80px -20px rgba(15, 25, 15, .5), 0 12px 30px rgba(0,0,0,.18);
  transform: scale(.92) translateY(14px);
  opacity: 0;
  transition: transform .38s cubic-bezier(.22,.9,.3,1.1), opacity .3s ease;
}
.lightbox-overlay.open .lightbox-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.lightbox-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.9);
  color: var(--green-dk);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transition: transform .2s ease, background-color .2s ease;
  z-index: 2;
}
.lightbox-close:hover {
  background: var(--paper);
  transform: rotate(90deg) scale(1.08);
}
.lightbox-img-wrap {
  background: var(--bg-alt);
  cursor: default;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.lightbox-img-wrap img {
  width: 100%;
  max-height: 58vh;
  object-fit: contain;
  display: block;
  cursor: default;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox-img-wrap img.loaded { opacity: 1; }
.lightbox-body { padding: 1.5rem 1.7rem 0; }
.lightbox-caption { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.3rem; }
.lightbox-actions { display: flex; gap: .8rem; flex-wrap: wrap; }
.lightbox-actions .btn { transition: transform .18s ease, background-color .15s ease, color .15s ease, border-color .15s ease; }
.lightbox-actions .btn:hover { transform: translateY(-2px); }

/* ---------------- product modal ("Keretezett duett") ---------------- */
.product-card { cursor: pointer; }
.product-card img { cursor: pointer; }

.pm-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(38, 49, 42, .5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.pm-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease;
}
.pm-box {
  background: var(--paper);
  max-width: 900px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  border-radius: 10px;
  box-shadow: 0 40px 80px -20px rgba(15, 25, 15, .5), 0 12px 30px rgba(0,0,0,.18);
  transform: translateY(14px) scale(.98);
  opacity: 0;
  transition: transform .32s cubic-bezier(.2,.7,.2,1), opacity .32s ease;
}
.pm-overlay.open .pm-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
@media (max-width: 720px) {
  .pm-box { grid-template-columns: 1fr; }
}
.pm-close {
  position: absolute;
  top: .9rem;
  right: .9rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.9);
  color: var(--green-dk);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transition: transform .2s ease, background-color .2s ease;
  z-index: 3;
}
.pm-close:hover {
  background: var(--paper);
  transform: rotate(90deg) scale(1.08);
}
.pm-img-mat {
  padding: 1.6rem;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
}
@media (max-width: 720px) {
  .pm-img-mat { border-radius: 10px 10px 0 0; }
}
.pm-img-mat .pm-frame {
  display: inline-flex;
  max-width: 100%;
  box-shadow: 0 18px 30px -12px rgba(38,49,42,.28);
  border-radius: 4px;
  overflow: hidden;
}
.pm-img-mat img {
  display: block;
  max-width: 100%;
  max-height: 65vh;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity .3s ease;
}
.pm-img-mat img.loaded { opacity: 1; }
.pm-info {
  padding: 2.4rem 2.4rem 2.2rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 720px) {
  .pm-info { padding: 2rem 1.6rem 1.8rem; }
}
.pm-eyebrow {
  font-size: .76rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.pm-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.55rem;
  line-height: 1.15;
  margin: 0 0 1.1rem;
}
.pm-rule { width: 34px; height: 1px; background: var(--gold); margin-bottom: 1.1rem; }
.pm-desc { color: var(--ink-soft); font-size: .94rem; margin-bottom: 1.5rem; }
.pm-price { font-family: var(--display); font-style: italic; font-size: 1.7rem; color: var(--ink); margin-bottom: 1.6rem; }
.pm-ctas { margin-top: auto; display: flex; flex-direction: column; gap: .9rem; }
.pm-link {
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--green);
  position: relative;
  display: inline-block;
  width: fit-content;
}
.pm-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--green);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .25s ease;
}
.pm-link.ghost { color: var(--ink-soft); }
.pm-link.ghost::after { background: var(--line); }
.pm-link:hover::after { transform: scaleX(0); }

/* ---------------- google reviews slider ---------------- */
.reviews-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.8rem, 4vw, 2.5rem);
}
.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  padding: .5rem .9rem .5rem .6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.reviews-rating:hover { box-shadow: 0 10px 22px -14px rgba(38,58,44,.4); transform: translateY(-2px); border-color: var(--gold); }
.reviews-rating .g-badge { width: 22px; height: 22px; flex: none; }
.reviews-rating .stars { color: var(--gold); letter-spacing: 1px; font-size: .95rem; }
.reviews-rating .stars-partial {
  position: relative;
  display: inline-block;
  color: var(--line);
}
.reviews-rating .stars-partial::before {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(var(--rating) / 5 * 100%);
  overflow: hidden;
  white-space: nowrap;
  color: var(--gold);
}
.reviews-rating .rating-text { font-weight: 600; color: var(--ink); font-size: .92rem; }
.reviews-rating .rating-text small { color: var(--ink-soft); font-weight: 500; }

.reviews-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.reviews-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: .35rem .25rem 1.1rem;
  animation: reviews-scroll 48s linear infinite;
}
.reviews-slider:hover .reviews-track,
.reviews-slider:focus-within .reviews-track {
  animation-play-state: paused;
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.review-card {
  flex: none;
  width: min(84vw, 280px);
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 1.3rem 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
}
.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
}
.review-card .stars {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: 1.5px;
}
.review-top .g-badge { width: 17px; height: 17px; flex: none; opacity: .85; }
.review-card p {
  font-size: .89rem;
  line-height: 1.55;
  color: var(--ink);
  max-width: none;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card .review-meta {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-top: auto;
  padding-top: .8rem;
  border-top: 1px solid var(--line);
  line-height: 1.25;
}
.review-meta .name { font-size: .82rem; font-weight: 600; color: var(--ink); }
.review-meta .src { font-size: .74rem; color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }
  .review-card { scroll-snap-align: start; }
  .reviews-viewport { -webkit-mask-image: none; mask-image: none; }
}

@media (max-width: 560px) {
  .reviews-rating { padding: .45rem .8rem .45rem .5rem; }
}

/* ---------------- scroll reveal ---------------- */
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(32px);
}
.reveal.in-view {
  animation: reveal-up .8s cubic-bezier(.22,.68,.29,1) both;
  animation-delay: calc(var(--reveal-i, 0) * 90ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.in-view { animation: none; }
}

/* utility */
.mt-lg { margin-top: 2.5rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* =========================================================
   Vásárlási tájékoztató — belépő gomb (kapcsolat oldal) és
   a jogi accordion (vasarlasi-tajekoztato oldal)
   ========================================================= */
.btn-text {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .9rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: .9rem;
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
  transition: color .2s ease, text-decoration-color .2s ease;
}
.btn-text:hover { color: var(--rose); text-decoration-color: var(--rose); }
.legal-info { padding-top: 0; }
.legal-accordion {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem 1.2rem;
  align-items: start;
  max-width: 1100px;
}
@media (max-width: 720px) {
  .legal-accordion { grid-template-columns: 1fr; }
}
.legal-accordion details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
}
.legal-accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 1.3rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--green-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.legal-accordion summary::-webkit-details-marker { display: none; }
.legal-accordion summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--rose);
  transition: transform .2s ease;
}
.legal-accordion details[open] summary::after { transform: rotate(45deg); }
.legal-accordion details[open] summary { border-bottom: 1px solid var(--line); }
.legal-content {
  padding: 1rem 1.3rem 1.3rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.legal-content p { margin: 0 0 .85rem; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content ul { margin: 0; padding-left: 1.15rem; }
.legal-content li { margin-bottom: .55rem; }
.legal-content li:last-child { margin-bottom: 0; }
.legal-content em { color: var(--rose); font-style: normal; font-weight: 600; }
.legal-note {
  margin-top: 1.25rem;
  font-size: .88rem;
  color: var(--ink-soft);
  max-width: 68ch;
}
