/* ============================================================
   FeehaWears — soft & feminine redesign
   Design system + three switchable "moods"
   ============================================================ */

/* ---------- Tokens (default = Blush) ---------- */
:root {
  --bg:        #FBF5F1;
  --surface:   #FFFFFF;
  --surface-2: #F5E9E3;
  --ink:       #3A2D33;
  --ink-soft:  #6E5E66;
  --ink-faint: #A9989F;
  --accent:    #9C6E84;
  --accent-ink:#7E5067;
  --line:      #ECDCD5;
  --gold:      #C2A06B;

  --radius:    18px;
  --radius-sm: 10px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans:    "Jost", system-ui, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 5vw, 64px);

  --shadow-soft: 0 18px 50px -28px rgba(58,45,51,.45);
  --shadow-card: 0 22px 60px -34px rgba(58,45,51,.40);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Mood: Mauve Luxe */
:root[data-mood="mauve"] {
  --bg:        #F6EEE9;
  --surface:   #FFFDFB;
  --surface-2: #EBDCD2;
  --ink:       #2E2329;
  --ink-soft:  #6B585E;
  --ink-faint: #A8959B;
  --accent:    #7C5266;
  --accent-ink:#5E3B4D;
  --line:      #E4D3C8;
  --gold:      #C2A06B;
  --radius:    12px;
  --radius-sm: 8px;
}

/* Mood: Lilac Modern */
:root[data-mood="lilac"] {
  --bg:        #F4F2F7;
  --surface:   #FFFFFF;
  --surface-2: #E9E3F0;
  --ink:       #2A2630;
  --ink-soft:  #615C6B;
  --ink-faint: #9D97A8;
  --accent:    #7E6E9C;
  --accent-ink:#5C4C82;
  --line:      #E3DCEC;
  --gold:      #A99BC4;
  --radius:    6px;
  --radius-sm: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-weight: 400; }

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

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: .34em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent-ink);
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.01em;
}
.serif { font-family: var(--font-display); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-sans);
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.btn--solid { background: var(--ink); color: var(--bg); }
.btn--solid:hover { background: var(--accent-ink); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: var(--accent-ink); transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.btn--ghost { border: 1px solid var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.btn .arr { transition: transform .4s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.link-underline {
  position: relative; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  color: var(--accent-ink); display: inline-flex; gap: .5em; align-items: center;
}
.link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%;
  background: var(--accent-ink); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); }
.link-underline .arr { transition: transform .4s var(--ease); }
.link-underline:hover .arr { transform: translateX(4px); }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce {
  background: var(--ink);
  color: var(--bg);
  text-align: center;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 400;
  height: 40px; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.announce .msg { transition: opacity .5s, transform .5s; }
.announce .msg.out { opacity: 0; transform: translateY(-8px); }

/* ============================================================
   Header
   ============================================================ */
.header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(58,45,51,.5);
  background: color-mix(in srgb, var(--bg) 94%, transparent);
}
.header__row {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  height: 84px; gap: 20px;
}
.header__nav { display: flex; gap: 30px; align-items: center; }
.header__nav.right { justify-content: flex-end; }
.navlink {
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-weight: 400;
  color: var(--ink); position: relative; padding: 6px 0; white-space: nowrap;
}
.navlink::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--accent-ink); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.navlink:hover::after { transform: scaleX(1); }
.brand { display: flex; align-items: center; justify-content: center; gap: 11px; }
.brand img { height: 44px; width: auto; object-fit: contain; }
.brand .brand__name {
  font-family: "Italiana", "Cormorant Garamond", serif; font-size: 25px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; line-height: 1; color: var(--ink);
}
.icon-btn {
  width: 42px; height: 42px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .3s, color .3s; position: relative;
}
.icon-btn:hover { background: var(--surface-2); color: var(--accent-ink); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: 4px; right: 4px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--accent); color: #fff; border-radius: 999px; font-size: 10px; font-weight: 600;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}
.burger { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: clamp(36px, 6vw, 80px) 0 clamp(48px, 7vw, 96px); }
.hero__grid {
  display: grid; grid-template-columns: 1.04fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__copy .eyebrow { display: inline-block; margin-bottom: 26px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 6vw, 88px); line-height: .98; letter-spacing: -.015em;
  margin-bottom: 26px;
}
.hero h1 em { font-style: italic; color: var(--accent-ink); }
.hero__sub { font-size: 17px; color: var(--ink-soft); max-width: 460px; margin-bottom: 38px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero__media { position: relative; }
.hero__media .frame {
  position: relative; aspect-ratio: 4/5; border-radius: calc(var(--radius) * 3);
  overflow: hidden; background: var(--surface-2); box-shadow: var(--shadow-card);
}
[data-mood="lilac"] .hero__media .frame { border-radius: var(--radius); }
.hero__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__blob {
  position: absolute; inset: auto -6% -8% -10%; z-index: -1;
  width: 70%; aspect-ratio: 1; background: var(--surface-2); border-radius: 50%;
  filter: blur(2px); opacity: .8;
}
.hero__chip {
  position: absolute; left: -28px; bottom: 42px;
  background: var(--surface); border-radius: 999px; padding: 12px 20px 12px 14px;
  display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-soft);
}
.hero__chip .dot { width: 38px; height: 38px; border-radius: 999px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; color: var(--accent-ink); }
.hero__chip .dot svg { width: 18px; height: 18px; }
.hero__chip b { font-family: var(--font-display); font-size: 18px; font-weight: 600; display: block; line-height: 1; }
.hero__chip span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }

/* Centered hero variant */
:root[data-hero="center"] .hero__grid { grid-template-columns: 1fr; text-align: center; }
:root[data-hero="center"] .hero__copy { max-width: 760px; margin-inline: auto; }
:root[data-hero="center"] .hero__sub { margin-inline: auto; }
:root[data-hero="center"] .hero__cta { justify-content: center; }
:root[data-hero="center"] .hero__media { margin-top: 48px; }
:root[data-hero="center"] .hero__media .frame { aspect-ratio: 16/8; }
:root[data-hero="center"] .hero__chip { left: 24px; }

/* ============================================================
   Section heading
   ============================================================ */
.sec { padding: clamp(56px, 8vw, 110px) 0; }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 56px); }
.sec-head__l .eyebrow { display: block; margin-bottom: 14px; }
.sec-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4.4vw, 56px); line-height: 1; letter-spacing: -.01em; }
.sec-head h2 em { font-style: italic; color: var(--accent-ink); }
.center-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px,4vw,60px); }
.center-head .eyebrow { display: block; margin-bottom: 16px; }
.center-head h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -.01em; }
.center-head p { color: var(--ink-soft); margin-top: 18px; font-size: 16px; }

/* ============================================================
   Categories
   ============================================================ */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 26px); }
.cat {
  position: relative; display: block; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2);
}
.cat__img { aspect-ratio: 3/4; overflow: hidden; }
.cat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat:hover .cat__img img { transform: scale(1.06); }
.cat__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 22px; background: linear-gradient(to top, rgba(40,30,36,.6) 4%, rgba(40,30,36,.12) 36%, transparent 62%);
  color: #fff;
}
.cat__overlay h3 { font-family: var(--font-display); font-size: clamp(20px, 1.5vw, 26px); font-weight: 500; line-height: 1.05; }
.cat__overlay .go { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; margin-top: 8px;
  display: inline-flex; gap: 8px; align-items: center; opacity: .9; transition: gap .3s var(--ease); }
.cat:hover .cat__overlay .go { gap: 14px; }

/* ============================================================
   Products
   ============================================================ */
.products { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 32px) clamp(14px,1.6vw,26px); }
.card { position: relative; }
.card__media {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden;
  background: var(--surface-2); margin-bottom: 16px;
}
:root[data-cards="framed"] .card__media { border: 1px solid var(--line); background: var(--surface); }
:root[data-cards="framed"] .card__media img { padding: 0; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent); color: #fff; font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px; font-weight: 500;
}
.wish {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 38px; height: 38px; border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent); color: var(--ink);
  display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(-6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background .3s, color .3s;
}
.wish svg { width: 18px; height: 18px; }
.wish:hover { background: var(--accent); color: #fff; }
.card:hover .wish { opacity: 1; transform: translateY(0); }
.quick {
  position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2;
  background: var(--surface); color: var(--ink); border-radius: 999px; padding: 13px;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; text-align: center;
  opacity: 0; transform: translateY(12px); transition: opacity .45s var(--ease), transform .45s var(--ease), background .3s, color .3s;
  box-shadow: var(--shadow-soft);
}
.quick:hover { background: var(--ink); color: var(--bg); }
.card:hover .quick { opacity: 1; transform: translateY(0); }
.card__title { font-family: var(--font-display); font-size: 21px; font-weight: 500; line-height: 1.1; }
.card__title a:hover { color: var(--accent-ink); }
.card__price { margin-top: 6px; font-size: 15px; color: var(--ink-soft); display: flex; gap: 10px; align-items: baseline; }
.card__price .now { color: var(--ink); font-weight: 400; }
.card__price .was { text-decoration: line-through; color: var(--ink-faint); font-size: 13px; }
.card__price .save { color: var(--accent-ink); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.products-foot { text-align: center; margin-top: clamp(40px, 5vw, 64px); }

/* ============================================================
   Value props — slim service bar
   ============================================================ */
.values { background: var(--surface); border-block: 1px solid var(--line); }
.values__grid { display: flex; }
.value { flex: 1; display: flex; align-items: center; justify-content: center; gap: 13px;
  padding: 22px 18px; border-right: 1px solid var(--line); text-align: left; }
.value:last-child { border-right: none; }
.value .vi { flex: 0 0 auto; width: auto; height: auto; border: none; background: none; color: var(--accent-ink); }
.value .vi svg { width: 23px; height: 23px; }
.value h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: .03em; color: var(--ink); line-height: 1.3; }
.value p { display: none; }

/* ============================================================
   Editorial banner
   ============================================================ */
.editorial { background: var(--surface-2); }
.editorial__grid { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; min-height: 600px; }
.editorial__media { overflow: hidden; position: relative; }
.editorial__media img { width: 100%; height: 100%; object-fit: cover; }
.editorial__badge { position: absolute; right: 26px; bottom: 26px; background: var(--bg);
  border-radius: var(--radius); padding: 16px 20px; display: flex; gap: 16px; align-items: center;
  box-shadow: var(--shadow-soft); }
.editorial__badge .num { font-family: var(--font-display); font-size: 19px; font-weight: 600; line-height: 1.05; color: var(--accent-ink); }
.editorial__badge .lbl { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
  line-height: 1.35; border-left: 1px solid var(--line); padding-left: 16px; }
.editorial__copy { padding: clamp(40px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; max-width: 620px; }
.editorial__copy .eyebrow { margin-bottom: 22px; }
.editorial__copy h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4vw, 56px); line-height: 1.04; letter-spacing: -.01em; margin-bottom: 24px; }
.editorial__copy h2 em { font-style: italic; color: var(--accent-ink); }
.editorial__copy p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 18px; }
.editorial__copy .signature { font-family: var(--font-display); font-style: italic; font-size: 24px;
  font-weight: 500; color: var(--accent-ink); margin: 10px 0 24px; }
.editorial__copy .link-underline { align-self: flex-start; }
.editorial__copy .btn { margin-top: 16px; align-self: flex-start; }

/* ============================================================
   Footer join (newsletter) + wordmark + search overlay
   ============================================================ */
.footer__join { border-bottom: 1px solid color-mix(in srgb, var(--bg) 14%, transparent); text-align: center;
  padding-block: clamp(44px, 5vw, 64px); }
.footer__join .eyebrow { color: var(--gold); display: inline-block; margin-bottom: 14px; }
.footer__join h2 { font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.04; color: #fff; margin-bottom: 14px; }
.footer__join h2 em { font-style: italic; color: var(--gold); }
.footer__join p { color: color-mix(in srgb, var(--bg) 66%, transparent); max-width: 460px; margin: 0 auto 30px; font-size: 15.5px; }
.footer__form { display: flex; align-items: center; max-width: 440px; margin-inline: auto;
  border-bottom: 1px solid color-mix(in srgb, var(--bg) 32%, transparent); transition: border-color .35s var(--ease); }
.footer__form:focus-within { border-bottom-color: var(--gold); }
.footer__form input { flex: 1; background: none; border: none; outline: none; color: #fff;
  font-family: var(--font-sans); font-size: 16px; padding: 13px 4px; }
.footer__form input::placeholder { color: color-mix(in srgb, var(--bg) 48%, transparent); }
.footer__form button { display: flex; align-items: center; gap: 10px; color: #fff;
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; padding: 13px 4px 13px 18px; white-space: nowrap; }
.footer__form button .arr { transition: transform .4s var(--ease); }
.footer__form button:hover .arr { transform: translateX(5px); }
.footer__fineprint { margin-top: 16px; font-size: 12px; letter-spacing: .04em; color: color-mix(in srgb, var(--bg) 46%, transparent); }

.footer__word { width: 100%; overflow: hidden; text-align: center; line-height: .82; padding-top: 8px; }
.footer__word span { display: block; white-space: nowrap; font-family: "Italiana", serif;
  text-transform: uppercase; letter-spacing: .05em; font-size: clamp(56px, 15vw, 210px);
  color: color-mix(in srgb, var(--bg) 12%, transparent); }

.search-ov { position: fixed; inset: 0; z-index: 120; background: var(--bg);
  transform: translateY(-100%); transition: transform .5s var(--ease); }
.search-ov.open { transform: translateY(0); }
.search-ov__bar { display: flex; align-items: center; gap: 16px; padding: 22px var(--gutter) 6px; }
.search-ov__field { flex: 1; display: flex; align-items: center; gap: 13px;
  border-bottom: 1px solid var(--ink); padding: 10px 2px; }
.search-ov__field svg { width: 21px; height: 21px; color: var(--accent-ink); flex: 0 0 auto; }
.search-ov__field input { flex: 1; border: none; background: none; outline: none;
  font-family: var(--font-display); font-size: clamp(22px, 4vw, 30px); color: var(--ink); min-width: 0; }
.search-ov__field input::placeholder { color: var(--ink-faint); }
.search-ov__close { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); padding: 8px; }
.search-ov__close:hover { color: var(--accent-ink); }
.search-ov__body { padding: 26px var(--gutter); }
.search-ov__body .eyebrow { display: block; margin-bottom: 18px; }
.search-ov__tags { display: flex; flex-wrap: wrap; gap: 10px; }
.search-ov__tags a { padding: 11px 19px; border: 1px solid var(--line); border-radius: 999px;
  font-size: 14px; color: var(--ink-soft); background: var(--surface); transition: all .25s var(--ease); }
.search-ov__tags a:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--ink); color: color-mix(in srgb, var(--bg) 86%, transparent); position: relative; overflow: hidden; }
.footer a { color: color-mix(in srgb, var(--bg) 78%, transparent); transition: color .3s; }
.footer a:hover { color: #fff; }
.footer__top { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: clamp(28px,4vw,56px); padding-block: clamp(44px,5vw,64px); }
.footer__brand .logo-chip { width: 76px; height: 76px; border-radius: 20px;
  background: color-mix(in srgb, var(--bg) 88%, #ffffff); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; }
.footer__brand .logo-chip img { height: 54px; width: auto; margin: 0; }
.footer__brand p { font-size: 14.5px; line-height: 1.7; max-width: 320px; color: color-mix(in srgb, var(--bg) 70%, transparent); }
.footer__brand .socials { display: flex; gap: 12px; margin-top: 26px; }
.footer__brand .socials a { width: 40px; height: 40px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--bg) 26%, transparent);
  display: flex; align-items: center; justify-content: center; }
.footer__brand .socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer__brand .socials svg { width: 18px; height: 18px; }
.footer__col h5 { font-size: 12px; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; color: #fff; margin-bottom: 22px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer__col ul a { font-size: 14.5px; }
.footer__bot { border-top: 1px solid color-mix(in srgb, var(--bg) 16%, transparent);
  padding-block: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: 12.5px; letter-spacing: .06em; color: color-mix(in srgb, var(--bg) 60%, transparent); }
.footer__bot .pills { display: flex; gap: 8px; flex-wrap: wrap; }
.footer__bot .pills span { border: 1px solid color-mix(in srgb,var(--bg) 22%,transparent); border-radius: 6px; padding: 4px 10px; font-size: 11px; letter-spacing: .1em; white-space: nowrap; }

/* ============================================================
   Cart drawer
   ============================================================ */
.overlay { position: fixed; inset: 0; background: rgba(40,30,36,.4); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; z-index: 90; }
.overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--bg); z-index: 100;
  transform: translateX(100%); transition: transform .5s var(--ease); display: flex; flex-direction: column; box-shadow: -30px 0 60px -30px rgba(40,30,36,.5); }
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--font-display); font-size: 24px; font-weight: 600; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 26px; }
.drawer__empty { text-align: center; padding-top: 80px; color: var(--ink-soft); }
.drawer__empty svg { width: 52px; height: 52px; color: var(--ink-faint); margin: 0 auto 18px; }
.citem { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.citem__img { width: 70px; height: 88px; border-radius: var(--radius-sm); overflow: hidden; background: var(--surface-2); flex: 0 0 auto; }
.citem__img img { width: 100%; height: 100%; object-fit: cover; }
.citem__info { flex: 1; }
.citem__info h4 { font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.citem__info .meta { font-size: 12px; color: var(--ink-faint); margin-top: 2px; }
.citem__info .price { font-size: 14px; margin-top: 8px; color: var(--ink); }
.citem__rm { align-self: flex-start; color: var(--ink-faint); font-size: 18px; line-height: 1; padding: 4px; }
.citem__rm:hover { color: var(--accent-ink); }
.drawer__foot { padding: 22px 26px 28px; border-top: 1px solid var(--line); }
.drawer__foot .row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.drawer__foot .row .t { font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.drawer__foot .ship { font-size: 12px; color: var(--ink-soft); margin-bottom: 18px; }
.drawer__foot .btn { width: 100%; justify-content: center; }

/* Toast */
.toast { position: fixed; left: 50%; bottom: 32px; transform: translate(-50%, 30px); background: var(--ink); color: var(--bg);
  padding: 14px 26px; border-radius: 999px; font-size: 13px; letter-spacing: .08em; z-index: 110;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  display: flex; gap: 10px; align-items: center; box-shadow: var(--shadow-soft); }
.toast svg { width: 18px; height: 18px; color: var(--gold); }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ============================================================
   Mobile menu
   ============================================================ */
.mobile-menu { position: fixed; inset: 0; background: var(--bg); z-index: 95; transform: translateX(-100%);
  transition: transform .5s var(--ease); display: flex; flex-direction: column; padding: 26px var(--gutter); overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a { font-family: var(--font-display); font-size: 28px; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--line);
  display: block; white-space: normal; text-transform: none; letter-spacing: normal; line-height: 1.2; word-break: normal; overflow-wrap: anywhere; }

/* ============================================================
   Reveal animation
   ============================================================ */
/* Base state is VISIBLE. The hidden start is only applied once JS confirms it
   can drive the reveal (html.js-reveal), so if scripts/IO fail content still shows. */
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }
.js-reveal .reveal { opacity: 0; transform: translateY(26px); }
.js-reveal .reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .header__nav.left { display: none; }
  .burger { display: inline-flex; }
  .header__row { grid-template-columns: auto 1fr auto; }
  .brand { justify-content: flex-start; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { margin-top: 12px; max-width: 460px; }
  .editorial__grid { grid-template-columns: 1fr; }
  .editorial__media { min-height: 360px; }
  .values__grid { grid-template-columns: 1fr 1fr; }
  .value:nth-child(2) { border-right: none; }
  .value { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .sec-head { flex-direction: column; align-items: flex-start; }
  .cats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .products { gap: 22px 12px; }
  .values__grid { grid-template-columns: 1fr; }
  .value { border-right: none; }
  .news__form { flex-direction: column; }
  .news__form .btn { justify-content: center; }
  .footer__top { grid-template-columns: 1fr; }
}

/* ============================================================
   WordPress-specific additions (blog, pages, search)
   ============================================================ */
.page-main { padding: clamp(40px, 6vw, 80px) 0; }
.page-main .page-header { margin-bottom: clamp(24px, 3vw, 40px); }
.page-main .page-header h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.02; }
.page-content { font-size: 16.5px; color: var(--ink-soft); line-height: 1.8; max-width: 760px; }
.page-content h2, .page-content h3 { font-family: var(--font-display); color: var(--ink); margin: 1.4em 0 .5em; }
.page-content a { color: var(--accent-ink); text-decoration: underline; }
.page-content img { border-radius: var(--radius-sm); }

.post-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 52px); }
.post-card { padding-bottom: 8px; }
.post-card .card__title { font-size: 26px; margin-bottom: 8px; }
.post-card__meta { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; }
.post-card__excerpt { color: var(--ink-soft); margin-bottom: 16px; }
.pagination { margin-top: clamp(32px, 4vw, 56px); }
.pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.pagination a, .pagination span { border: 1px solid var(--line); border-radius: 999px; min-width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center; }
.pagination .current { background: var(--ink); color: var(--bg); border-color: var(--ink); }

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

/* Category card without an image → tasteful gradient instead of a placeholder icon */
.cat--noimg .cat__img {
  background: linear-gradient(155deg,
    color-mix(in srgb, var(--accent) 26%, var(--surface)) 0%,
    var(--surface-2) 60%,
    color-mix(in srgb, var(--gold) 22%, var(--surface-2)) 100%);
}
.cat--noimg .cat__overlay {
  background: linear-gradient(to top, rgba(40,30,36,.42) 4%, rgba(40,30,36,.08) 40%, transparent 64%);
}
