@import url('fonts.css');

/* ===================================================================
   HoneyZsu — dizájn-rendszer
   Forrás: a Zsu által küldött Whisper-kollekció lapok (Ocean / Alpine /
   Gingerbread). Színek onnan mintázva, tipográfia a lapok hierarchiáját
   követi: ritkított display-serif cím + ritkított sans kiskapitális
   alcím + kalligrafikus szignó.
   Mobil-first: minden alap-szabály telefonra szól, a media query bővít.
=================================================================== */

:root {
  /* Alap-felületek — sosem tiszta fehér, mindig meleg papír */
  --paper: #f7f3ec;
  --paper-deep: #efe9df;
  --surface: #fffcf8;
  --line: #e6dfd4;
  --line-soft: #efe9e0;

  /* Szöveg */
  --ink: #2f4257;        /* display címek — mély tengerkék */
  --body: #4f5b64;       /* folyószöveg */
  --muted: #8b939a;      /* segédszöveg, címkék */

  /* Márka-akcentek (a kollekciók színpalettáiból) */
  --ocean: #7d9aa5;
  --ocean-deep: #52707e;
  --sage: #8fa396;
  --sage-deep: #566b5b;
  --sand: #dfd2c0;
  --gold: #be9f6b;
  --gold-deep: #9d8151;
  --bordo: #8c3a33;

  /* Kollekció-témák (data-theme attribútummal váltható) */
  --theme: var(--ocean);
  --theme-deep: var(--ocean-deep);

  /* Rácsok, sugarak, árnyékok */
  --wrap: 1220px;
  --gut: 20px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --shadow-sm: 0 2px 10px rgba(47, 66, 87, .05);
  --shadow-md: 0 10px 34px rgba(47, 66, 87, .09);
  --shadow-lg: 0 22px 60px rgba(47, 66, 87, .13);

  /* Tipográfia */
  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-sans: 'Jost', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-script: 'Parisienne', cursive;

  --header-h: 62px;
}

[data-theme="alpine"] { --theme: #5b7796; --theme-deep: #38506b; }
[data-theme="gingerbread"] { --theme: #6c7f62; --theme-deep: #4a5a43; }

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
a, button { touch-action: manipulation; }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1.14;
}

::selection { background: var(--sand); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--ocean-deep);
  outline-offset: 3px;
  border-radius: 3px;
}

/* --- Elrendezés-segédek ------------------------------------------ */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.section { padding-block: 58px; }
.section--tight { padding-block: 40px; }
.section--paper { background: var(--paper-deep); }

.skip {
  position: absolute; left: -9999px;
  background: var(--surface); color: var(--ink);
  padding: 12px 18px; z-index: 200; border-radius: var(--r-sm);
}
.skip:focus { left: 12px; top: 12px; }

/* --- Tipográfiai elemek ------------------------------------------ */

/* Ritkított kiskapitális felülcímke — a Whisper-lapok "HANGULAT",
   "SZÍNPALETTA" felirataival azonos szerep. */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--theme-deep);
  margin: 0 0 14px;
}
.eyebrow--muted { color: var(--muted); }

.h-display {
  font-size: clamp(2.15rem, 10.5vw, 3.4rem);
  letter-spacing: .055em;
  text-transform: uppercase;
  font-weight: 300;
}
.h-section {
  font-size: clamp(1.85rem, 7.6vw, 2.7rem);
  letter-spacing: .045em;
  text-transform: uppercase;
  font-weight: 300;
}
.h-card {
  font-size: 1.28rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 400;
}
.script {
  font-family: var(--f-script);
  text-transform: none;
  letter-spacing: 0;
  color: var(--gold-deep);
}
.lead {
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 58ch;
  margin-inline: auto;
}

/* Arany szív-elválasztó — a küldött lapok visszatérő motívuma */
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 18px 0 26px;
}
.divider::before, .divider::after {
  content: ''; height: 1px; width: min(64px, 16vw);
  background: linear-gradient(90deg, transparent, var(--sand));
}
.divider::after { background: linear-gradient(270deg, transparent, var(--sand)); }
.divider svg { width: 15px; height: 15px; fill: var(--gold); flex: none; }

.center { text-align: center; }

/* --- Gombok ------------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-size: 12px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 2px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
  min-height: 48px;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--theme-deep); color: #fff; }
.btn--primary:hover { background: var(--ink); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { border-color: rgba(255,255,255,.75); color: #fff; }
.btn--light:hover { background: #fff; color: var(--ink); }
.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; min-height: 42px; font-size: 11px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--theme-deep); padding-block: 6px;
}
.link-arrow::after {
  content: ''; width: 22px; height: 1px; background: currentColor;
  transition: width .25s ease;
}
.link-arrow:hover::after { width: 34px; }

/* --- Fejléc ------------------------------------------------------- */

.topbar {
  background: var(--ink); color: #efe9e0;
  font-size: 10.5px; letter-spacing: .17em; text-transform: uppercase;
  text-align: center; padding: 8px 16px;
}

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 243, 236, .93);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: var(--f-script);
  font-size: 27px; color: var(--ink); letter-spacing: .01em;
}
.logo__sub {
  font-size: 8px; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 3px; padding-left: 3px;
  white-space: nowrap; /* keskeny mobilon se törjön két sorba */
}

.nav { display: none; }
.nav a {
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--body); padding: 8px 0; position: relative;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: 2px;
  width: 0; height: 1px; background: var(--theme-deep); transition: width .28s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header__tools { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: none; border: 0; color: var(--ink);
}
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.3; }

.lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); padding-inline: 6px;
}
.lang a[aria-current="true"] { color: var(--ink); }
.lang span { opacity: .4; }

.cart-count {
  position: absolute; transform: translate(11px, -11px);
  background: var(--gold); color: #fff;
  font-size: 9.5px; line-height: 1; font-weight: 500;
  min-width: 16px; height: 16px; border-radius: 8px;
  display: grid; place-items: center; padding-inline: 4px;
}

/* Mobil menü */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .34s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.drawer[data-open="true"] { transform: translateX(0); }
.drawer__head {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: var(--gut);
  border-bottom: 1px solid var(--line);
}
.drawer__nav { padding: 26px var(--gut) 40px; }
.drawer__nav a {
  display: block;
  font-family: var(--f-display);
  font-size: 1.6rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink);
  padding: 15px 0; border-bottom: 1px solid var(--line-soft);
}
.drawer__nav small {
  display: block; font-family: var(--f-sans);
  font-size: 10.5px; letter-spacing: .2em; color: var(--muted);
  text-transform: uppercase; margin-top: 4px;
}

/* --- Hero --------------------------------------------------------- */

.hero { position: relative; background: var(--paper-deep); }
.hero__media { position: relative; }
/* Mobilon szándékosan nem teljes képernyős: a hero alatti „két út" sáv
   felső széle már az első képernyőn kikandikáljon, hogy legyen mit görgetni. */
.hero__media img {
  width: 100%; height: 58vh; min-height: 390px; max-height: 560px;
  object-fit: cover; object-position: 50% 30%;
}
/* Mobilon a szöveg a kép fölött fut, ezért a felső harmadban erősebb
   a fátyol — enélkül a mintás vászon alatt olvashatatlan a bekezdés. */
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(247,243,236,.90) 0%,
    rgba(247,243,236,.82) 34%,
    rgba(247,243,236,.42) 58%,
    rgba(247,243,236,.05) 100%);
}
.hero__body {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 34px var(--gut) 0;
  text-align: center;
}
.hero__body > * { max-width: 620px; margin-inline: auto; }
.hero__title {
  font-size: clamp(2.3rem, 11.5vw, 3.6rem);
  letter-spacing: .05em; text-transform: uppercase; font-weight: 300;
  color: var(--ink);
}
.hero__title .script {
  display: block; text-transform: none; letter-spacing: 0;
  font-size: .62em; margin-top: 4px;
}
.hero__text {
  font-size: .96rem; color: var(--body);
  margin: 14px auto 0; max-width: 40ch;
}
.hero__cta {
  display: flex; flex-direction: column; gap: 11px;
  margin-top: 24px; width: min(300px, 100%);
}
/* A kontúros gomb a fotó világos részein elveszne — enyhe fátyol mögé. */
.hero__cta .btn--ghost {
  background: rgba(255, 252, 248, .58);
  backdrop-filter: blur(3px);
}
.hero__cta .btn--ghost:hover { background: var(--ink); }

/* --- „Két út" sáv --------------------------------------------------
   Közvetlenül a hero alatt: a HoneyZsu kétféleképpen is eladja ugyanazt
   a kollekciót — készen vagy tudásként. Ez az oldal fő üzenete, ezért
   már az első görgetésnél árral együtt látszik. */

.paths { display: grid; gap: 16px; }
.path {
  position: relative; overflow: hidden;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: box-shadow .3s ease, transform .3s ease;
}
.path:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.path__media { position: relative; }
.path__media img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.path__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,252,248,.94); border: 1px solid var(--line);
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--theme-deep); padding: 6px 11px; border-radius: 2px;
}
.path__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.path__title { font-size: 1.4rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 300; }
.path__text { font-size: .92rem; margin: 0; }
.path__foot {
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.price-tag {
  font-family: var(--f-display); font-size: 1.22rem; color: var(--ink); letter-spacing: .02em;
}
.price-tag small { font-family: var(--f-sans); font-size: .72rem; color: var(--muted); display: block; letter-spacing: .1em; text-transform: uppercase; }

/* --- Vízszintesen húzható termék-sor (mobil) ------------------------ */

.scroll-row {
  display: flex; gap: 13px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px var(--gut) 6px;
  margin-inline: calc(var(--gut) * -1);
  scrollbar-width: none;
}
.scroll-row::-webkit-scrollbar { display: none; }
.scroll-row > * { scroll-snap-align: start; flex: 0 0 66%; max-width: 260px; }
.swipe-hint {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: 7px; margin-top: 12px;
}
.swipe-hint svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.4; }

/* --- Kártya-rács --------------------------------------------------- */

.grid { display: grid; gap: 16px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--collections { grid-template-columns: 1fr; gap: 20px; }

/* Termékkártya */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--sand); }
.card__media { position: relative; background: var(--paper); }
.card__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.badge {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255,252,248,.94);
  border: 1px solid var(--line);
  color: var(--theme-deep);
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 2px;
}
.badge--set { background: var(--theme-deep); color: #fff; border-color: transparent; }
.card__body { padding: 15px 15px 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.card__cat {
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.card__title { font-size: 1.08rem; letter-spacing: .045em; text-transform: uppercase; }
.card__price {
  margin-top: auto; font-size: 1rem; color: var(--ink);
  font-family: var(--f-display); letter-spacing: .03em;
}
.card__price small { font-size: .72rem; color: var(--muted); font-family: var(--f-sans); }

/* Kollekció-kártya */
.collection {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  display: block;
}
.collection__media { position: relative; }
.collection__media img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.6,.2,1);
}
.collection:hover .collection__media img { transform: scale(1.045); }
.collection__body { padding: 20px 20px 24px; text-align: center; }
.collection__title {
  font-size: 1.55rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 300;
}
.collection__meta {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-top: 8px;
}
.collection__text { font-size: .92rem; margin: 12px 0 16px; }

/* A kollekció nem katalógus-lap, hanem két megvásárolható dolog:
   a kész szett és a hozzá tartozó workshop. Mindkettő ára itt látszik. */
.collection__buy {
  margin-top: 16px; padding-top: 15px; border-top: 1px solid var(--line-soft);
  display: grid; gap: 8px;
}
.collection__row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  font-size: .84rem;
}
.collection__row span:first-child {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.collection__row b { font-family: var(--f-display); font-size: 1.02rem; font-weight: 400; color: var(--ink); }

/* Színpaletta-pöttyök — a Whisper-lapok szín-swatch blokkja */
.swatches { display: flex; gap: 8px; justify-content: center; }
.swatch { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(0,0,0,.06); }

/* --- Workshop-blokk ------------------------------------------------ */

.workshop {
  background: var(--ink); color: #e8e2d8;
  position: relative; overflow: hidden;
}
.workshop h2 { color: #fff; }
.workshop .eyebrow { color: var(--sand); }
.workshop__grid { display: grid; gap: 26px; }
.workshop__media {
  position: relative; border-radius: var(--r-md); overflow: hidden;
  aspect-ratio: 16/10;
}
.workshop__media img { width: 100%; height: 100%; object-fit: cover; }
.play {
  position: absolute; inset: 0; margin: auto;
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(255,252,248,.92);
  display: grid; place-items: center; border: 0;
}
.play svg { width: 20px; height: 20px; fill: var(--ink); margin-left: 3px; }
.workshop__list { list-style: none; padding: 0; margin: 18px 0 26px; display: grid; gap: 11px; }
.workshop__list li { display: flex; gap: 11px; align-items: flex-start; font-size: .94rem; }
.workshop__list svg { width: 15px; height: 15px; fill: var(--gold); flex: none; margin-top: 6px; }

/* --- Story / Rólunk ------------------------------------------------- */

.story__grid { display: grid; gap: 26px; }
.story__media { border-radius: var(--r-lg); overflow: hidden; }
.story__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* --- Vélemények ----------------------------------------------------- */

.quote {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 24px 20px; text-align: center;
}
.quote p {
  font-family: var(--f-display); font-size: 1.16rem; line-height: 1.55;
  color: var(--ink); margin: 0 0 14px; font-style: italic;
}
.quote cite {
  font-style: normal; font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.stars { display: flex; gap: 3px; justify-content: center; margin-bottom: 12px; }
.stars svg { width: 13px; height: 13px; fill: var(--gold); }

/* --- Bizalmi sáv ---------------------------------------------------- */

.trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 14px; }
.trust__item { text-align: center; }
.trust__item svg { width: 26px; height: 26px; stroke: var(--theme-deep); fill: none; stroke-width: 1.1; margin-inline: auto; }
.trust__item h3 {
  font-family: var(--f-sans); font-size: 11px; letter-spacing: .17em;
  text-transform: uppercase; color: var(--ink); margin: 11px 0 5px; font-weight: 400;
}
.trust__item p { font-size: .82rem; margin: 0; color: var(--muted); line-height: 1.5; }

/* --- Hírlevél -------------------------------------------------------- */

.newsletter { background: var(--sand); }
.newsletter form {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 440px; margin: 22px auto 0;
}
.newsletter input {
  height: 50px; padding: 0 16px;
  border: 1px solid rgba(47,66,87,.2); background: rgba(255,255,255,.72);
  border-radius: 2px; font: inherit; color: var(--ink);
}
.newsletter input::placeholder { color: #9a9187; }
.newsletter small { display: block; margin-top: 12px; font-size: .74rem; color: #7d7367; }

/* --- Lábléc ---------------------------------------------------------- */

.footer { background: var(--ink); color: #cfd6dc; padding-block: 44px 26px; }
.footer h4 {
  font-family: var(--f-sans); font-size: 10.5px; letter-spacing: .24em;
  text-transform: uppercase; color: #fff; margin: 0 0 14px; font-weight: 400;
}
.footer__grid { display: grid; gap: 30px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.footer a { font-size: .89rem; color: #cfd6dc; }
.footer a:hover { color: #fff; }
.footer__bottom {
  margin-top: 34px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-direction: column; gap: 10px;
  font-size: .76rem; color: #8e9aa5; text-align: center;
}
.footer .logo__name { color: #fff; }
.footer .logo__sub { color: var(--sand); }
.social { display: flex; gap: 14px; }
.social a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.social svg { width: 16px; height: 16px; fill: currentColor; }

/* ====================================================================
   TERMÉKOLDAL
==================================================================== */

.crumbs {
  font-size: 10.5px; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted); padding-block: 16px;
}
.crumbs a:hover { color: var(--ink); }
.crumbs span { opacity: .5; margin-inline: 7px; }

.pdp { display: grid; gap: 26px; }
.gallery__main {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
}
.gallery__main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.gallery__thumbs { display: flex; gap: 9px; margin-top: 9px; overflow-x: auto; padding-bottom: 3px; }
.gallery__thumbs button {
  flex: none; width: 68px; height: 68px; padding: 0;
  border: 1px solid var(--line); border-radius: var(--r-sm);
  overflow: hidden; background: var(--surface);
  transition: border-color .2s ease;
}
.gallery__thumbs button[aria-selected="true"] { border-color: var(--theme-deep); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.pdp__title {
  font-size: clamp(1.75rem, 8vw, 2.5rem);
  letter-spacing: .05em; text-transform: uppercase; font-weight: 300;
  margin-top: 6px;
}
.pdp__price {
  font-family: var(--f-display); font-size: 1.7rem; color: var(--ink);
  margin: 14px 0 4px; letter-spacing: .02em;
}
.pdp__vat { font-size: .78rem; color: var(--muted); }
.pdp__desc { margin: 18px 0; font-size: .97rem; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 6px; }
.pill {
  font-size: 9.5px; letter-spacing: .17em; text-transform: uppercase;
  border: 1px solid var(--line); background: var(--surface);
  color: var(--theme-deep); padding: 6px 11px; border-radius: 2px;
}
.pill--solid { background: var(--theme-deep); color: #fff; border-color: transparent; }
.pill--stock { color: var(--sage-deep); border-color: rgba(86,107,91,.35); }

.qty { display: flex; align-items: center; border: 1px solid var(--line); border-radius: 2px; background: var(--surface); }
.qty button { width: 46px; height: 48px; background: none; border: 0; font-size: 17px; color: var(--ink); }
.qty input {
  width: 44px; height: 48px; border: 0; background: none;
  text-align: center; font: inherit; color: var(--ink);
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.buy-row { display: flex; gap: 10px; margin: 20px 0 8px; }
.buy-row .btn { flex: 1; }

.acc { border-top: 1px solid var(--line); margin-top: 24px; }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 17px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
}
.acc__btn svg { width: 13px; height: 13px; stroke: currentColor; stroke-width: 1.5; fill: none; transition: transform .3s ease; }
.acc__btn[aria-expanded="true"] svg { transform: rotate(45deg); }
.acc__panel { display: none; padding-bottom: 20px; font-size: .92rem; }
.acc__panel[data-open="true"] { display: block; }
.acc__panel ul { margin: 0; padding-left: 18px; display: grid; gap: 6px; }

/* Ehhez tartozó workshop — a szett és a videó összekötése */
.upsell {
  margin-top: 26px; padding: 20px;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: linear-gradient(180deg, var(--surface), var(--paper));
  display: grid; gap: 15px;
}
.upsell__head { display: flex; gap: 13px; align-items: center; }
.upsell__head svg { width: 30px; height: 30px; stroke: var(--gold-deep); fill: none; stroke-width: 1.2; flex: none; }
.upsell h3 { font-size: 1.06rem; letter-spacing: .05em; text-transform: uppercase; }
.upsell p { margin: 0; font-size: .89rem; }
.upsell__price { font-family: var(--f-display); font-size: 1.2rem; color: var(--ink); }

/* Sticky mobil vásárlósáv */
.sticky-buy {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(255,252,248,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
  transform: translateY(110%);
  transition: transform .3s ease;
  box-shadow: 0 -6px 24px rgba(47,66,87,.08);
}
.sticky-buy[data-show="true"] { transform: translateY(0); }
.sticky-buy__info { flex: 1; min-width: 0; }
.sticky-buy__name {
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.sticky-buy__price { font-family: var(--f-display); font-size: 1.1rem; color: var(--ink); }

/* ====================================================================
   KOLLEKCIÓ-OLDAL
==================================================================== */

.chero { position: relative; background: var(--paper-deep); text-align: center; padding-block: 46px 40px; }
.chero__title {
  font-size: clamp(2.1rem, 10vw, 3.6rem);
  letter-spacing: .07em; text-transform: uppercase; font-weight: 300;
}
.chero__title span { display: block; color: var(--theme); }
.chero__mood { max-width: 46ch; margin: 16px auto 0; font-size: 1rem; }

.palette { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; max-width: 420px; margin-inline: auto; }
.palette__item { display: flex; align-items: center; gap: 11px; }
.palette__dot { width: 34px; height: 34px; border-radius: 8px; flex: none; border: 1px solid rgba(0,0,0,.06); }
.palette__name { font-size: 11px; letter-spacing: .13em; text-transform: uppercase; color: var(--body); }

.steps { display: grid; gap: 14px; counter-reset: s; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 18px 18px 20px; display: flex; gap: 15px;
}
.step__num {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--theme); color: #fff;
  display: grid; place-items: center;
  font-family: var(--f-display); font-size: 1.05rem;
}
.step h3 { font-size: 1.05rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 5px; }
.step p { margin: 0; font-size: .9rem; }

.cutters { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.cutter { text-align: center; }
.cutter svg { width: 100%; height: 86px; stroke: var(--ink); fill: none; stroke-width: 2.2; opacity: .8; }
.cutter span { display: block; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }

/* ====================================================================
   WORKSHOP-CSOMAGVÁLASZTÓ
   Egy workshophoz több dolog vásárolható: csak a videó, videó + kész
   szett, videó + DIY box, illetve külön a kiszúrók. Rádiógombos
   kártyalista, mert egyszerre csak egy csomag választható.
==================================================================== */

.opts { display: grid; gap: 11px; margin: 22px 0 18px; }
.opt {
  position: relative;
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.opt:has(input:checked) {
  border-color: var(--theme-deep);
  box-shadow: 0 0 0 1px var(--theme-deep) inset;
}
.opt input { position: absolute; opacity: 0; pointer-events: none; }
.opt label {
  display: flex; gap: 13px; align-items: flex-start;
  padding: 15px 16px; cursor: pointer;
}
.opt__mark {
  flex: none; width: 19px; height: 19px; margin-top: 2px;
  border: 1px solid var(--line); border-radius: 50%;
  display: grid; place-items: center; background: #fff;
}
.opt__mark::after {
  content: ''; width: 9px; height: 9px; border-radius: 50%;
  background: var(--theme-deep); transform: scale(0); transition: transform .18s ease;
}
.opt:has(input:checked) .opt__mark { border-color: var(--theme-deep); }
.opt:has(input:checked) .opt__mark::after { transform: scale(1); }
.opt__body { flex: 1; min-width: 0; }
.opt__title {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  font-size: 1rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--ink); font-family: var(--f-display);
}
.opt__price { font-family: var(--f-display); font-size: 1.08rem; white-space: nowrap; }
.opt__desc { font-size: .86rem; margin: 5px 0 0; color: var(--body); }
.opt__tag {
  display: inline-block; margin-top: 8px;
  font-size: 9px; letter-spacing: .18em; text-transform: uppercase;
  background: var(--sand); color: var(--gold-deep);
  padding: 4px 9px; border-radius: 2px;
}

/* ====================================================================
   MEGOSZTÁS — termék és workshop is megosztható
   Mobilon a natív megosztó-lap jön (ott van az Instagram, Messenger,
   minden telepített app); desktopon a konkrét ikonok.
==================================================================== */

.share {
  margin-top: 22px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.share__label {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 11px;
}
.share__row { display: flex; gap: 9px; flex-wrap: wrap; align-items: center; }
.share__btn {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%;
  background: var(--surface); color: var(--ink);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.share__btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.share__btn svg { width: 17px; height: 17px; fill: currentColor; }
/* A natív megosztás szélesebb, szöveges gomb — ez a fő út mobilon.
   Alapból rejtve, a JS kapcsolja be, ha a böngésző támogatja. */
.share__btn--native {
  display: none;
  width: auto; padding: 0 18px; height: 42px; border-radius: 2px;
  align-items: center; gap: 9px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  background: var(--theme-deep); color: #fff; border-color: transparent;
}
.share__btn--native[data-on="true"] { display: inline-flex; }
.share__btn--native:hover { background: var(--ink); }
.share__copied {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--sage-deep); opacity: 0; transition: opacity .25s ease;
}
.share__copied[data-show="true"] { opacity: 1; }

/* --- „Kövess minket" sáv — a social saját helyet kap, nem csak a láblécben --- */

.follow { background: var(--paper-deep); border-block: 1px solid var(--line); }
.follow__inner {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  text-align: center; padding-block: 34px;
}
.follow h2 {
  font-size: clamp(1.4rem, 5.6vw, 1.9rem);
  letter-spacing: .05em; text-transform: uppercase; font-weight: 300;
}
.follow p { margin: 0; font-size: .93rem; max-width: 44ch; }
.follow__links { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.follow__link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px; border: 1px solid var(--line); border-radius: 2px;
  background: var(--surface);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink);
  transition: background .2s ease, color .2s ease;
}
.follow__link:hover { background: var(--ink); color: #fff; }
.follow__link svg { width: 17px; height: 17px; fill: currentColor; }

@media (min-width: 700px) {
  .follow__inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .follow__inner > div { max-width: 46ch; }
}

/* Ajándékutalvány-doboz */
.gift {
  margin-top: 14px; padding: 16px 18px;
  border: 1px dashed var(--sand); border-radius: var(--r-md);
  background: rgba(223, 210, 192, .16);
  display: flex; gap: 13px; align-items: center; flex-wrap: wrap;
}
.gift svg { width: 26px; height: 26px; stroke: var(--gold-deep); fill: none; stroke-width: 1.2; flex: none; }
.gift p { margin: 0; font-size: .87rem; flex: 1; min-width: 180px; }

/* ====================================================================
   SZEZONÁLIS KOLLEKCIÓ — időkorlát
==================================================================== */

.season-bar {
  background: var(--theme-deep); color: #fff;
  text-align: center; padding: 11px 16px;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
}
.season-bar b { font-weight: 400; color: var(--sand); }

.limited {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); background: rgba(190,159,107,.12);
  border: 1px solid rgba(190,159,107,.35);
  padding: 7px 13px; border-radius: 2px;
}
.limited svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.card--soon { opacity: .72; }
.card--soon .card__media img { filter: grayscale(.35); }
.badge--soon { background: var(--paper-deep); color: var(--muted); }
.badge--gone { background: #6f6f6f; color: #fff; border-color: transparent; }

/* ====================================================================
   NEM ELÉRHETŐ TERMÉK (lezárult idény vagy még nem indult kollekció)
   A tartalom szándékosan az oldalon marad — a keresők így is indexelik,
   csak vásárolni nem lehet. Kosárba gomb helyett kapcsolatfelvétel.
==================================================================== */

.state {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 15px 16px; margin: 20px 0 8px;
  border: 1px solid var(--sand); border-radius: var(--r-md);
  background: rgba(223, 210, 192, .18);
}
.state svg { width: 20px; height: 20px; stroke: var(--gold-deep); fill: none; stroke-width: 1.4; flex: none; margin-top: 3px; }
.state__title {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 5px;
}
.state p { margin: 0; font-size: .88rem; }

.pill--off { color: var(--muted); border-color: var(--line); background: var(--paper-deep); }

/* ====================================================================
   INSPIRÁCIÓK — korábbi kollekciók és vásárlói felhasználás
==================================================================== */

.insp-tabs {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 30px;
}
.insp-tabs a {
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  padding: 11px 18px; border: 1px solid var(--line); border-radius: 2px;
  background: var(--surface); color: var(--body);
}
.insp-tabs a[aria-current="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* Kőműves-rács a felhasználási fotókhoz (torta-dekoráció stb.) */
.gallery-masonry { columns: 2; column-gap: 12px; }
/* A <figure> alap margin-inline: 40px — enélkül összenyomná az oszlopokat. */
.gallery-masonry > * { break-inside: avoid; margin: 0 0 12px; border-radius: var(--r-md); overflow: hidden; position: relative; }
.gallery-masonry img { width: 100%; display: block; }
.gallery-masonry figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 22px 12px 10px;
  background: linear-gradient(180deg, transparent, rgba(47,66,87,.72));
  color: #fff; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase;
}
@media (min-width: 600px) { .gallery-masonry { columns: 3; column-gap: 16px; } }
@media (min-width: 900px) { .gallery-masonry { columns: 4; column-gap: 18px; } }

/* ====================================================================
   VÉLEMÉNYEK — vásárlói fotók és üzenetek
   Zsu még nem mondta meg, fotó vagy szöveg lesz-e; a rács mindkettőt
   kezeli (fotós kártya és fotó nélküli idézet is elfér benne).
==================================================================== */

.testi { columns: 1; column-gap: 16px; }
/* margin:0 kell — a <figure> alapból 40px oldalmargót kapna a böngészőtől. */
.testi > * { break-inside: avoid; margin: 0 0 16px; }
.testi__card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
}
.testi__card img { width: 100%; display: block; }
.testi__body { padding: 16px 17px 18px; }
.testi__body p {
  margin: 0 0 12px; font-family: var(--f-display); font-style: italic;
  font-size: 1.06rem; line-height: 1.5; color: var(--ink);
}
.testi__who {
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}

@media (min-width: 600px) { .testi { columns: 2; } }
@media (min-width: 900px) { .testi { columns: 3; } }

/* ====================================================================
   FŐOLDALI RÖVID VIDEÓ (néma, ismétlődő)
==================================================================== */

.clip { position: relative; border-radius: var(--r-md); overflow: hidden; background: var(--paper-deep); }
/* height:auto KELL — a <video height="..."> attribútum különben felülírja
   az aspect-ratio-t, és a klip kilóg a konténerből (képeknél ezt a globális
   img{height:auto} intézi el, videóra nincs ilyen alapszabály). */
.clip video { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.clip__label {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,252,248,.92); border: 1px solid var(--line);
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink); padding: 6px 11px; border-radius: 2px;
}

/* ====================================================================
   SZÖVEGES OLDALAK (GYIK, ÁSZF, adatkezelés)
   Keskeny hasáb, nyugodt sorköz — hosszú szöveg olvasásához.
==================================================================== */

.prose { max-width: 68ch; margin-inline: auto; }
.prose h2 {
  font-size: clamp(1.25rem, 5vw, 1.6rem);
  letter-spacing: .05em; text-transform: uppercase; font-weight: 300;
  margin: 38px 0 12px; padding-top: 20px; border-top: 1px solid var(--line);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 {
  font-family: var(--f-sans); font-size: 12px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase; color: var(--theme-deep);
  margin: 22px 0 8px;
}
.prose p, .prose li { font-size: .96rem; }
.prose ul, .prose ol { padding-left: 20px; display: grid; gap: 7px; margin: 12px 0; }
.prose a { color: var(--theme-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose__updated {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 26px;
}

/* Kitöltendő rész jelölése — a prototípusban látszik, mi hiányzik még.
   Élesítés előtt EGYIK sem maradhat az oldalon. */
.todo {
  border: 1px dashed var(--gold); border-radius: var(--r-md);
  background: rgba(190, 159, 107, .08);
  padding: 15px 17px; margin: 14px 0;
}
.todo__tag {
  display: inline-block; margin-bottom: 8px;
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--surface);
  border: 1px solid var(--sand); padding: 4px 10px; border-radius: 2px;
}
.todo p { margin: 0; font-size: .89rem; color: var(--body); }
.todo ul { margin: 8px 0 0; }
.todo li { font-size: .86rem; }

/* GYIK — az akkordeon-stílust újrahasznosítjuk, csak tágasabban */
.faq .acc { border-top: 0; }
.faq .acc__btn {
  font-family: var(--f-display); font-size: 1.08rem;
  letter-spacing: .02em; text-transform: none; padding: 19px 0;
  gap: 18px; text-align: left; line-height: 1.35;
}
.faq .acc__panel { padding-bottom: 22px; }
.faq .acc__panel p { margin: 0 0 10px; }
.faq .acc__panel p:last-child { margin-bottom: 0; }

/* ====================================================================
   HIBAOLDAL (404) és HAMAROSAN-OLDAL
==================================================================== */

.err { text-align: center; padding-block: 22px 10px; }
.err__num {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(5rem, 26vw, 10rem); line-height: .78;
  color: var(--sand); letter-spacing: .05em;
  user-select: none;
}
.err__title {
  font-size: clamp(1.7rem, 7.5vw, 2.6rem);
  letter-spacing: .05em; text-transform: uppercase; font-weight: 300;
  margin-top: 6px;
}
.err__text { max-width: 42ch; margin: 16px auto 0; font-size: .98rem; }

/* Hamarosan-oldal: teljes képernyős, középre zárt, fotó-háttérrel */
.soon {
  min-height: 100svh;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  padding: 40px var(--gut);
  text-align: center;
}
.soon__bg { position: absolute; inset: 0; z-index: 0; }
.soon__bg img { width: 100%; height: 100%; object-fit: cover; }
.soon__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,243,236,.94), rgba(247,243,236,.80) 55%, rgba(247,243,236,.92));
}
.soon__inner { position: relative; z-index: 1; max-width: 520px; }
.soon .logo__name { font-size: clamp(38px, 12vw, 62px); display: block; }
.soon .logo__sub {
  font-size: 9px; letter-spacing: .38em; margin: 6px 0 30px;
  color: var(--gold-deep); white-space: nowrap;
}
.soon__title {
  font-size: clamp(1.5rem, 6.4vw, 2.1rem);
  letter-spacing: .12em; text-transform: uppercase; font-weight: 300;
}
.soon__text { margin: 18px auto 26px; font-size: .97rem; max-width: 40ch; }
.soon__form { display: flex; flex-direction: column; gap: 10px; max-width: 380px; margin-inline: auto; }
.soon__form input {
  height: 50px; padding: 0 16px; border: 1px solid rgba(47,66,87,.22);
  background: rgba(255,255,255,.78); border-radius: 2px; font: inherit; color: var(--ink);
}
.soon__note { margin-top: 22px; font-size: .78rem; color: var(--muted); }
.soon__flags {
  margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}

@media (min-width: 600px) {
  .soon__form { flex-direction: row; }
  .soon__form .btn { flex: none; }
}

/* --- Scroll-animáció (finom) --------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.6,.2,1); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ====================================================================
   NAGYOBB KÉPERNYŐK
==================================================================== */

@media (min-width: 600px) {
  :root { --gut: 28px; }
  .grid--2 { gap: 20px; }
  .grid--collections { grid-template-columns: repeat(2, 1fr); }
  .paths { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  /* Tabletnél felfelé nincs swipe: sima rács, minden termék egyszerre látszik */
  .scroll-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
    overflow: visible; margin-inline: 0; padding-inline: 0;
  }
  .scroll-row > * { max-width: none; }
  .swipe-hint { display: none; }
  .hero__cta { flex-direction: row; width: auto; justify-content: center; }
  .newsletter form { flex-direction: row; }
  .newsletter .btn { flex: none; }
  .trust { grid-template-columns: repeat(4, 1fr); }
  .palette { grid-template-columns: repeat(4, 1fr); max-width: none; }
  .cutters { grid-template-columns: repeat(4, 1fr); }
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 900px) {
  :root { --header-h: 76px; --gut: 36px; }
  body { font-size: 16.5px; }
  .section { padding-block: 84px; }
  .section--tight { padding-block: 58px; }

  /* Hat menüpont van (Kollekciók, Termékek, Workshopok, Inspirációk,
     Vélemények, Rólunk) — szűkebb köz kell, hogy egy sorba férjenek. */
  .nav { display: flex; gap: 20px; }
  .nav a { font-size: 11px; letter-spacing: .14em; }
  .burger { display: none; }

  .hero__media img { height: 78vh; max-height: 760px; object-position: 60% 50%; }
  .hero__overlay {
    background: linear-gradient(100deg, rgba(247,243,236,.93) 0%, rgba(247,243,236,.72) 34%, rgba(247,243,236,.05) 62%);
  }
  .hero__body {
    justify-content: center; text-align: left;
    padding-inline: max(var(--gut), calc((100vw - var(--wrap)) / 2 + var(--gut)));
  }
  .hero__body > * { margin-inline: 0; }
  .hero__title { font-size: clamp(3rem, 4.6vw, 4.3rem); }
  .hero__text { margin-inline: 0; font-size: 1.02rem; }
  .hero__cta { justify-content: flex-start; }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--collections { grid-template-columns: repeat(3, 1fr); gap: 26px; }

  .workshop__grid { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 48px; }
  .story__grid { grid-template-columns: .9fr 1.1fr; align-items: center; gap: 52px; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 44px; }

  .pdp { grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: start; }
  .pdp__col--info { position: sticky; top: calc(var(--header-h) + 26px); }
  .sticky-buy { display: none; }

  .steps { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .chero { padding-block: 74px 62px; }
}

@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
