:root {
  --bg: #f7f3ec;
  --bg-soft: #fcfaf6;
  --bg-warm: #efe7d8;
  --surface: #ffffff;
  --surface-soft: #fbf8f1;
  --surface-dark: #121212;
  --text: #171512;
  --text-soft: #4f473c;
  --line: rgba(23, 21, 18, 0.09);
  --gold: #c89a3c;
  --gold-strong: #b88420;

  /* ==========================================================================
     FINOMHANGOLÁS – EGYSZERŰ, PX ALAPÚ MÉRETEK
     Ezeket az értékeket nyugodtan átírhatod.
     ========================================================================== */
  --hero-h1-size-desktop: 52px; /* Főoldali főcím mérete asztali nézetben */
  --hero-h1-size-mobile: 36px;  /* Főoldali főcím mérete mobilon */
  --text-soft-strong: #4f473c;  /* A halványabb bekezdésszövegek színe */
  --card-bg: #ffffff;           /* Kártyák teljesen fedő fehér háttere */
  --panel-bg: #fffdfa;          /* Enyhén tört, de nem áttetsző háttér */

  --white: #ffffff;
  --black: #000000;
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --shadow-lg: 0 30px 70px rgba(33, 22, 4, 0.10);
  --shadow-md: 0 18px 38px rgba(33, 22, 4, 0.08);
  --container: min(1180px, calc(100% - 2rem));
  --header-h: 86px;
  --transition: 260ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(180deg, #fcfaf6 0%, #f7f3ec 100%);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.site-shell { position: relative; min-height: 100vh; }
.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid rgba(23,21,18,0.06);
  box-shadow: 0 8px 24px rgba(23,21,18,0.04);
  backdrop-filter: none;
}
.header-inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .9rem; min-width: 0; }
.brand img { width: 46px; height: 46px; }
.brand span { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 1rem; letter-spacing: .18em; font-weight: 500; text-transform: uppercase; }
.brand em {
  margin-top: .2rem;
  color: var(--gold-strong);
  font-style: normal;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
}
.site-nav { display: flex; align-items: center; gap: .7rem; }
.site-nav a {
  padding: .82rem 1rem;
  color: var(--text-soft);
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: #f1e1b8;
}
.site-nav .nav-cta {
  border: 1px solid rgba(191, 142, 52, .24);
  color: #2a1d0b;
  background: linear-gradient(135deg, #ecd39a, #d6aa57);
  box-shadow: 0 8px 18px rgba(191, 142, 52, .10);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active {
  color: #2a1d0b;
  background: linear-gradient(135deg, #f1daad, #ddb56a);
  border-color: rgba(191, 142, 52, .28);
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 13px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 25px; }
.nav-toggle span:nth-child(3) { top: 33px; }
.nav-toggle.is-open span:nth-child(1) { top: 25px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 25px; transform: rotate(-45deg); }

.hero {
  position: relative;
  padding: 5.5rem 0 4.6rem;
}
.hero-home {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,238,220,.96)), linear-gradient(180deg, #fff 0%, #f5efe4 100%);
}
.hero-subpage {
  padding-top: 4.6rem;
  background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(246,238,220,.94)), linear-gradient(180deg, #fff 0%, #f5efe4 100%);
}
/* A korábbi alsó átmenetes fátylat levettük, hogy tisztább maradjon a hero rész. */
.hero::after { content: none; }
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.honeycomb-layer {
  background-image: url("assets/hex-pattern.svg");
  background-size: 360px;
  background-position: right -40px top 24px;
  background-repeat: no-repeat;
  opacity: .04;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(380px,.96fr);
  gap: 3.2rem;
  align-items: center;
}
.hero-grid-subpage { align-items: start; }

.eyebrow,
.mini-label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  color: var(--gold-strong);
}
.hero h1,
.section-heading h2,
.showcase-card__body h3,
.product-body h2,
.contact-card h2,
.value-card h3,
.process-card h3,
.faq-item summary,
.contact-info-panel h2,
.hero-side-card h2,
.floating-copy h2,
.closing-card h2,
.cta-panel h2,
.intro-card h2,
.photo-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  line-height: .97;
  letter-spacing: -.01em;
}
.hero h1 { margin: 0; font-size: var(--hero-h1-size-desktop); max-width: 18ch; }
.hero-lead,
.section-heading p,
.floating-copy p,
.showcase-card__body p,
.value-card p,
.product-body p,
.process-card p,
.contact-card p,
.contact-card small,
.contact-info-panel p,
.contact-notes p,
.form-note,
.closing-card p,
.cta-panel p,
.info-tile p,
.intro-card p,
.photo-copy p { color: var(--text-soft-strong); }
.hero-lead { margin: 1.3rem 0 0; max-width: 58ch; font-size: 1.08rem; }
.hero-actions,
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: .9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, #e2bc6a, #bf8e34);
  color: #1a1407;
  box-shadow: 0 14px 28px rgba(191,142,52,.16);
}
.button-secondary {
  background: var(--white);
  color: var(--text);
  border-color: rgba(23,21,18,.10);
}
.button-full { width: 100%; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero-badges span,
.product-badge,
.product-volume,
.filter-chip,
.floating-stat,
.photo-copy-list span {
  border-radius: 999px;
  border: 1px solid rgba(23,21,18,.08);
  background: var(--card-bg);
}
.hero-badges span { padding: .65rem .9rem; color: var(--text-soft); }

.hero-visual { position: relative; min-height: 630px; }
.hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(200,154,60,.20);
  background: rgba(200,154,60,.04);
  pointer-events: none;
}
.orbit-one { width: 430px; height: 430px; top: 5%; right: 1%; }
.orbit-two { width: 240px; height: 240px; bottom: 6%; left: 6%; }

.floating-card,
.hero-side-card,
.contact-info-panel,
.contact-form-panel,
.cta-panel,
.closing-card,
.intro-card,
.info-tile,
.value-card,
.contact-card,
.process-card,
.product-card,
.faq-item,
.showcase-card,
.filter-bar,
.photo-copy,
.photo-panel {
  position: relative;
  background: var(--card-bg);
  border: 1px solid rgba(23,21,18,.08);
  box-shadow: var(--shadow-md);
}
.floating-card,
.hero-side-card,
.contact-info-panel,
.contact-form-panel,
.cta-panel,
.closing-card,
.intro-card,
.info-tile,
.value-card,
.contact-card,
.process-card,
.product-card,
.faq-item,
.photo-copy,
.photo-panel { border-radius: var(--radius-lg); }
.floating-card::before,
.hero-side-card::before,
.contact-info-panel::before,
.contact-form-panel::before,
.cta-panel::before,
.closing-card::before,
.intro-card::before,
.info-tile::before,
.value-card::before,
.contact-card::before,
.process-card::before,
.product-card::before,
.faq-item::before,
.showcase-card::before,
.photo-copy::before,
.photo-panel::before {
  content: none; /* FÁTYOL KIKAPCSOLVA */
}

.floating-card { width: min(100%,540px); padding: 1.2rem; position: absolute; right: 0; top: 14%; }
.main-jar-card { transform: rotate(-1deg); }
.hex-frame {
  position: relative;
  display: block;
  min-height: unset;
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  clip-path: none;
  background: #f3eee4;
  overflow: hidden;
  padding: 0;
}
.jar-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  z-index: 0;
  filter: none;
}
.jar-highlight {
  display: none;
}
.jar-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: unset;
  min-height: 38px;
  padding: .42rem .85rem;
  border-radius: 999px;
  background: rgba(22,20,18,.76);
  border: 1px solid rgba(255,255,255,.14);
  font-size: .78rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(3px);
}
.floating-copy { padding: 1.3rem .4rem .3rem; }
.floating-copy h2,
.hero-side-card h2,
.intro-card h2,
.contact-info-panel h2,
.cta-panel h2,
.closing-card h2,
.photo-copy h2 { margin: 0; font-size: clamp(1.7rem, 2.4vw, 2.5rem); }
.floating-stat {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: .95rem 1rem;
  max-width: 250px;
}
.floating-stat strong { font-size: 1.35rem; color: var(--gold-strong); }
.floating-stat span { color: var(--text-soft); font-size: .92rem; }
.floating-stat-top { top: 3%; left: 0; }
.floating-stat-bottom { right: 2%; bottom: 8%; }

.section { position: relative; padding: 4rem 0; }
.section-dark {
  background: linear-gradient(180deg, #171615 0%, #0f0f0f 100%);
  color: #f8f3e8;
}
.section-dark .section-heading p,
.section-dark .showcase-card__body p,
.section-dark .process-card p,
.section-dark .faq-item p,
.section-dark .cta-panel p { color: rgba(248,243,232,.72); }
.section-dark .showcase-card,
.section-dark .process-card,
.section-dark .faq-item,
.section-dark .cta-panel {
  background: #1b1a18;
  border-color: rgba(255,255,255,.08);
  box-shadow: none;
}
/* ==========================================================================
   CTA SZEKCIÓ – világosabb, prémium mézes hangulat   
   ========================================================================== */

.cta-section {
  background:
    radial-gradient(circle at top right, rgba(255, 195, 11, 0.16) 0%, rgba(255, 195, 11, 0) 32%),
    linear-gradient(180deg, #fff9ea 0%, #f6df9c 58%, #edc65e 100%);
  color: #24180b;
}

.cta-section .cta-panel {
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.88) 0%, rgba(255, 248, 234, 0.78) 100%);
  border: 1px solid rgba(184, 132, 32, 0.18);
  box-shadow: 0 24px 54px rgba(168, 118, 23, 0.14);
  backdrop-filter: blur(4px);
}

.cta-section .eyebrow {
  color: #9a6810;
}

.cta-section .cta-panel h2 {
  color: #23170a;
}

.cta-section .cta-panel p {
  color: #5b4730;
}

.cta-section .button-primary {
  background: linear-gradient(135deg, #f0c85d, #c99224);
  color: #1f1608;
  box-shadow: 0 14px 28px rgba(186, 129, 23, 0.18);
}

.cta-section .button-secondary {
  background: rgba(255, 255, 255, 0.86);
  color: #2c2114;
  border-color: rgba(120, 84, 20, 0.12);
}
.section-heading { max-width: 760px; margin-bottom: 2.2rem; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); }

.intro-grid { display: grid; grid-template-columns: 1.1fr repeat(3, minmax(0,1fr)); gap: 1rem; }
.intro-card,
.info-tile,
.value-card,
.process-card,
.contact-card,
.hero-side-card,
.contact-info-panel,
.contact-form-panel,
.closing-card,
.cta-panel,
.photo-copy,
.photo-panel { padding: 1.6rem; }
.intro-band { padding-top: 1rem; }
.value-card h3,
.process-card h3,
.contact-card h2,
.product-body h2,
.showcase-card__body h3 { font-size: 1.5rem; margin: 0 0 .55rem; }
.info-tile strong {
  display: block;
  font-size: 1.22rem;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
  margin: 0 0 .55rem;
}

.honey-card-amber { background-image: linear-gradient(135deg, #dfb46a 0%, #9b5b1f 55%, #4b2815 100%); }
.honey-card-wax { background-image: linear-gradient(135deg, #f6e3ba 0%, #d0a95d 40%, #7a5a22 100%); }

.photo-story { background: linear-gradient(180deg, #fffdf9 0%, #f4eddf 100%); }
.photo-story-grid {
  display: grid;
  grid-template-columns: minmax(0,1.1fr) minmax(360px,.9fr);
  gap: 1rem;
  align-items: stretch;
}
.photo-panel{
  padding: 0;
  overflow: hidden;
  min-height: unset;
  aspect-ratio: 385 / 300;
}

.photo-panel > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-copy-list { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.2rem; }
.photo-copy-list span { padding: .68rem .9rem; color: var(--text-soft); }
.photo-band { padding-top: 1.6rem; }

/*kártya chip gomb*/
.product-chip-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  padding: .62rem .95rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #e2bc6a, #bf8e34);
  color: #1a1407;
  font-size: .92rem;
  font-weight: 400;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(191,142,52,.16);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.product-chip-link::after {
  content: "→";
  font-size: .95em;
  line-height: 1;
  transition: transform var(--transition);
}

.product-chip-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e2bc6a, #bf8e34);
  color: #1a1407;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(191,142,52,.16);
}

.product-chip-link:visited,
.product-chip-link:hover,
.product-chip-link:active,
.product-chip-link:focus {
  color: #1a1407;
}

.product-chip-link:hover::after {
  transform: translateX(2px);
}

.product-chip-link:focus-visible {
  outline: 3px solid rgba(191, 142, 52, .18);
  outline-offset: 3px;
}

/*SCROLL linkelés esetén*/
.anchor-target {
  scroll-margin-top: calc(var(--header-h) + 30px);
}

@media (max-width: 820px) {
  .anchor-target {
    scroll-margin-top: calc(var(--header-h) + 5px);
  }
}
/* ==========================================================================
   FÁTYOL TELJESEN KIKAPCSOLVA
   Itt tudsz finomhangolni:
   - --text-soft-strong: bekezdésszöveg sötétsége
   - --hero-h1-size-desktop: főcím mérete asztali nézetben
   - --hero-h1-size-mobile: főcím mérete mobilon
   ========================================================================== */
.showcase-card__body p,
.photo-copy p,
.photo-copy-list span {
  color: var(--text-soft-strong);
}

.showcase-section .showcase-card__visual > img {
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.values-grid,
.process-grid,
.contact-grid,
.final-cta-grid { display: grid; gap: 1rem; }
.values-grid { grid-template-columns: 1.1fr repeat(3, minmax(0,1fr)); align-items: start; }
.value-icon,
.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(200,154,60,.12);
  color: var(--gold-strong);
  margin-bottom: 1rem;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  padding: 1rem;
  border-radius: 24px;
  background: var(--card-bg);
  border: 1px solid rgba(23,21,18,.08);
  margin-bottom: 1.4rem;
}
.filter-chip {
  padding: .8rem 1rem;
  color: var(--text-soft);
  background: var(--card-bg);
  border: 1px solid rgba(23,21,18,.08);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}
.filter-chip:hover,
.filter-chip.is-active {
  color: #1a1407;
  background: linear-gradient(135deg, #e2bc6a, #c79338);
  border-color: transparent;
  transform: translateY(-1px);
}
.product-topline { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: space-between; align-items: center; }
.product-badge,
.product-volume { padding: .5rem .75rem; font-size: .85rem; color: var(--text-soft); }
.process-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.process-card span { color: var(--gold-strong); font-size: .88rem; letter-spacing: .14em; }
.faq-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 1.2rem; }
.faq-list { display: grid; gap: 1rem; }
.faq-item { padding: 1.15rem 1.2rem; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: clamp(1.05rem, 1.8vw, 1.22rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--gold-strong); }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: .9rem 0 0; color: var(--text-soft); }
.contact-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.contact-card a { color: var(--text); }
.contact-layout-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 1rem; }
.contact-notes { display: grid; gap: 1rem; margin-top: 1.5rem; }
.contact-notes strong { display: block; margin-bottom: .25rem; color: var(--text); }
.contact-form { display: grid; gap: 1rem; }
.form-field { display: grid; gap: .45rem; }
.form-field label { color: var(--text-soft); font-size: .95rem; }
.form-field input,
.form-field textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(23,21,18,.12);
  background: #fcf7f0;
  color: var(--text);
  padding: 1rem 1rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}


.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(200,154,60,.55);
  background: rgba(255,255,255,1);
  box-shadow: 0 0 0 4px rgba(200,154,60,.12);
}
.hero-side-card { max-width: 460px; margin-left: auto; }
.cta-panel { display: flex; gap: 2rem; align-items: center; justify-content: space-between; }
.site-footer {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(23,21,18,.08);
  background: #fffdfa;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a,
.site-footer p { color: var(--text-soft); }

.reveal {
  opacity: 0;
  transform: translate3d(0,22px,0);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}
.reveal[data-reveal="left"] { transform: translate3d(26px,0,0); }
.reveal.is-visible { opacity: 1; transform: translate3d(0,0,0); }
.is-hidden-by-filter { display: none !important; }

@media (max-width: 1080px) {
  .hero-grid,
  .hero-grid-subpage,
  .faq-grid,
  .values-grid,
  .intro-grid,
  .photo-story-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}


@media (max-width: 820px) {
  :root { --header-h: 78px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .site-nav {
    position: fixed;
    inset: calc(var(--header-h) + .6rem) 1rem auto 1rem;
    display: grid;
    gap: .75rem;
    padding: 1rem;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(23,21,18,.08);
    box-shadow: var(--shadow-lg);
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }
  .site-nav.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .site-nav a { width: 100%; border-radius: 20px; padding: 1rem 1rem; background: #fffdfa; }
  .hero { padding-top: 3.5rem; }
  .hero h1 { max-width: 18ch; }
  .hero-visual { min-height: auto; display: grid; gap: 1rem; }
  .floating-card,
  .floating-stat { position: relative; inset: auto; width: 100%; max-width: none; transform: none; }
  .contact-grid,
  .process-grid { grid-template-columns: 1fr; }
  .cta-panel,
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero-orbit { display: none; }
  .photo-panel { min-height: 300px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 1.1rem); max-width: 100%; }
  .hero { padding-bottom: 3rem; }
  .section { padding: 3.2rem 0; }
  .hero h1 { font-size: var(--hero-h1-size-mobile); }
  .section-heading h2,
  .floating-copy h2,
  .hero-side-card h2,
  .contact-info-panel h2,
  .cta-panel h2,
  .closing-card h2,
  .intro-card h2,
  .photo-copy h2 { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions,
  .cta-actions { flex-direction: column; align-items: stretch; }
  .photo-copy .cta-actions { align-items: flex-start;}
  .photo-copy .cta-actions .product-chip-link { width: auto; align-self: flex-start;}
  .button { width: 100%; }
  .cta-section .cta-actions { width: 100%; align-items: center;}
  .cta-section .cta-actions .button { width: min(100%, 280px);}
  .hero-badges,
  .filter-bar,
  .photo-copy-list { gap: .6rem; }
  .floating-card,
  .hero-side-card,
  .contact-info-panel,
  .contact-form-panel,
  .cta-panel,
  .closing-card,
  .intro-card,
  .info-tile,
  .value-card,
  .contact-card,
  .process-card,
  .product-card,
  .faq-item,
  .photo-copy,
  .photo-panel { border-radius: 22px; }
  .hex-frame {
    min-height: unset;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
  }
  .jar-label {
    left: 14px;
    bottom: 14px;
    min-height: 34px;
    padding: .38rem .72rem;
    font-size: .72rem;
  }
 .product-topline {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: .55rem;
}
  .honeycomb-layer { background-size: 260px; background-position: right -30px top 12px; }
}

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



/* ==========================================================================
   KIEMELT TERMÉKEK – kompakt 3 kártyás blokk
   Csak a főoldali .showcase-section blokkra vonatkozik.
   ========================================================================== */

.showcase-section .stacked-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.showcase-section .showcase-card {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  padding: 1rem;
  border-radius: 28px;
  overflow: hidden;
}

.showcase-section .showcase-card:nth-child(odd) {
  flex-direction: row-reverse;
}

.showcase-section .showcase-card:nth-child(even) {
  flex-direction: row;
}

.showcase-section .showcase-card__visual {
  position: relative;
  flex: 0 0 min(42%, 430px);
  width: min(42%, 430px);
  align-self: flex-start;
  border-radius: 22px;
  overflow: hidden;
  background: #f3eee4;
  border: 1px solid rgba(23,21,18,.08);
  aspect-ratio: 4 / 3;
  min-height: unset;
}

.showcase-section .showcase-card__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.showcase-section .showcase-card__visual::after {
  content: none;
}

.showcase-section .showcase-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
  padding: .35rem .35rem .35rem .15rem;
}

.showcase-section .showcase-card__body .product-chip-link {
  align-self: flex-start;
  width: auto;
}

.showcase-section .showcase-card__body .mini-label {
  margin-bottom: .75rem;
}

.showcase-section .showcase-card__body p {
  margin: 0;
}

@media (max-width: 980px) {
  .showcase-section .showcase-card {
    gap: 1rem;
  }

  .showcase-section .showcase-card__visual {
    flex-basis: min(40%, 360px);
    width: min(40%, 360px);
    aspect-ratio: 1 / 1;
    min-height: unset;
  }

  .showcase-section .showcase-card__visual > img {
    object-position: center top;
  }
}

@media (max-width: 820px) {
  .showcase-section .showcase-card,
  .showcase-section .showcase-card:nth-child(odd),
  .showcase-section .showcase-card:nth-child(even) {
    flex-direction: column;
  }

  .showcase-section .showcase-card__visual {
    width: 100%;
    flex-basis: auto;
    min-height: unset;
    aspect-ratio: 16 / 10;
  }
}

/*Termék oldal ELFOGYOTT*/

.product-status-chip {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: .58rem 1rem;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .03em;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(33, 22, 4, .14);
}

.product-status-chip--soldout {
  color: #5f4520;
  background: linear-gradient(135deg, rgba(255, 248, 232, .96), rgba(240, 221, 177, .92));
  border: 1px solid rgba(191, 142, 52, .32);
}

/*inaktív, halvány kosárgomb*/
.product-card--soldout .variant-button {
  opacity: .55;
  pointer-events: none;
  filter: grayscale(.08);
}

.product-card--soldout .product-price-hint {
  opacity: .72;
}
@media (max-width: 560px) {
  .product-status-chip {
    top: 12px;
    right: 12px;
    min-height: 32px;
    padding: .38rem .72rem;
    font-size: .74rem;
  }
}

/*mikor várható újra?*/
.restock-note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .85rem;
  padding: .62rem .9rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(248, 235, 200, .78), rgba(239, 217, 168, .62));
  border: 1px solid rgba(191, 142, 52, .22);
  color: #7a5a1f;
  font-size: .95rem;
  font-weight: 400;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(191, 142, 52, .08);
}

/* ==========================================================================
   TERMÉKOLDAL + KOSÁR BLOKK
   ========================================================================== */

.product-shop {
  position: relative;
}

 .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-media {
  position: relative;
  min-height: unset;
  aspect-ratio: 16 / 10;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  background: #f3eee4;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem;
}

.product-body h2 {
  font-size: 1.9rem;
  margin: .35rem 0 .55rem;
}

.product-body p {
  margin: 0;
  font-size: .96rem;
}

.feature-list {
  margin: .85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-soft);
  font-size: .92rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-strong);
}

.product-card__footer {
  margin-top: auto;
  padding-top: 1rem;
  display: grid;
  gap: .85rem;
}


/* ==========================================================================
   TERMÉKVÁLTOZAT GOMBOK – VILÁGOSABB ARANY + PRÉMIUM SVG KOSÁR IKON
   ========================================================================== */

.product-price-hint {
  font-weight: 400;
  color: #7a5a1f;
  font-size: .96rem;
}

.variant-grid {
  display: grid;
  gap: .75rem;
}


.variant-button {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .85rem;
  padding: .95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(191, 142, 52, .20);
  background: linear-gradient(135deg, #f8ebc8, #ecd39a);
  color: #1f1608;
  box-shadow:
    0 8px 18px rgba(191, 142, 52, .10),
    inset 0 1px 0 rgba(255,255,255,.5);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    filter var(--transition);
}

.variant-button:hover {
  transform: translateY(-2px);
  border-color: rgba(191, 142, 52, .28);
  background: linear-gradient(135deg, #faefcf, #efd9a8);
  box-shadow:
    0 12px 24px rgba(191, 142, 52, .14),
    inset 0 1px 0 rgba(255,255,255,.58);
  filter: saturate(1.02);
}

.variant-button:active {
  transform: translateY(0);
  box-shadow:
    0 6px 14px rgba(191, 142, 52, .10),
    inset 0 1px 0 rgba(255,255,255,.42);
}

.variant-button:focus-visible {
  outline: 3px solid rgba(191, 142, 52, .22);
  outline-offset: 3px;
}

.variant-button__meta {
  display: grid;
  gap: .14rem;
  text-align: left;
}

.variant-button__size {
  font-weight: 400;
  font-size: 1rem;
  color: #1f1608;
}

.variant-button__note {
  font-size: .83rem;
  color: rgba(70, 52, 22, .76);
}

.variant-button__price {
  display: inline-flex;
  align-items: center;
  gap: .62rem;
  padding: .52rem .72rem .52rem .82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .46);
  border: 1px solid rgba(255,255,255,.58);
  font-weight: 600;
  color: #1f1608;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    0 6px 12px rgba(191, 142, 52, .06);
}

.variant-button__price::after {
  content: "";
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: inline-block;
  border-radius: 999px;
  background-color: rgba(31, 22, 8, .92);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h2l2.1 8.2a1 1 0 0 0 1 .8h8.9a1 1 0 0 0 1-.8L20 8H7' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='19' r='1.5' fill='%23000'/%3E%3Ccircle cx='17' cy='19' r='1.5' fill='%23000'/%3E%3C/svg%3E");
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h2l2.1 8.2a1 1 0 0 0 1 .8h8.9a1 1 0 0 0 1-.8L20 8H7' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='9' cy='19' r='1.5' fill='%23000'/%3E%3Ccircle cx='17' cy='19' r='1.5' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 20px 20px;
  mask-size: 20px 20px;
}

.variant-button:hover .variant-button__price {
  background: rgba(255, 255, 255, .58);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.42),
    0 8px 16px rgba(191, 142, 52, .08);
}


@media (max-width: 560px) {
  .variant-button {
    padding: .88rem .92rem;
    gap: .7rem;
  }

  .variant-button__price {
    padding: .48rem .64rem .48rem .74rem;
    font-size: .96rem;
    gap: .55rem;
  }

  .variant-button__price::after {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
  }
}

.product-help {
  font-size: .82rem;
  color: var(--text-soft);
  font-weight: 400;
}

.honey-card-acacia {
  background-image: linear-gradient(135deg, #f7e7bc 0%, #e7c56f 48%, #b07d2a 100%);
}

.honey-card-flower {
  background-image: linear-gradient(135deg, #efc874 0%, #cb8d2b 45%, #7e4318 100%);
}

.honey-card-cream {
  background-image: linear-gradient(135deg, #fff1cc 0%, #efd488 40%, #be9440 100%);
}


/* ==========================================================================
   MINI KOSÁR – TISZTÍTOTT, EGYOSZLOPOS VERZIÓ
   ========================================================================== */

.cart-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 140;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(191, 142, 52, .25);
  border-radius: 999px;
  background: linear-gradient(135deg, #ecd39a, #d6aa57);
  color: #2a1d0b;
  box-shadow: 0 18px 36px rgba(33, 22, 4, .16);
}

.cart-fab__count {
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 .45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  font-weight: 700;
}

.cart-fab.is-empty .cart-fab__count {
  opacity: .72;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(16, 13, 8, .48);
  backdrop-filter: blur(3px);
}

.cart-sheet {
  position: fixed;
  z-index: 160;
  top: 50%;
  left: 50%;
  width: min(700px, calc(100vw - 2rem));
  max-height: min(88dvh, 820px);
  transform: translate(-50%, -50%) scale(.98);
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  background: #fffdfa;
  border: 1px solid rgba(23, 21, 18, .10);
  border-radius: 30px;
  box-shadow: 0 34px 72px rgba(33, 22, 4, .22);
  overflow: hidden;
  transition: opacity var(--transition), transform var(--transition);
}

.cart-sheet.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.cart-sheet__header {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.35rem 1rem;
  border-bottom: 1px solid rgba(23, 21, 18, .08);
  background: linear-gradient(180deg, #fffaf0 0%, #fffdfa 100%);
}

.cart-sheet__header h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.cart-sheet__header p {
  margin: .4rem 0 0;
  color: var(--text-soft);
  max-width: 32rem;
}

.cart-close {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(23, 21, 18, .10);
  background: #ffffff;
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
}

.cart-sheet__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 1rem 1.35rem 1.35rem;
}

.cart-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border: 1px solid rgba(23, 21, 18, .08);
  border-radius: 24px;
  background: #ffffff;
  padding: 1rem;
}

.cart-panel h3 {
  margin: 0 0 .9rem;
  font-size: 1.2rem;
}

.cart-empty {
  margin: 0;
  padding: 1rem;
  border-radius: 18px;
  background: #f8f3ea;
  color: var(--text-soft);
}

.cart-items {
  display: grid;
  gap: .85rem;
  overflow: visible;
  max-height: none;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(23, 21, 18, .08);
  background: #f7f1e8;
}

.cart-item__title {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
}

.cart-item__title strong {
  font-size: 1rem;
}

.cart-item__variant {
  display: inline-flex;
  align-items: center;
  padding: .28rem .6rem;
  border-radius: 999px;
  background: #f6efe0;
  color: var(--text-soft);
  font-size: .82rem;
}

.cart-item__price {
  margin-top: .35rem;
  color: var(--text-soft);
  font-size: .92rem;
}

.cart-item__controls {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
  margin-top: .8rem;
}

.qty-button,
.remove-button {
  border-radius: 14px;
  border: 1px solid rgba(23, 21, 18, .10);
  background: #ffffff;
  color: var(--text);
}

.qty-button {
  width: 38px;
  height: 38px;
  font-size: 1.05rem;
}

.remove-button {
  padding: .62rem .8rem;
  font-size: .88rem;
}

.cart-item__summary {
  text-align: right;
  display: grid;
  gap: .35rem;
  align-content: start;
  min-width: 92px;
}

.cart-item__qty {
  color: var(--text-soft);
  font-size: .88rem;
}

.cart-item__line-total {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2a1d0b;
}

.cart-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 21, 18, .08);
}

.cart-total__label {
  display: grid;
  gap: .2rem;
}

.cart-total__label span {
  color: var(--text-soft);
  font-size: .9rem;
}

.cart-total strong {
  font-size: 1.25rem;
  color: #2a1d0b;
}

.cart-open-page-button {
  display: flex;
  width: 100%;
  margin-top: 1rem;
  position: static;
  box-shadow: 0 12px 24px rgba(191, 142, 52, .18);
}

body.cart-open {
  overflow: hidden;
}

@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .cart-fab {
    right: .75rem;
    bottom: .75rem;
    padding: .82rem .92rem;
  }

  .cart-sheet {
    top: .7rem;
    right: .7rem;
    bottom: .7rem;
    left: .7rem;
    width: auto;
    max-height: none;
    transform: translateY(18px);
    border-radius: 24px;
  }

  .cart-sheet.is-open {
    transform: translateY(0);
  }

  .cart-sheet__header {
    padding: 1rem 1rem .9rem;
  }

  .cart-sheet__header h2 {
    font-size: 1.9rem;
  }

  .cart-sheet__body {
    padding: .9rem 1rem 1rem;
  }

  .cart-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .85rem;
    align-items: start;
  }

  .cart-item__summary {
    text-align: right;
    min-width: 88px;
  }
}

@media (max-width: 365px) {
  .cart-item {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .cart-item__summary {
    text-align: left;
    min-width: 0;
  }


  .cart-hint-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   KOSÁR – PRÉMIUM SZÁMLÁZÁSI CHECKBOX
   ========================================================================== */

.form-field--checkbox {
  gap: 0;
  margin-bottom: .15rem;
}

.form-field--checkbox label {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(23, 21, 18, .10);
  background: linear-gradient(180deg, #fffdfa 0%, #fbf5ea 100%);
  color: var(--text);
  line-height: 1.45;
  cursor: pointer;
  box-shadow:
    0 10px 22px rgba(33, 22, 4, .05),
    inset 0 1px 0 rgba(255,255,255,.65);
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.form-field--checkbox label:hover {
  transform: translateY(-1px);
  border-color: rgba(191, 142, 52, .26);
  box-shadow:
    0 14px 28px rgba(33, 22, 4, .07),
    inset 0 1px 0 rgba(255,255,255,.72);
}

.form-field--checkbox label:has(input[type="checkbox"]:checked) {
  border-color: rgba(191, 142, 52, .42);
  background: linear-gradient(135deg, rgba(248, 235, 200, .95), rgba(236, 211, 154, .92));
  box-shadow:
    0 16px 30px rgba(191, 142, 52, .12),
    inset 0 1px 0 rgba(255,255,255,.62);
}

.form-field--checkbox label:has(input[type="checkbox"]:focus-visible) {
  outline: 2px solid rgba(200,154,60,.40);
  outline-offset: 3px;
}

.form-field--checkbox input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin: 0;
  padding: 0;
  border-radius: 7px;
  border: 1px solid rgba(191, 142, 52, .30);
  background: linear-gradient(180deg, #fffdfa 0%, #f3eadb 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    0 4px 10px rgba(33, 22, 4, .06);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0 0;
  flex: 0 0 22px;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    background-size var(--transition);
}

.form-field--checkbox input[type="checkbox"]:checked {
  border-color: #bf8e34;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.2 6.2 11.4 13 4.6' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat,
    linear-gradient(135deg, #e2bc6a, #bf8e34);
  box-shadow:
    0 8px 18px rgba(191, 142, 52, .18),
    inset 0 1px 0 rgba(255,255,255,.24);
}

.form-field--checkbox input[type="checkbox"]:focus {
  outline: none;
}

@media (max-width: 560px) {
  .form-field--checkbox label {
    padding: .88rem .92rem;
    gap: .75rem;
    align-items: flex-start;
  }

  .form-field--checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-basis: 20px;
    margin-top: .1rem;
  }
}
/*kosár oldal 2 blokk*/
/* ==========================================================================
   KOSÁR OLDAL – BAL ÉS JOBB DOBOZ EGYSÉGESÍTÉSE
   ========================================================================== */

.cart-panel,
.cart-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  border: 1px solid rgba(23, 21, 18, .08);
  border-radius: 24px;
  background: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.cart-panel h3,
.cart-form-wrap h3 {
  margin: 0 0 .9rem;
  font-size: 1.2rem;
}

.cart-form-wrap .cart-form {
  display: grid;
  gap: .9rem;
}

.cart-form-wrap .form-note {
  margin: .2rem 0 0;
  color: var(--text-soft);
  font-size: .9rem;
}
/* ==========================================================================
   KOSÁR OLDAL – ÁTVÉTELI MÓD + MOBILOS VÉGÖSSZEG JAVÍTÁS
   ========================================================================== */

.delivery-method {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(23, 21, 18, .08);
}

.delivery-method__title {
  margin: 0 0 .75rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
}

.delivery-method__grid {
  display: grid;
  gap: .7rem;
  margin-bottom: 1rem;
}

.delivery-option {
  display: block;
  cursor: pointer;
}

.delivery-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.delivery-option__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(23, 21, 18, .10);
  background: #fffdfa;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    transform var(--transition);
}

.delivery-option__box strong {
  display: inline-block;
  font-size: .98rem;
  color: var(--text);
}

.delivery-option__box small {
  display: inline-block;
  color: var(--text-soft);
  font-size: .84rem;
  white-space: nowrap;
  text-align: right;
  margin-left: auto;
}

.delivery-option:hover .delivery-option__box {
  transform: translateY(-1px);
  border-color: rgba(191, 142, 52, .30);
  box-shadow: 0 10px 20px rgba(33, 22, 4, .05);
}

.delivery-option input:checked + .delivery-option__box {
  border-color: #bf8e34;
  background: linear-gradient(135deg, #f3d58d, #e6be67);
  box-shadow: 0 12px 24px rgba(191, 142, 52, .16);
}

.delivery-option input:checked + .delivery-option__box strong {
  color: #1f1608;
}

.delivery-option input:checked + .delivery-option__box small {
  color: #5a4420;
}

.delivery-option input:focus-visible + .delivery-option__box {
  outline: 2px solid rgba(200, 154, 60, .45);
  outline-offset: 2px;
}
/*kosár szállítási mód választó elrejtés*/
[hidden] {
  display: none !important;
}

.form-field[hidden],
.form-section[hidden],
[data-invoice-toggle-wrap][hidden],
[data-billing-same-wrap][hidden],
[data-shipping-section][hidden],
[data-billing-section][hidden] {
  display: none !important;
}
/*szállítási infók, összegek*/
.shipping-info-card {
  margin-top: 1.35rem;
  padding: 1.15rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 251, 243, 0.96), rgba(248, 241, 226, 0.96));
  border: 1px solid rgba(191, 142, 52, 0.20);
  box-shadow: 0 16px 34px rgba(28, 22, 14, 0.06);
}

.shipping-info-card__head {
  margin-bottom: 1rem;
}

.shipping-info-card__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a7628;
}

.shipping-info-card__head h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  line-height: 1.2;
  color: #1f1a14;
}

.shipping-info-card__lead {
  margin: 0;
  color: rgba(31, 26, 20, 0.82);
  font-size: 0.96rem;
  line-height: 1.6;
}

.shipping-info-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shipping-rate-box {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(191, 142, 52, 0.16);
  border-radius: 18px;
  padding: 0.95rem;
}

.shipping-rate-box h4 {
  margin: 0 0 0.32rem;
  font-size: 1rem;
  line-height: 1.35;
  color: #1f1a14;
}

.shipping-rate-box__note {
  margin-bottom: 0.8rem;
  font-size: 0.87rem;
  color: rgba(31, 26, 20, 0.68);
}

.shipping-rate-table {
  display: grid;
  gap: 0.48rem;
}

.shipping-rate-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.72rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 248, 235, 0.9);
  border: 1px solid rgba(191, 142, 52, 0.12);
}

.shipping-rate-row--head {
  background: rgba(228, 195, 120, 0.22);
  border-color: rgba(191, 142, 52, 0.18);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #7b5a1a;
}

.shipping-rate-row strong {
  font-size: 0.98rem;
  color: #6f4f16;
  white-space: nowrap;
}

@media (max-width: 760px) {
  .shipping-info-grid {
    grid-template-columns: 1fr;
  }

  .shipping-info-card {
    padding: 1rem;
  }

  .shipping-rate-row {
    padding: 0.68rem 0.78rem;
  }
}
/* Kosár oldalon mobilon is maradjon egy sorban a végösszeg */
@media (max-width: 720px) {
  .cart-total--page {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .cart-total--page .cart-total__label {
    min-width: 0;
  }

  .cart-total--page > strong {
    white-space: nowrap;
  }

  .delivery-option__box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .delivery-option__box small {
    white-space: nowrap;
    text-align: right;
  }
}

/* ==========================================================================
   KOSÁR OLDAL – HERO ÉS TARTALOM KÖZTI TÁVOLSÁG CSÖKKENTÉSE
   ========================================================================== */

.page-cart .hero {
  padding-bottom: 1.25rem;
}

.page-cart .hero + .section {
  padding-top: 1.5rem;
}
/*Kosár küldésgomb*/
#order-form.is-submitting button[type="submit"],
#order-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


/*kosár 2 oszlop kis képernyőn is*/
@media (max-width: 800px) {
  .page-cart .contact-layout-grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  }
}

@media (max-width: 790px) {
  .page-cart .contact-layout-grid {
    grid-template-columns: 1fr;
  }
}

/*Főoldal mini galéria*/
.photo-rotator {
  position: relative;
  width: 100%;
  aspect-ratio: 385 / 300;
  overflow: hidden;
  border-radius: 24px; /* itt tudod a sarkok kerekítését állítani */
  background: rgba(0, 0, 0, 0.04);
  isolation: isolate;
}

.photo-rotator__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform-origin: center center;
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1.6s ease,
    transform 6.2s ease;
  pointer-events: none;
  will-change: opacity, transform;
}

.photo-rotator__img.is-active {
  opacity: 1;
  transform: scale(1);
}

.photo-rotator::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 245, 210, 0.12) 0%,
      rgba(255, 245, 210, 0.03) 24%,
      rgba(255, 245, 210, 0) 42%
    ),
    linear-gradient(
      180deg,
      rgba(191, 142, 52, 0.04) 0%,
      rgba(191, 142, 52, 0.01) 48%,
      rgba(32, 20, 6, 0.08) 100%
    );
}

/*ne csússzon el az oldal*/
html,
body,
.site-shell {
  max-width: 100%;
  overflow-x: clip;
}

.container,
.photo-story-grid,
.photo-panel,
.photo-rotator,
.product-grid,
.product-card,
.product-media,
.showcase-card,
.showcase-card__visual,
.hero-grid,
.hero-visual,
.floating-card,
.hex-frame {
  min-width: 0;
  max-width: 100%;
}

.photo-panel,
.photo-rotator,
.product-media,
.hex-frame {
  width: 100%;
}

img,
.product-media img,
.jar-photo {
  max-width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.photo-panel img,
.product-media img,
.showcase-card__visual img,
.photo-rotator__img,
.jar-photo {
  pointer-events: none;
}

.product-chip-link,
.product-chip-link:link,
.product-chip-link:visited,
.product-chip-link:hover,
.product-chip-link:active,
.product-chip-link:focus {
  color: #1a1407;
  font-weight: 400;
}

/*köszönö üzenet*/
.form-alert {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.form-alert--success {
  background: rgba(119, 187, 51, 0.12);
  border: 1px solid rgba(119, 187, 51, 0.35);
  color: #28450f;
}

.form-alert--error {
  background: rgba(180, 45, 45, 0.10);
  border: 1px solid rgba(180, 45, 45, 0.28);
  color: #6b1d1d;
}

/* szöveg*/
p {
  font-size: 1.04rem;
}

/* =========================================================
   Süti banner
========================================================= */

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 9999;
  width: min( calc(100% - 2rem), 920px );
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(191, 142, 52, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.96), rgba(250, 240, 219, 0.94));
  box-shadow:
    0 18px 50px rgba(31, 24, 15, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.65) inset;
  backdrop-filter: blur(14px);
}

.cookie-banner__text {
  color: #2f2517;
}

.cookie-banner__text strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.98rem;
  line-height: 1.35;
}

.cookie-banner__text p {
  margin: 0;
  max-width: 68ch;
  color: rgba(47, 37, 23, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.cookie-btn {
  min-width: 128px;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn--accept {
  border: 1px solid rgba(191, 142, 52, 0.55);
  background: linear-gradient(135deg, #e2bc6a, #bf8e34);
  color: #2f2517;
  box-shadow: 0 10px 24px rgba(191, 142, 52, 0.28);
}

.cookie-btn--accept:hover {
  box-shadow: 0 14px 30px rgba(191, 142, 52, 0.34);
}

.cookie-btn--reject {
  border: 1px solid rgba(47, 37, 23, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(47, 37, 23, 0.74);
  box-shadow: 0 8px 20px rgba(31, 24, 15, 0.06);
}

.cookie-btn--reject:hover {
  border-color: rgba(47, 37, 23, 0.24);
  background: rgba(255, 255, 255, 0.92);
  color: #2f2517;
}

@media (max-width: 760px) {
  .cookie-banner {
    bottom: 0.75rem;
    width: min(calc(100% - 1rem), 560px);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 0.95rem;
    padding: 0.95rem;
    border-radius: 20px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .cookie-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-btn {
    transition: none;
  }

  .cookie-btn:hover {
    transform: none;
  }
}