/* ============================================================
   ZELVELORA — design system
   Palette derived from the official golden logo on ivory.
   ============================================================ */
:root {
  --bg: #FBF8F1;
  --bg-soft: #F4EEE2;
  --surface: #FFFFFF;
  --ink: #221D15;
  --ink-soft: #4C443A;
  --muted: #8B8073;
  --line: #E7DDC9;
  --line-soft: #F0E9DA;
  --gold: #B08A33;
  --gold-deep: #8A6218;
  --gold-soft: #D9BC8C;
  --gold-pale: #F5EDD9;
  --blush: #F3E4DC;
  --error: #A63A2B;
  --success: #3E6B4F;
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(34, 29, 21, .07);
  --shadow-md: 0 6px 24px rgba(34, 29, 21, .10);
  --shadow-lg: 0 18px 50px rgba(34, 29, 21, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --r: 2px;
}

/* ---------- 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(--sans); font-weight: 300; font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
input, select, textarea { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
::selection { background: var(--gold-soft); color: var(--ink); }

/* the hidden attribute must always win over any display rule (e.g. .modal{display:flex}) */
[hidden] { display: none !important; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 18px; }
.skip-link:focus { left: 8px; }
.container { width: min(1220px, 92vw); margin: 0 auto; }
.container.narrow { width: min(780px, 92vw); }
.muted { color: var(--muted); }
.req { color: var(--error); }
.nowrap { white-space: nowrap; }
.center { text-align: center; }

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

/* ---------- typography ---------- */
h1, h2, h3, .serif { font-family: var(--serif); font-weight: 600; letter-spacing: .01em; }
.page-title { font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.12; margin-bottom: .5rem; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.1rem); line-height: 1.15; }
.section-title.sm { font-size: 1.35rem; }
.lede { font-size: 1.15rem; color: var(--ink-soft); }
.eyebrow { font-size: .70rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.eyebrow.gold { color: var(--gold-deep); }
.section { padding: clamp(2.6rem, 6vw, 4.6rem) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; margin-bottom: 1.8rem; }
.section-head .eyebrow { margin-bottom: .5rem; }

/* ---------- links & buttons ---------- */
.text-link { font-size: .80rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--gold-deep); border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; transition: color .18s var(--ease), border-color .18s var(--ease); }
.text-link:hover { color: var(--ink); border-color: var(--ink); }
.text-btn { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; letter-spacing: .05em; color: var(--ink-soft); padding: 4px 0; border-bottom: 1px solid transparent; transition: color .18s, border-color .18s; }
.text-btn:hover { color: var(--gold-deep); border-color: var(--gold-soft); }
.text-btn.danger:hover { color: var(--error); border-color: var(--error); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; font-size: .78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding: 1em 2.1em; border: 1px solid transparent; border-radius: var(--r); transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease), box-shadow .2s var(--ease); cursor: pointer; text-align: center; }
.btn:active { transform: translateY(1px); }
.btn[disabled] { opacity: .45; cursor: not-allowed; pointer-events: none; }
.btn-primary { background: var(--ink); color: #FDFBF6; }
.btn-primary:hover { background: var(--gold-deep); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: #FFFDF7; }
.btn-gold:hover { background: var(--gold-deep); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: #FDFBF6; }
.btn-outline.danger { border-color: var(--error); color: var(--error); }
.btn-outline.danger:hover { background: var(--error); color: #fff; }
.btn-ghost { color: var(--ink-soft); }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { padding: 1.15em 2.4em; font-size: .82rem; }
.btn-sm, .btn.sm { padding: .6em 1.2em; font-size: .72rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: .8rem; flex-wrap: wrap; align-items: center; }
.btn-row.center { justify-content: center; }

/* ---------- forms ---------- */
.field { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.05rem; }
.field:last-child { margin-bottom: 0; }
.field label { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; color: var(--ink-soft); }
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="url"], input[type="number"], input[type="search"], select, textarea {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: .78em .95em; font-size: .95rem; font-weight: 300; color: var(--ink); transition: border-color .18s, box-shadow .18s; width: 100%;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176, 138, 51, .14); }
input:disabled { background: var(--line-soft); color: var(--muted); }
textarea { resize: vertical; }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 24 24' fill='none' stroke='%238B8073' stroke-width='2.4'%3E%3Cpath d='m5 9 7 7 7-7'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9em center; padding-right: 2.4em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.1rem; }
.form-row.three { grid-template-columns: repeat(3, 1fr); }
.form-note { font-size: .8rem; color: var(--muted); margin-top: .55rem; }
.form-error { color: var(--error); font-size: .85rem; margin: .4rem 0; min-height: 1em; }
.form-ok { color: var(--success); font-size: .85rem; margin: .4rem 0; }
.field-error { color: var(--error); font-size: .78rem; min-height: 1em; margin: 0; }
.check { display: inline-flex; gap: .55rem; align-items: center; font-size: .92rem; cursor: pointer; margin: .35rem .8rem .35rem 0; text-transform: none; letter-spacing: 0; }
.check input { width: 16px; height: 16px; accent-color: var(--gold-deep); }
.check-row { display: flex; flex-wrap: wrap; padding-top: .35em; }

/* ---------- announcements / header ---------- */
.announce { background: var(--ink); color: #EDE4D2; }
.announce p { text-align: center; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; padding: .55em 1em; }
.announce .dot { color: var(--gold-soft); padding: 0 .4em; }

.site-header { position: sticky; top: 0; z-index: 60; background: rgba(251, 248, 241, .96); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.header-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; width: min(1320px, 96vw); margin: 0 auto; min-height: 70px; gap: 1rem; }
.header-nav > ul { display: flex; gap: 1.6rem; align-items: center; }
.nav-link { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 400; color: var(--ink-soft); display: inline-flex; align-items: center; gap: .3rem; padding: .9em 0; transition: color .18s; }
.nav-link:hover, .nav-link[aria-current] { color: var(--gold-deep); }
.sale-link { color: var(--gold-deep); }
.chev { transition: transform .2s var(--ease); }
.has-drop:hover .chev { transform: rotate(180deg); }
.brand { display: flex; justify-content: center; align-items: center; }
.brand img { height: 52px; width: auto; }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: .2rem; }
.icon-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: var(--ink-soft); border-radius: 50%; transition: color .18s, background .18s; }
.icon-btn:hover { color: var(--ink); background: var(--line-soft); }
.nav-toggle { display: none; }
.count { position: absolute; top: 3px; right: 1px; min-width: 16px; height: 16px; padding: 0 4px; background: var(--gold); color: #fff; font-size: .62rem; font-weight: 600; display: flex; align-items: center; justify-content: center; border-radius: 9px; }

/* dropdown */
.has-drop { position: relative; }
.drop { position: absolute; top: 100%; left: -1.4rem; background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 1.6rem 1.8rem; min-width: 560px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s; z-index: 50; }
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-grid { display: grid; grid-template-columns: 1fr 1fr 230px; gap: 2.2rem; }
.drop::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.drop-title { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: .8rem; font-weight: 500; }
.drop ul li { margin-bottom: .45rem; }
.drop ul a { font-size: .92rem; color: var(--ink-soft); transition: color .15s; }
.drop ul a:hover { color: var(--gold-deep); }
.drop-sub { font-size: .82rem; color: var(--muted); margin-bottom: .6rem; }
.drop-feature img { width: 100%; aspect-ratio: 1; object-fit: contain; background: #fff; margin-bottom: .7rem; }

/* mobile nav */
.mobile-nav { position: fixed; inset: 0 auto 0 0; width: min(340px, 88vw); background: var(--bg); z-index: 120; transform: translateX(-102%); transition: transform .32s var(--ease); box-shadow: var(--shadow-lg); display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 1.3rem; border-bottom: 1px solid var(--line); }
.mobile-nav-head img { height: 40px; width: auto; }
.mobile-nav-list { flex: 1; overflow-y: auto; padding: 1rem 0; }
.mobile-nav-list a { display: block; padding: .85em 1.4rem; font-size: 1.05rem; font-family: var(--serif); letter-spacing: .02em; border-bottom: 1px solid var(--line-soft); transition: background .15s, color .15s; }
.mobile-nav-list a:hover { background: var(--gold-pale); color: var(--gold-deep); }
.mobile-nav-foot { padding: 1.2rem 1.3rem; border-top: 1px solid var(--line); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(34, 29, 21, .45); z-index: 110; opacity: 0; visibility: hidden; transition: opacity .3s; }
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* search overlay */
.search-overlay { position: fixed; inset: 0; z-index: 130; background: rgba(34, 29, 21, .4); display: flex; justify-content: center; align-items: flex-start; padding: min(12vh, 110px) 1rem 1rem; opacity: 0; visibility: hidden; transition: opacity .25s var(--ease); }
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-panel { width: min(640px, 100%); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: .6rem; transform: translateY(-12px); transition: transform .3s var(--ease); }
.search-overlay.is-open .search-panel { transform: translateY(0); }
.search-form { display: flex; align-items: center; gap: .7rem; padding: .4rem .7rem; border-bottom: 1px solid var(--line-soft); }
.search-form input { border: 0; background: none; padding: .6em 0; font-size: 1.05rem; flex: 1; }
.search-form input:focus { box-shadow: none; }
.search-suggest { max-height: 46vh; overflow-y: auto; padding: .4rem 0; }
.sug-item { display: flex; align-items: center; gap: .9rem; padding: .6rem .9rem; transition: background .15s; }
.sug-item:hover, .sug-item:focus-visible { background: var(--gold-pale); }
.sug-item img { width: 50px; height: 50px; object-fit: contain; background: #fff; border-radius: var(--r); }
.sug-item .sug-name { font-size: .95rem; }
.sug-item .sug-price { font-size: .82rem; color: var(--gold-deep); margin-left: auto; }
.sug-empty { padding: 1.2rem 1rem; font-size: .9rem; color: var(--muted); }

/* ---------- hero (editorial split with real product) ---------- */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero::before { content: ""; position: absolute; right: -12%; top: -25%; width: 58%; height: 150%; background: radial-gradient(closest-side, rgba(217, 188, 140, .20), transparent 70%); pointer-events: none; }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(2rem, 5vw, 4.6rem); align-items: center; min-height: min(82vh, 700px); padding: clamp(2.6rem, 6vw, 4.6rem) 0; }
.hero-copy { position: relative; z-index: 2; max-width: 560px; }
.hero h1 { font-size: clamp(2.7rem, 6vw, 4.4rem); line-height: 1.05; font-weight: 600; margin: .9rem 0 1.1rem; }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero-sub { font-size: 1.08rem; color: var(--ink-soft); max-width: 470px; margin-bottom: 1.9rem; }
.hero-cta { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-note { font-size: .8rem; color: var(--muted); margin-top: 1.4rem; letter-spacing: .05em; }
.hero-figure { position: relative; z-index: 2; margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: clamp(.7rem, 1.6vw, 1.3rem); box-shadow: var(--shadow-lg); }
.hero-figure img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; background: #fff; border-radius: 3px; }
.hero-figure figcaption { text-align: center; padding: .9rem .4rem .2rem; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hero-figure figcaption a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-soft); padding-bottom: 2px; transition: color .16s; }
.hero-figure figcaption a:hover { color: var(--ink); }

/* ---------- trust bar ---------- */
.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.15rem 0; }
.trust-grid > div { display: flex; gap: .8rem; align-items: center; justify-content: center; }
.trust-ic { font-size: 1.25rem; }
.trust-t { font-size: .82rem; font-weight: 500; letter-spacing: .06em; }
.trust-s { font-size: .76rem; color: var(--muted); }

/* ---------- categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.cat-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cat-card-media { background: #fff; border-bottom: 1px solid var(--line-soft); }
.cat-card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; display: block; transition: transform .6s var(--ease); }
.cat-card:hover .cat-card-media img { transform: scale(1.03); }
.cat-card-info { padding: 1.25rem 1.4rem 1.4rem; }
.cat-card-info h3 { font-size: 1.4rem; }
.cat-card-info p { font-size: .84rem; color: var(--muted); margin: .25rem 0 .7rem; }

/* ---------- product cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 1.2rem; }
.card-media { position: relative; overflow: hidden; border-radius: var(--r); background: #fff; border: 1px solid var(--line-soft); }
.card-media a { display: block; }
.card-img { width: 100%; aspect-ratio: 4 / 3; object-fit: contain; background: #fff; transition: transform .7s var(--ease), opacity .5s var(--ease); }
.card-img-alt { position: absolute; inset: 0; opacity: 0; }
.card:hover .card-img { transform: scale(1.045); }
.card:hover .card-img-alt { opacity: 1; transform: scale(1.045); }
.card.is-out .card-media a { position: relative; }
.card.is-out .card-img { filter: grayscale(.55) opacity(.75); }
.card-badges { position: absolute; top: .7rem; left: .7rem; display: flex; flex-direction: column; gap: .35rem; z-index: 2; }
.badge { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; padding: .35em .8em; border-radius: 1px; }
.badge-sale { background: var(--ink); color: #FDFBF6; }
.badge-new { background: var(--blush); color: var(--ink); }
.badge-best { background: var(--gold); color: #FFFDF7; }
.badge-out { background: #6E6659; color: #fff; }
.card-actions { position: absolute; top: .7rem; right: .7rem; display: flex; flex-direction: column; gap: .45rem; z-index: 2; opacity: 0; transform: translateX(6px); transition: opacity .25s var(--ease), transform .25s var(--ease); }
.card:hover .card-actions, .card:focus-within .card-actions { opacity: 1; transform: translateX(0); }
@media (hover: none) { .card-actions { opacity: 1; transform: none; } }
.card-act { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255, 255, 255, .93); color: var(--ink); border-radius: 50%; box-shadow: var(--shadow-sm); transition: background .18s, color .18s, transform .18s; }
.card-act:hover { background: var(--ink); color: #FDFBF6; }
.card-act.is-active { background: var(--ink); color: var(--gold-soft); }
.card-act[disabled] { opacity: .4; pointer-events: none; }
.card-info { padding: .85rem .15rem 0; }
.card-rating { display: flex; align-items: center; gap: .3rem; color: var(--gold); font-size: .78rem; margin-bottom: .25rem; }
.card-rating span { color: var(--muted); }
.card-title { font-size: 1.08rem; font-weight: 600; line-height: 1.3; }
.card-title a:hover { color: var(--gold-deep); }
.card-color { font-size: .78rem; color: var(--muted); margin-top: .15rem; }
.price { margin-top: .35rem; font-size: 1rem; }
.price-now { font-weight: 500; color: var(--ink); }
.price-was { color: var(--muted); font-size: .88rem; margin-left: .3rem; }
.price-off { color: var(--error); font-size: .78rem; font-weight: 500; margin-left: .3rem; letter-spacing: .04em; }

.star { display: inline-flex; color: var(--gold); }
.verified { color: var(--success); font-size: .78rem; font-weight: 500; }

/* ---------- editorial / story / quote bands ---------- */
.editorial-band { background: var(--bg-soft); padding: clamp(3rem, 7vw, 5.5rem) 0; margin: 1rem 0; }
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.editorial-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-md); }
.editorial-copy p { color: var(--ink-soft); margin: 1rem 0 1.6rem; max-width: 460px; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.story-copy .story-mark { margin-bottom: 1.2rem; }
.story-copy p { color: var(--ink-soft); margin: 1rem 0 1.4rem; max-width: 460px; }
.story-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: var(--r); }
.quote-band { background: var(--ink); color: #EFE7D6; text-align: center; padding: clamp(3.4rem, 8vw, 5.5rem) 0; }
.quote-band img { margin: 0 auto 1.4rem; opacity: .9; }
.quote-text { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3.4vw, 2.1rem); max-width: 720px; margin: 0 auto; line-height: 1.35; color: #F2E9D8; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.value-grid h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.value-grid p { color: var(--muted); font-size: .92rem; }

/* ---------- review cards (home) ---------- */
.review-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.review-card { background: var(--surface); border: 1px solid var(--line-soft); padding: 1.6rem; border-radius: var(--r); }
.review-card blockquote { font-family: var(--serif); font-size: 1.12rem; font-style: italic; margin: .7rem 0 .9rem; color: var(--ink-soft); }
.review-card figcaption { font-size: .82rem; color: var(--muted); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #CFC5B2; margin-top: 2rem; }
.footer-news { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.4rem 0; border-bottom: 1px solid rgba(239, 231, 214, .16); flex-wrap: wrap; }
.footer-news-title { font-size: 1.6rem; color: #F5EDD9; }
.footer-news p:not(.footer-news-title) { color: #B4A98F; font-size: .92rem; }
.news-form { display: flex; gap: .6rem; flex: 1; max-width: 460px; min-width: 280px; }
.news-form input { background: rgba(255, 253, 247, .06); border-color: rgba(239, 231, 214, .28); color: #F5EDD9; }
.news-form input::placeholder { color: #9C9078; }
.news-form input:focus { border-color: var(--gold-soft); box-shadow: 0 0 0 3px rgba(217, 188, 140, .16); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.4rem; padding: 3rem 0 2rem; }
.footer-brand p { font-size: .9rem; margin: 1rem 0; max-width: 300px; }
.footer-logo { height: 120px; width: auto; filter: brightness(1.02); }
.footer-title { font-size: .70rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; font-weight: 500; }
.footer-grid ul li { margin-bottom: .55rem; }
.footer-grid ul a { font-size: .9rem; color: #CFC5B2; transition: color .16s; }
.footer-grid ul a:hover { color: #F5EDD9; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(239, 231, 214, .25); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; transition: border-color .18s, color .18s, background .18s; }
.footer-social a:hover { border-color: var(--gold-soft); color: #F5EDD9; background: rgba(217, 188, 140, .1); }
.footer-base { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.3rem 0; border-top: 1px solid rgba(239, 231, 214, .16); font-size: .78rem; color: #9C9078; }

/* ---------- breadcrumb ---------- */
.breadcrumb { padding: 1.1rem 0 .2rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .35rem; font-size: .78rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.breadcrumb li + li::before { content: "/"; padding-right: .35rem; margin-right: .35rem; color: var(--line); }
.breadcrumb a:hover { color: var(--gold-deep); }
.breadcrumb [aria-current] { color: var(--ink-soft); }

/* ---------- shop layout ---------- */
.shop-head { padding: .6rem 0 1.6rem; }
.shop-desc { color: var(--muted); max-width: 560px; }
.shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 2.6rem; align-items: start; padding-bottom: 3rem; }
.filters-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.filters-head p { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }
.filter-title { font-size: .70rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 1.4rem 0 .55rem; }
.filter-list li { margin-bottom: .3rem; }
.filter-link { display: block; padding: .28em 0; font-size: .92rem; color: var(--ink-soft); transition: color .15s, padding-left .2s var(--ease); }
.filter-link:hover { color: var(--gold-deep); }
.filter-link.is-active { color: var(--gold-deep); font-weight: 500; padding-left: .6em; border-left: 2px solid var(--gold); }
.shop-toolbar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.1rem; }
.result-count { font-size: .85rem; color: var(--muted); margin-right: auto; }
.sort-form select { min-width: 200px; padding-top: .55em; padding-bottom: .55em; }
.filter-toggle { display: none; }
.active-filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
.chip { font-size: .76rem; letter-spacing: .05em; border: 1px solid var(--line); background: var(--surface); padding: .35em .85em; border-radius: 99px; color: var(--ink-soft); transition: border-color .16s, color .16s; }
.chip:hover { border-color: var(--error); color: var(--error); }

/* pagination */
.pagination { display: flex; justify-content: center; align-items: center; gap: .4rem; margin-top: 2.4rem; }
.page-link { min-width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line); font-size: .88rem; padding: 0 .6em; transition: all .16s; border-radius: var(--r); }
.page-link:hover { border-color: var(--ink); }
.page-link.is-current { background: var(--ink); color: #FDFBF6; border-color: var(--ink); }
.page-link.is-disabled { opacity: .35; pointer-events: none; }
.page-ellipsis { color: var(--muted); padding: 0 .2em; }

/* ---------- PDP ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(1.8rem, 4vw, 3.8rem); padding: 1rem 0 2rem; }
.pdp-stage { position: relative; overflow: hidden; border-radius: var(--r); background: #fff; border: 1px solid var(--line); cursor: zoom-in; }
.pdp-stage img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; transition: transform .25s var(--ease); }
.pdp-stage.is-zoomed img { transform: scale(1.9); }
.pdp-out-flag { position: absolute; top: 1rem; left: 1rem; background: #6E6659; color: #fff; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; padding: .45em 1em; }
.pdp-thumbs { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .8rem; }
.pdp-thumb { width: 78px; border: 1px solid var(--line); padding: 0; overflow: hidden; border-radius: var(--r); opacity: .8; transition: opacity .18s, border-color .18s; background: #fff; }
.pdp-thumb img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; }
.pdp-thumb:hover { opacity: 1; }
.pdp-thumb.is-active { border-color: var(--gold); opacity: 1; }
.pdp-title { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: .3rem 0 .5rem; }
.pdp-rating { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; color: var(--muted); margin-bottom: .8rem; }
.pdp-rating-none { border-bottom: 1px dashed var(--line); }
.pdp .price { font-size: 1.35rem; margin: .4rem 0 .2rem; }
.pdp .price-was { font-size: 1rem; }
.save-note { font-size: .82rem; color: var(--error); font-weight: 500; }
.pdp-desc { color: var(--ink-soft); margin: 1rem 0; }
.stock-note { font-size: .84rem; font-weight: 500; letter-spacing: .04em; margin: .6rem 0 1rem; }
.stock-note.is-in { color: var(--success); }
.stock-note.is-low { color: var(--error); }
.stock-note.is-out { color: var(--muted); }
.pdp-label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .5rem; }
.swatches { display: flex; flex-wrap: wrap; gap: .55rem; }
.swatch { font-size: .8rem; border: 1px solid var(--line); padding: .4em 1em; border-radius: 99px; background: var(--surface); color: var(--ink-soft); }
/* interactive colour selector */
.swatch-btn { display: inline-flex; align-items: center; gap: .5em; font-size: .82rem; letter-spacing: .02em; border: 1px solid var(--line); padding: .5em 1.05em .5em .7em; border-radius: 99px; background: var(--surface); color: var(--ink-soft); cursor: pointer; transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease), color .18s var(--ease); }
.swatch-btn:hover { border-color: var(--gold); color: var(--ink); }
.swatch-dot { width: 20px; height: 20px; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(0,0,0,.14); flex: 0 0 auto; }
.swatch-name { font-weight: 500; }
.swatch-count { font-size: .68rem; color: var(--muted); letter-spacing: .04em; }
.swatch-btn.is-active { border-color: var(--gold-deep); background: var(--gold-soft); color: var(--ink); box-shadow: 0 0 0 1px var(--gold-deep), 0 2px 10px rgba(166,121,38,.16); font-weight: 600; }
.swatch-btn.is-active .swatch-dot { box-shadow: inset 0 0 0 1px rgba(0,0,0,.14), 0 0 0 3px #fff, 0 0 0 4px var(--gold-deep); }
.swatch-btn:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.pdp-buy { display: flex; gap: .7rem; margin: 1.4rem 0 .7rem; align-items: stretch; }
.pdp-buy .btn { flex: 1; }
.qty { display: inline-flex; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.qty-btn { width: 44px; font-size: 1.1rem; color: var(--ink-soft); transition: background .15s; }
.qty-btn:hover { background: var(--line-soft); }
.qty-input { width: 52px; text-align: center; border: 0; background: none; padding: .4em 0; font-weight: 500; -moz-appearance: textfield; }
.qty-input::-webkit-outer-spin-button, .qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }
.pdp-secondary { display: flex; gap: 1.4rem; margin: .8rem 0 1.2rem; flex-wrap: wrap; }
.pdp-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; border-top: 1px solid var(--line-soft); padding-top: 1.1rem; margin-top: 1.2rem; }
.pdp-trust li { font-size: .82rem; color: var(--muted); }
.pdp-trust li::before { content: "✓"; color: var(--gold-deep); margin-right: .45em; }

.accordion { border-top: 1px solid var(--line); margin-top: 1.6rem; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; padding: 1em .2em; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; cursor: pointer; }
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after { content: "+"; font-size: 1.1rem; color: var(--gold-deep); transition: transform .2s var(--ease); }
.acc-item[open] summary::after { transform: rotate(45deg); }
.acc-body { padding: .2em .2em 1.3em; color: var(--ink-soft); font-size: .95rem; }
.spec-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.spec-table th { text-align: left; font-weight: 500; color: var(--muted); text-transform: uppercase; font-size: .72rem; letter-spacing: .12em; width: 40%; padding: .45em .8em .45em 0; vertical-align: top; }
.spec-table td { padding: .45em 0; }

/* reviews */
.reviews-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2.4rem; align-items: start; }
.review { border-bottom: 1px solid var(--line-soft); padding: 1.1rem 0; }
.review-stars { color: var(--gold); margin-bottom: .35rem; }
.review-text { font-size: .98rem; color: var(--ink-soft); }
.review-meta { font-size: .8rem; color: var(--muted); margin-top: .4rem; }
.review-form { background: var(--surface); border: 1px solid var(--line); padding: 1.5rem; border-radius: var(--r); }
.review-form h3 { font-size: 1.2rem; margin-bottom: .8rem; }
.rating-input { display: flex; gap: .25rem; margin-bottom: 1rem; }
.rate-star { color: var(--line); transition: color .12s, transform .12s; }
.rate-star:hover { transform: scale(1.15); }
.rate-star.is-on { color: var(--gold); }
.empty-inline { border: 1px dashed var(--line); padding: 1.4rem; text-align: center; color: var(--muted); border-radius: var(--r); margin: 1rem 0; }

/* ---------- panels / summary ---------- */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; margin-bottom: 1.2rem; }
.panel-title { font-size: 1.15rem; margin-bottom: 1rem; }
.panel-sub { font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin: 1.3rem 0 .5rem; }
.aside-title { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .8rem; }
.sum-row { display: flex; justify-content: space-between; gap: 1rem; padding: .45em 0; font-size: .95rem; }
.sum-discount { color: var(--success); }
.sum-total { border-top: 1px solid var(--line); margin-top: .5em; padding-top: .8em; font-size: 1.05rem; }
.sum-total strong { font-size: 1.2rem; }
.ship-note { font-size: .8rem; color: var(--gold-deep); background: var(--gold-pale); padding: .5em .8em; margin: .6rem 0; border-radius: var(--r); }
.secure-note { font-size: .78rem; color: var(--muted); text-align: center; margin-top: .8rem; }
.sum-box .btn { margin: .9rem 0 .2rem; }

/* ---------- cart page ---------- */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 2.2rem; align-items: start; padding-bottom: 3rem; }
.cart-row { display: grid; grid-template-columns: 96px 1fr auto; gap: 1.2rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line-soft); }
.cart-thumb img { width: 96px; height: 96px; object-fit: contain; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); }
.cart-info h3 { font-size: 1.15rem; }
.cart-info h3 a:hover { color: var(--gold-deep); }
.cart-color { font-size: .82rem; color: var(--muted); margin: .15rem 0; }
.cart-unit { font-size: .84rem; color: var(--muted); }
.cart-line-actions { display: flex; gap: 1.2rem; margin-top: .5rem; }
.cart-qty { display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; }
.cart-line-total { font-weight: 500; }
.coupon-box { margin-bottom: 1.2rem; }
.coupon-form { display: flex; gap: .5rem; }
.coupon-msg { font-size: .8rem; color: var(--success); min-height: 1.1em; margin-top: .4rem; }
.coupon-msg.is-error { color: var(--error); }
.coupon-applied { font-size: .84rem; color: var(--success); margin: .4rem 0; }

/* ---------- checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 380px; gap: 2.2rem; align-items: start; padding-bottom: 3rem; }
.pay-option { display: flex; gap: .9rem; align-items: flex-start; border: 1px solid var(--line); border-radius: var(--r); padding: 1rem 1.1rem; margin-bottom: .7rem; cursor: pointer; transition: border-color .18s, background .18s; }
.pay-option:hover { border-color: var(--gold); }
.pay-option input { position: absolute; opacity: 0; }
.pay-option .pay-radio { width: 18px; height: 18px; border: 1px solid var(--line); border-radius: 50%; margin-top: .2rem; position: relative; flex-shrink: 0; transition: border-color .15s; }
.pay-option input:checked ~ .pay-radio { border-color: var(--gold-deep); }
.pay-option input:checked ~ .pay-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold-deep); }
.pay-option input:focus-visible ~ .pay-radio { outline: 2px solid var(--gold-deep); outline-offset: 2px; }
.pay-option:has(input:checked) { border-color: var(--gold); background: var(--gold-pale); }
.pay-info strong { font-weight: 500; font-size: .95rem; display: block; }
.pay-info small { color: var(--muted); font-size: .82rem; }
.pay-detail { background: var(--gold-pale); border: 1px solid var(--gold-soft); padding: 1rem 1.2rem; border-radius: var(--r); margin: .2rem 0 .8rem; display: none; }
.pay-detail.is-visible { display: block; }
.pay-soon { font-size: .82rem; color: var(--muted); background: var(--line-soft); padding: .8em 1em; border-radius: var(--r); margin-top: .4rem; }
.mini-items { margin-bottom: 1rem; }
.mini-item { display: flex; align-items: center; gap: .8rem; padding: .5rem 0; border-bottom: 1px solid var(--line-soft); }
.mini-item img { width: 60px; height: 60px; object-fit: contain; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); }
.mini-item > div { flex: 1; min-width: 0; }
.mini-name { font-size: .92rem; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-qty { font-size: .78rem; color: var(--muted); }

/* ---------- confirmation / tracking ---------- */
.confirm-head { text-align: center; padding: 2.4rem 0 1.6rem; }
.confirm-check { width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: 50%; background: var(--gold-pale); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; border: 1px solid var(--gold-soft); }
.order-status-line { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; margin-bottom: .6rem; }
.order-no { font-size: 1.25rem; font-family: var(--serif); font-weight: 700; }
.status-pill { display: inline-block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; padding: .4em 1em; border-radius: 99px; }
.s-pending { background: var(--gold-pale); color: var(--gold-deep); }
.s-confirmed { background: #E5EDF5; color: #2D4A66; }
.s-packed { background: #EDE7F5; color: #55426E; }
.s-shipped { background: #E3F0EA; color: #2F5E47; }
.s-delivered { background: #E3F0EA; color: #2F5E47; }
.s-cancelled { background: #F6E3DF; color: #8E3325; }
.stepper { display: flex; justify-content: space-between; list-style: none; gap: .4rem; padding: 1.4rem .2rem .6rem; counter-reset: step; }
.step { flex: 1; text-align: center; position: relative; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.step .step-dot { display: block; width: 14px; height: 14px; margin: 0 auto .5rem; border-radius: 50%; background: var(--line); position: relative; z-index: 2; }
.step::before { content: ""; position: absolute; top: 6px; left: -50%; width: 100%; height: 2px; background: var(--line); }
.step:first-child::before { display: none; }
.step.is-done { color: var(--ink-soft); }
.step.is-done .step-dot { background: var(--gold); }
.step.is-done::before { background: var(--gold-soft); }
.step.is-current { color: var(--gold-deep); font-weight: 600; }
.step.is-current .step-dot { box-shadow: 0 0 0 4px var(--gold-pale); }
.track-timeline { margin: 1rem 0; }
.tl-item { display: flex; gap: 1rem; padding: .45rem 0; font-size: .9rem; color: var(--ink-soft); }
.tl-date { min-width: 84px; color: var(--muted); font-size: .8rem; padding-top: .1em; }
.track-form { margin-bottom: 1.4rem; }
.pay-instructions .spec-table { margin-bottom: .6rem; }

/* ---------- auth / account ---------- */
.auth-wrap { display: flex; justify-content: center; padding: clamp(2.4rem, 6vw, 4.5rem) 0; }
.auth-panel { width: min(440px, 100%); background: var(--surface); border: 1px solid var(--line); padding: 2.4rem; border-radius: var(--r); text-align: center; }
.auth-panel form { text-align: left; margin-top: 1.4rem; }
.auth-mark { margin: 0 auto .8rem; }
.auth-alt { margin-top: 1.3rem; font-size: .9rem; color: var(--muted); }
.auth-alt a { color: var(--gold-deep); border-bottom: 1px solid var(--gold-soft); }
.account-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2.4rem; align-items: start; padding: 1rem 0 3rem; }
.account-nav ul { position: sticky; top: 96px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--r); overflow: hidden; }
.account-nav a, .account-nav .text-btn { display: block; width: 100%; text-align: left; padding: .85em 1.1em; font-size: .9rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); transition: background .15s, color .15s; }
.account-nav li:last-child a, .account-nav li:last-child .text-btn { border-bottom: 0; }
.account-nav a:hover { background: var(--gold-pale); color: var(--gold-deep); }
.account-nav a.is-active { background: var(--ink); color: #FDFBF6; }
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.6rem; }
.stat-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.2rem; text-align: center; }
.stat-num { font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--gold-deep); }
.stat-card p:last-child { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.order-card { display: grid; grid-template-columns: 1fr auto auto; gap: 1rem; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem 1.3rem; margin-bottom: .7rem; transition: border-color .18s, box-shadow .18s; }
.order-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.order-card .muted { font-size: .8rem; }
.order-total { font-weight: 500; }
.page-head-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.addr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.2rem; }
.addr-card p { font-size: .92rem; color: var(--ink-soft); margin-bottom: .8rem; }

/* ---------- wishlist / empty / 404 ---------- */
.wishlist-page .card-grid { padding-bottom: 3rem; }
.empty-state { text-align: center; padding: clamp(3rem, 8vw, 5rem) 1rem; }
.empty-icon { color: var(--gold-soft); margin-bottom: 1.1rem; }
.empty-state h2 { font-size: 1.7rem; margin-bottom: .5rem; }
.empty-state p { color: var(--muted); max-width: 420px; margin: 0 auto 1.6rem; }
.big-404 { font-family: var(--serif); font-size: 4.6rem; color: var(--gold); font-weight: 700; display: block; line-height: 1; }

/* ---------- policy / about ---------- */
.policy { padding-bottom: 3.5rem; }
.policy-sec { margin: 1.8rem 0; }
.policy-sec h2 { font-size: 1.3rem; margin-bottom: .5rem; }
.policy-sec p { color: var(--ink-soft); margin-bottom: .8rem; }
.about-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding: 1.5rem 0 2.5rem; }
.about-logo { height: 116px; width: auto; margin-bottom: 1.4rem; }
.about-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-md); }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.4rem; padding-bottom: 3.5rem; align-items: start; }
.contact-info p { margin-bottom: 1rem; font-size: .95rem; color: var(--ink-soft); }
.contact-info strong { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .2rem; }

/* ---------- cart drawer ---------- */
.cart-drawer-backdrop { position: fixed; inset: 0; background: rgba(34, 29, 21, .45); z-index: 140; opacity: 0; visibility: hidden; transition: opacity .3s; }
.cart-drawer-backdrop.is-open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 94vw); background: var(--bg); z-index: 150; transform: translateX(103%); transition: transform .34s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--line); }
.cart-drawer-head p { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: .4rem 1.4rem; }
.cart-drawer-foot { border-top: 1px solid var(--line); padding: 1.1rem 1.4rem; background: var(--surface); }
.d-item { display: flex; gap: .9rem; padding: 1rem 0; border-bottom: 1px solid var(--line-soft); }
.d-item img { width: 76px; height: 84px; object-fit: contain; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); }
.d-info { flex: 1; min-width: 0; }
.d-name { font-size: .95rem; font-family: var(--serif); font-weight: 600; }
.d-meta { font-size: .78rem; color: var(--muted); margin: .1rem 0 .5rem; }
.d-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--r); background: var(--surface); }
.d-qty button { width: 30px; height: 30px; font-size: .95rem; color: var(--ink-soft); }
.d-qty button:hover { background: var(--line-soft); }
.d-qty input { width: 34px; text-align: center; border: 0; background: none; padding: .2em 0; font-size: .88rem; font-weight: 500; -moz-appearance: textfield; }
.d-qty input::-webkit-outer-spin-button, .d-qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.d-remove { font-size: .74rem; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.d-remove:hover { color: var(--error); }
.d-price { font-size: .9rem; font-weight: 500; text-align: right; }
.d-empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.d-empty .btn { margin-top: 1.2rem; }
.d-ship-note { font-size: .78rem; color: var(--gold-deep); background: var(--gold-pale); padding: .6em .9em; border-radius: var(--r); margin-bottom: .8rem; }
.d-ship-bar { height: 3px; background: var(--line); border-radius: 2px; overflow: hidden; margin-bottom: .8rem; }
.d-ship-bar span { display: block; height: 100%; background: var(--gold); transition: width .4s var(--ease); }
.d-foot-row { display: flex; justify-content: space-between; font-size: .95rem; margin-bottom: .9rem; }
.d-foot-row strong { font-size: 1.15rem; }
.d-foot-links { display: flex; justify-content: center; gap: 1.4rem; margin-top: .7rem; }

/* ---------- modal (quick view) ---------- */
.modal { position: fixed; inset: 0; z-index: 160; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(34, 29, 21, .5); }
.modal-panel { position: relative; background: var(--bg); border-radius: var(--r); box-shadow: var(--shadow-lg); width: min(880px, 100%); max-height: 92vh; overflow-y: auto; animation: modalIn .3s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.qv-grid { display: grid; grid-template-columns: 1fr 1fr; }
.qv-grid img { width: 100%; height: 100%; object-fit: contain; background: #fff; min-height: 300px; }
.qv-info { padding: 1.8rem; }
.qv-close { position: absolute; top: .6rem; right: .6rem; background: rgba(251, 248, 241, .9); z-index: 2; }
.qv-info h2 { font-size: 1.6rem; margin-bottom: .4rem; }
.qv-info .price { font-size: 1.2rem; }
.qv-info p.qv-desc { color: var(--ink-soft); font-size: .92rem; margin: .9rem 0 1.1rem; }
.qv-stock { font-size: .8rem; margin-bottom: 1rem; }
.qv-skel { min-height: 420px; background: linear-gradient(100deg, var(--line-soft) 40%, var(--bg-soft) 50%, var(--line-soft) 60%); background-size: 220% 100%; animation: shimmer 1.1s infinite linear; }
@keyframes shimmer { to { background-position: -120% 0; } }

/* ---------- toasts ---------- */
.toast-region { position: fixed; bottom: 1.2rem; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: .5rem; align-items: center; width: min(420px, 92vw); }
.toast { background: var(--ink); color: #F5EDD9; padding: .85em 1.4em; border-radius: var(--r); font-size: .88rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: .6rem; animation: toastIn .28s var(--ease); width: 100%; text-align: center; justify-content: center; }
.toast.is-error { background: var(--error); color: #fff; }
.toast.is-leaving { opacity: 0; transform: translateY(8px); transition: all .3s; }
@keyframes toastIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90; width: 52px; height: 52px; border-radius: 50%; background: #1FA855; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.08); }

/* ---------- reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- sticky PDP bar (mobile) ---------- */
.pdp-sticky-bar { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .card-grid { grid-template-columns: repeat(3, 1fr); }
  .drop { min-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1020px) {
  .header-nav { display: none; }
  .nav-toggle { display: inline-flex; justify-self: start; }
  .header-main { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: center; }
  .brand img { height: 44px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: fixed; inset: 0 0 0 auto; width: min(340px, 90vw); background: var(--bg); z-index: 150; transform: translateX(103%); transition: transform .32s var(--ease); padding: 1.4rem 1.5rem; overflow-y: auto; box-shadow: var(--shadow-lg); margin: 0; }
  .shop-filters.is-open { transform: translateX(0); }
  .filter-toggle { display: inline-flex; }
  .pdp { grid-template-columns: 1fr; }
  .reviews-wrap { grid-template-columns: 1fr; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .editorial-grid, .story-grid, .about-hero { grid-template-columns: 1fr; }
  .about-hero .about-media { order: -1; }
  .account-layout { grid-template-columns: 1fr; }
  .account-nav ul { position: static; display: flex; flex-wrap: wrap; }
  .account-nav li { flex: 1 1 auto; }
  .account-nav a, .account-nav .text-btn { border: 1px solid var(--line); border-radius: var(--r); margin: .2rem; padding: .6em 1em; }
  .account-nav a.is-active { background: var(--ink); color: #FDFBF6; }
  .contact-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: .8rem; }
  .cat-card-info h3 { font-size: 1.1rem; }
  .cat-card-info p { display: none; }
}
@media (max-width: 760px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem .7rem; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 1.1rem .4rem; }
  .trust-grid > div { justify-content: flex-start; }
  .cat-grid { grid-template-columns: 1fr; }
  .review-row, .value-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .footer-news { flex-direction: column; align-items: flex-start; }
  .form-row, .form-row.three { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; padding-top: 2.4rem; gap: 1.8rem; }
  .hero-copy { padding-bottom: 0; }
  .hero-figure { order: 2; }
  .hero h1 { font-size: 2.5rem; }
  .hero-sub { margin-bottom: 1.4rem; }
  .qv-grid { grid-template-columns: 1fr; }
  .qv-grid img { min-height: 240px; max-height: 320px; }
  .cart-row { grid-template-columns: 72px 1fr; }
  .cart-qty { grid-column: 2; flex-direction: row; align-items: center; justify-content: space-between; }
  .cart-thumb img { width: 72px; height: 84px; }
  .order-card { grid-template-columns: 1fr auto; }
  .order-card .order-total { grid-column: 2; grid-row: 1; }
  .stepper { flex-wrap: wrap; gap: .8rem .5rem; }
  .step { flex: 1 1 30%; }
  .step::before { display: none; }
  .addr-grid { grid-template-columns: 1fr; }
  .btn-block-sm { width: 100%; }
  /* sticky add-to-cart on PDP */
  .pdp-sticky-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: var(--surface); border-top: 1px solid var(--line); padding: .7rem 1rem; display: flex; gap: .7rem; align-items: center; box-shadow: 0 -6px 20px rgba(34, 29, 21, .08); }
  .pdp-sticky-bar .price-now { font-size: 1.05rem; }
  .pdp-sticky-bar .btn { flex: 1; }
  body:has(.pdp-sticky-bar) .wa-float { bottom: 5.4rem; }
  .announce p { font-size: .62rem; letter-spacing: .1em; }
}
@media (max-width: 430px) {
  .brand img { height: 38px; }
  .icon-btn { width: 38px; height: 38px; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-title { font-size: 1.8rem; }
}


/* mobile menu socials */
.mobile-nav-social { display: flex; align-items: center; justify-content: center; gap: 1.1rem; padding: 1.1rem 1.3rem 1.4rem; border-top: 1px solid var(--line); }
.mobile-nav-social a { color: var(--ink-soft); transition: color .18s var(--ease); }
.mobile-nav-social a:hover { color: var(--gold-deep); }
