/* The Gift Boxx — storefront styles.
   Colours and fonts come from Admin → Settings → Appearance (CSS variables set in the layout). */

@property --wood-bg { syntax: '<color>'; inherits: true; initial-value: transparent; }
@property --wood-text { syntax: '<color>'; inherits: true; initial-value: #1D1714; }
@property --wood-accent { syntax: '<color>'; inherits: true; initial-value: #BAA183; }

:root {
  --bg: #FBF8F4; --surface: #fff; --ink: #1D1714; --accent: #BAA183; --dark: #241913; --radius: 16px;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --muted: color-mix(in srgb, var(--ink) 58%, transparent);
  --line: color-mix(in srgb, var(--ink) 11%, transparent);
  --soft: color-mix(in srgb, var(--accent) 12%, var(--bg));
  --shadow-sm: 0 1px 2px rgba(29, 23, 20, .06), 0 1px 1px rgba(29, 23, 20, .04);
  --shadow: 0 10px 30px -12px rgba(29, 23, 20, .18), 0 2px 6px rgba(29, 23, 20, .05);
  --shadow-lg: 0 30px 60px -20px rgba(29, 23, 20, .28);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --wrap: 1240px;
  --gutter: clamp(22px, 5vw, 40px);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body);
  font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 500; line-height: 1.12; letter-spacing: -.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }
.sr, .skip:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip:focus { position: fixed; top: 8px; left: 8px; z-index: 999; background: var(--surface); padding: 8px 14px; border-radius: 8px; }
.hp { position: absolute; left: -9999px; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.i { width: 20px; height: 20px; flex: none; }
.eyebrow { display: inline-block; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--muted); max-width: 60ch; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--dark); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  background: var(--btn-bg); color: var(--btn-fg); border: 1px solid var(--btn-bg);
  border-radius: 999px; padding: .8em 1.5em; font-weight: 500; font-size: .95rem; letter-spacing: .005em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, opacity .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0) scale(.98); }
.btn:disabled { opacity: .45; pointer-events: none; }
.btn .i { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.btn:hover .i { transform: translateX(2px); }
.btn-lg { padding: 1em 1.9em; font-size: 1rem; }
.btn-small { padding: .55em 1.1em; font-size: .85rem; }
.btn-block { width: 100%; }
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--surface); }
.btn-light { --btn-bg: #fff; --btn-fg: var(--dark); }
.btn-grow { flex: 1; }
.link { background: none; border: 0; padding: 0; text-decoration: underline; font-size: .9rem; }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 500; font-size: .95rem; }
.link-arrow .i { width: 18px; transition: transform .25s var(--ease); }
.link-arrow:hover .i { transform: translateX(4px); }
.icon-btn {
  position: relative; display: inline-grid; place-items: center; width: 42px; height: 42px;
  border-radius: 999px; border: 0; background: transparent; transition: background .2s;
}
.icon-btn:hover { background: color-mix(in srgb, var(--ink) 6%, transparent); }
.icon-btn-lg { width: 52px; height: 52px; border: 1px solid var(--line); }
.badge {
  position: absolute; top: 3px; right: 1px; min-width: 18px; height: 18px; padding: 0 5px; border-radius: 9px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 600; line-height: 18px; text-align: center;
}

/* ---------- Header ---------- */
.announce { background: var(--dark); color: #fff; text-align: center; font-size: .8rem; letter-spacing: .03em; padding: .55rem 1rem; }
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 1.5rem; }
.logo img { width: 170px; height: auto; }
.main-nav { display: flex; align-items: center; gap: .25rem; margin: 0 auto; }
.main-nav > a, .has-menu > button {
  display: inline-flex; align-items: center; gap: .3em; padding: .5rem .85rem; border-radius: 999px;
  font-size: .9rem; font-weight: 450; background: none; border: 0; transition: background .2s, color .2s;
}
.main-nav > a:hover, .has-menu > button:hover, .main-nav > a.active { background: color-mix(in srgb, var(--ink) 6%, transparent); }
.has-menu { position: relative; }
.has-menu .i { width: 14px; transition: transform .25s; }
.has-menu:hover .i, .has-menu:focus-within .i { transform: rotate(180deg); }
.mega {
  position: absolute; top: calc(100% + 10px); left: 50%; translate: -50% 8px; opacity: 0; visibility: hidden;
  display: grid; grid-template-columns: 1fr 220px; gap: 12px; width: 560px; padding: 12px;
  background: color-mix(in srgb, var(--surface) 92%, transparent); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow-lg);
  transition: opacity .25s var(--ease), translate .25s var(--ease), visibility .25s;
}
.has-menu:hover .mega, .has-menu:focus-within .mega { opacity: 1; visibility: visible; translate: -50% 0; }
.mega::before { content: ''; position: absolute; inset: -12px 0 auto; height: 12px; }
.mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega-links a { display: flex; flex-direction: column; padding: .7rem .9rem; border-radius: 12px; font-size: .92rem; transition: background .2s; }
.mega-links a:hover { background: var(--soft); }
.mega-links small { color: var(--muted); font-size: .78rem; }
.mega-card { display: flex; flex-direction: column; gap: .35rem; padding: 1.1rem; border-radius: 14px; background: var(--dark); color: #fff; }
.mega-card .i { color: var(--accent); width: 24px; height: 24px; }
.mega-card span { font-size: .85rem; opacity: .75; }
.header-actions { display: flex; align-items: center; gap: .1rem; margin-left: auto; }
.only-mobile { display: none; }

/* ---------- Toasts ---------- */
.toasts { position: fixed; top: calc(var(--header-h) + 12px); left: 50%; translate: -50% 0; z-index: 80; display: grid; gap: 8px; width: min(92vw, 460px); pointer-events: none; }
.toast {
  display: flex; align-items: flex-start; gap: .6rem; padding: .85rem 1.1rem; border-radius: 14px; pointer-events: auto;
  background: color-mix(in srgb, var(--surface) 90%, transparent); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line); box-shadow: var(--shadow); font-size: .92rem; animation: toast-in .45s var(--ease) both;
}
.toast .i { color: #2E8B57; margin-top: 1px; }
.toast-error .i { color: #C0392B; }
.toast.out { animation: toast-out .35s var(--ease) forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-10px) scale(.98); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(-10px) scale(.98); } }

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-tight { padding: clamp(28px, 4vw, 48px) 0; }
.section-tint { background: var(--soft); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; margin-bottom: 2.25rem; }
.section-head p { color: var(--muted); margin: 0; max-width: 52ch; }
.section-head h2 { margin-bottom: .3em; }
.page-hero { padding: clamp(40px, 6vw, 80px) 0 clamp(20px, 3vw, 36px); }
.page-hero.compact { padding-bottom: 0; }
.page-hero h1 { margin-bottom: .3em; }
.crumbs { display: flex; align-items: center; flex-wrap: wrap; gap: .35rem; font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.crumbs .i { width: 14px; height: 14px; opacity: .6; }
.crumbs a:hover { color: var(--ink); }

/* ---------- Hero ---------- */
.hero { padding: clamp(28px, 5vw, 64px) 0 clamp(40px, 6vw, 90px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.9rem); line-height: 1.02; letter-spacing: -.02em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin: 2rem 0 2.25rem; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 1.25rem; color: var(--muted); font-size: .88rem; }
.hero-trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust .i { color: var(--accent); }
.hero-media { position: relative; aspect-ratio: 5 / 5.4; }
.hero-img { position: absolute; margin: 0; overflow: hidden; border-radius: calc(var(--radius) * 1.6); box-shadow: var(--shadow-lg); }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img.main { inset: 0 18% 8% 0; }
.hero-img.second { width: 46%; aspect-ratio: 3 / 4; right: 0; bottom: 0; border: 6px solid var(--bg); }

/* ---------- Intro & features ---------- */
.intro .narrow p { font-size: 1.1rem; color: var(--muted); }
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 3.5rem; }
.feature { padding: 1.75rem 1.5rem; background: var(--surface); border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.feature h3 { font-size: 1.3rem; margin: 1rem 0 .4rem; }
.feature p { color: var(--muted); font-size: .93rem; margin: 0; }
.feature-icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--soft); color: var(--accent); }
.feature-icon .i { width: 24px; height: 24px; }

/* ---------- Collections ---------- */
.collections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.collection { position: relative; overflow: hidden; border-radius: calc(var(--radius) * 1.4); aspect-ratio: 4 / 5; background: var(--soft); }
.collection:nth-child(1) { grid-row: span 2; aspect-ratio: auto; }
.collection img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.collection:hover img { transform: scale(1.05); }
.collection::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 14, 10, .62), transparent 55%); }
.collection-label { position: absolute; left: 22px; right: 22px; bottom: 20px; z-index: 1; color: #fff; display: flex; flex-direction: column; }
.collection-label strong { font-family: var(--font-head); font-size: 1.7rem; font-weight: 500; line-height: 1.1; }
.collection-label small { display: inline-flex; align-items: center; gap: .35rem; opacity: .85; font-size: .85rem; }
.collection-label .i { width: 16px; transition: transform .25s; }
.collection:hover .collection-label .i { transform: translateX(4px); }

/* ---------- Product cards ---------- */
.grid-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(12px, 2vw, 24px); }
.grid-products.three { grid-template-columns: repeat(3, 1fr); }
.card { position: relative; }
.card-media { position: relative; display: block; overflow: hidden; border-radius: var(--radius); background: var(--soft); aspect-ratio: 4 / 5; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), opacity .6s var(--ease); }
.card-media .hover { position: absolute; inset: 0; opacity: 0; }
.card:hover .card-media img { transform: scale(1.04); }
.card:hover .card-media .hover { opacity: 1; }
.pill { position: absolute; top: 12px; left: 12px; background: color-mix(in srgb, var(--surface) 88%, transparent); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); padding: .3em .8em; border-radius: 999px; font-size: .72rem; font-weight: 600; letter-spacing: .04em; }
.pill-sale { background: var(--dark); color: #fff; }
.wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 38px; height: 38px; border-radius: 999px; border: 0;
  display: grid; place-items: center; background: color-mix(in srgb, var(--surface) 85%, transparent); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; transform: scale(.9); transition: opacity .25s, transform .25s var(--ease), color .2s;
}
.card:hover .wish-btn, .wish-btn.on, .wish-btn:focus-visible { opacity: 1; transform: scale(1); }
.wish-btn.on { color: #C0392B; }
.wish-btn.on .i { fill: currentColor; }
.wish-btn.inline { position: static; opacity: 1; transform: none; }
.wish-btn.pop { animation: pop .45s var(--ease); }
@keyframes pop { 50% { transform: scale(1.25); } }
.card-body { padding: .9rem .2rem 0; }
.card-body h3 { font-family: var(--font-body); font-size: .98rem; font-weight: 500; letter-spacing: 0; line-height: 1.35; margin: 0 0 .3rem; }
.card-price { font-size: .95rem; }
.card-price .from { color: var(--muted); font-size: .85rem; }
.card-rating { display: flex; align-items: center; gap: .3rem; margin-bottom: .2rem; font-size: .8rem; color: var(--muted); }
.price del { color: var(--muted); margin-right: .25em; font-size: .9em; }
.price ins { text-decoration: none; }
.stars { color: color-mix(in srgb, var(--ink) 20%, transparent); letter-spacing: 1px; }
.stars .on, .stars .half { color: #D4A017; }

/* ---------- Promo & split ---------- */
.promo { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; border-radius: calc(var(--radius) * 1.6); background: var(--dark); color: #fff; }
.promo-media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.promo-copy { padding: clamp(32px, 6vw, 72px); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.promo-copy p { opacity: .8; font-size: 1.05rem; max-width: 44ch; }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.split-card { display: flex; flex-direction: column; gap: .5rem; align-items: flex-start; padding: clamp(28px, 4vw, 48px); border-radius: calc(var(--radius) * 1.4); background: var(--surface); border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.split-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.split-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin: .75rem 0 .2rem; }
.split-card p { color: var(--muted); }
.split-card.dark { background: var(--dark); color: #fff; border-color: transparent; }
.split-card.dark p { color: rgba(255, 255, 255, .7); }
.split-card.dark .feature-icon { background: rgba(255, 255, 255, .08); }

/* ---------- FAQ / accordion ---------- */
.faq, .accordion { display: grid; gap: 10px; margin-top: 2rem; }
.faq details, .accordion details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 0 1.4rem; }
.faq summary, .accordion summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0; cursor: pointer; font-weight: 500; font-size: 1.02rem; }
.faq summary::-webkit-details-marker, .accordion summary::-webkit-details-marker { display: none; }
.faq summary .i, .accordion summary .i { transition: transform .3s var(--ease); color: var(--muted); }
details[open] > summary .i { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 1.2rem; margin: 0; }

/* ---------- Shop listing ---------- */
.toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.chips { display: flex; gap: .5rem; overflow-x: auto; scrollbar-width: none; padding: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip { display: inline-flex; align-items: center; gap: .35rem; white-space: nowrap; padding: .5rem 1rem; border-radius: 999px; border: 1px solid var(--line); font-size: .88rem; transition: all .2s; background: var(--surface); }
.chip:hover { border-color: var(--ink); }
.chip.on { background: var(--dark); color: #fff; border-color: var(--dark); }
.chip .i { width: 15px; height: 15px; }
.sort select, select, input:not([type=checkbox]):not([type=radio]):not([type=range]), textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; padding: .8rem 1rem; outline: none;
  transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
}
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23776' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.sort select { width: auto; border-radius: 999px; padding: .5rem 2.4rem .5rem 1rem; font-size: .88rem; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 22%, transparent); }
.pager { display: flex; justify-content: center; gap: .4rem; margin-top: 3rem; }
.pager a { min-width: 42px; height: 42px; display: grid; place-items: center; border-radius: 999px; border: 1px solid var(--line); }
.pager a.on { background: var(--dark); color: #fff; border-color: var(--dark); }
.empty-state { text-align: center; padding: 4rem 1rem; max-width: 480px; margin: 0 auto; }
.empty-state > .i { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; }
.empty-state p { color: var(--muted); }

/* ---------- Product page ---------- */
body.has-wood {
  background-color: var(--wood-bg); color: var(--wood-text); transition: --wood-bg .8s var(--ease), --wood-text .8s var(--ease), --wood-accent .8s var(--ease);
  --ink: var(--wood-text); --accent: var(--wood-accent); --bg: var(--wood-bg);
  --surface: color-mix(in srgb, var(--wood-bg) 86%, var(--wood-text));
  --muted: color-mix(in srgb, var(--wood-text) 62%, transparent);
  --line: color-mix(in srgb, var(--wood-text) 16%, transparent);
  --soft: color-mix(in srgb, var(--wood-text) 7%, var(--wood-bg));
}
body.has-wood .site-header { background: color-mix(in srgb, var(--wood-bg) 72%, transparent); }
body.has-wood .site-header .logo img, body.has-wood .sheet-head img { filter: var(--wood-logo); transition: filter .6s; }
body.has-wood main .btn:not(.btn-ghost):not(.btn-light), body.has-wood .sheet .btn:not(.btn-ghost), body.has-wood .cookie .btn { --btn-bg: var(--wood-btn-bg); --btn-fg: var(--wood-btn-fg); }
body.has-wood .swatch input:checked + span { background: color-mix(in srgb, var(--wood-text) 12%, var(--wood-bg)); }
body.has-wood .pill { color: var(--ink); }
.wood-backdrop { position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0; transition: opacity .8s var(--ease); }
body.has-wood .wood-backdrop {
  opacity: 1;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--wood-bg) 30%, transparent), var(--wood-bg) 85%),
    var(--wood-image, none) center / cover no-repeat,
    repeating-linear-gradient(97deg, transparent 0 22px, color-mix(in srgb, var(--wood-text) calc(var(--wood-grain, 1) * 3%), transparent) 22px 23px, transparent 23px 51px);
}
body.has-wood .card-media, body.has-wood .gallery-main, body.has-wood .thumb { background: color-mix(in srgb, var(--wood-text) 6%, var(--wood-bg)); }
body.has-wood .accordion details, body.has-wood .panel { background: color-mix(in srgb, var(--surface) 70%, var(--wood-bg)); }
.product { padding-top: clamp(16px, 3vw, 32px); }
.product-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 5vw, 72px); align-items: start; }
.gallery { position: sticky; top: calc(var(--header-h) + 16px); }
.gallery-main { position: relative; aspect-ratio: 4 / 5; border-radius: calc(var(--radius) * 1.4); overflow: hidden; background: var(--soft); }
.slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .6s var(--ease); cursor: zoom-in; }
.slide.on { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.slide.zoom img { transform: scale(1.8); cursor: zoom-out; }
.gal-nav { position: absolute; top: 50%; translate: 0 -50%; z-index: 2; width: 44px; height: 44px; border-radius: 999px; border: 0; display: grid; place-items: center; background: color-mix(in srgb, var(--surface) 85%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); opacity: 0; transition: opacity .25s; }
.gallery-main:hover .gal-nav { opacity: 1; }
.gal-nav.prev { left: 14px; } .gal-nav.next { right: 14px; }
.thumbs { display: flex; gap: 10px; margin-top: 12px; overflow-x: auto; scrollbar-width: none; }
.thumb { flex: 0 0 76px; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; border: 2px solid transparent; padding: 0; background: var(--soft); transition: border-color .2s, opacity .2s; opacity: .7; }
.thumb.on { border-color: var(--ink); opacity: 1; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.buy h1 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: .4rem; }
.rating-line { display: inline-flex; align-items: center; gap: .5rem; font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.buy-price { font-size: 1.6rem; font-weight: 500; margin-top: .6rem; }
.tax-note { font-size: .8rem; color: var(--muted); margin: .1rem 0 1.25rem; }
.short-desc { color: var(--muted); }
.short-desc p:last-child { margin-bottom: 0; }
.buy-form { margin: 1.75rem 0 1.25rem; }
.option { border: 0; padding: 0; margin: 0 0 1.4rem; }
.option legend { font-size: .9rem; color: var(--muted); margin-bottom: .6rem; }
.option legend strong { color: var(--ink); font-weight: 500; }
.swatches { display: flex; flex-wrap: wrap; gap: .5rem; }
.swatch input { position: absolute; opacity: 0; pointer-events: none; }
.swatch span {
  display: inline-flex; align-items: center; gap: .5rem; padding: .7rem 1.15rem; border-radius: 999px; border: 1.5px solid var(--line);
  background: color-mix(in srgb, var(--surface) 70%, transparent); cursor: pointer; font-size: .92rem; transition: all .2s var(--ease);
}
.swatch span:hover { border-color: color-mix(in srgb, var(--ink) 50%, transparent); }
.swatch input:checked + span { border-color: var(--ink); background: var(--surface); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ink) 8%, transparent); }
.swatch input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }
.swatch.disabled span { opacity: .4; text-decoration: line-through; }
.wood-dot { width: 18px; height: 18px; border-radius: 50%; background: var(--wood-bg); border: 1px solid color-mix(in srgb, var(--wood-text) 25%, transparent); box-shadow: inset 0 0 0 2px color-mix(in srgb, #fff 30%, transparent); background-image: repeating-linear-gradient(100deg, transparent 0 3px, color-mix(in srgb, var(--wood-text) 12%, transparent) 3px 4px); }
.var-desc { font-size: .9rem; margin: -.5rem 0 1rem; }
.buy-actions { display: flex; gap: .6rem; align-items: stretch; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.qty button { width: 34px; height: 34px; border: 0; background: none; display: grid; place-items: center; border-radius: 999px; }
.qty button:hover { background: var(--soft); }
.qty .i { width: 15px; height: 15px; }
.qty span { min-width: 26px; text-align: center; font-size: .9rem; }
.qty-lg button { width: 44px; height: 50px; }
.qty-lg input { width: 42px !important; border: 0 !important; background: none !important; text-align: center; padding: 0 !important; box-shadow: none !important; -moz-appearance: textfield; }
.qty-lg input::-webkit-inner-spin-button { -webkit-appearance: none; }
.perks { list-style: none; padding: 1.25rem 0; margin: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; gap: .8rem; font-size: .9rem; }
.perks li { display: flex; gap: .75rem; align-items: flex-start; }
.perks .i { color: var(--accent); }
.pincode { margin: 1.25rem 0; }
.pincode label { display: flex; align-items: center; gap: .4rem; font-size: .9rem; font-weight: 500; margin-bottom: .5rem; }
.pincode-row { display: flex; gap: .5rem; }
.pincode-row input { border-radius: 999px !important; }
[data-pincode-msg] { margin: .5rem 0 0; }
[data-pincode-msg].ok { color: #2E7D4F; } [data-pincode-msg].bad { color: #B03A2E; }
.wa-inline { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--muted); }
.wa-inline:hover { color: #1FA855; }
.rte { font-size: 1.02rem; }
.rte h2, .rte h3 { margin-top: 1.6em; }
.rte ul, .rte ol { padding-left: 1.2em; }
.rte li { margin-bottom: .45em; }
.rte li::marker { color: var(--accent); }
.rte a { text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 3px; }
.rte img { border-radius: var(--radius); margin: 1.5em 0; }
.rte blockquote { margin: 1.5em 0; padding: .2em 0 .2em 1.25em; border-left: 3px solid var(--accent); font-family: var(--font-head); font-size: 1.3rem; }
.accordion .rte { padding-bottom: 1.4rem; }
.specs { width: 100%; border-collapse: collapse; margin-bottom: 1.2rem; font-size: .95rem; }
.specs th, .specs td { text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--line); }
.specs th { color: var(--muted); font-weight: 400; width: 40%; }
.reviews-head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.big-rating { display: flex; align-items: center; gap: .6rem; }
.big-rating strong { font-family: var(--font-head); font-size: 2.4rem; font-weight: 500; }
.reviews { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 12px; }
.reviews li { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; }
.review-top { display: flex; align-items: center; gap: .6rem; flex-wrap: wrap; margin-bottom: .4rem; }
.review-form summary { list-style: none; display: inline-flex; }
.review-form summary::-webkit-details-marker { display: none; }
.review-form form { margin-top: 1.25rem; }
.stars-input { grid-column: 1 / -1; display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: .2rem; font-size: 1.8rem; }
.stars-input input { position: absolute; opacity: 0; }
.stars-input label { cursor: pointer; color: var(--line); transition: color .15s, transform .15s; }
.stars-input label:hover, .stars-input label:hover ~ label, .stars-input input:checked ~ label { color: #D4A017; }
.stars-input label:hover { transform: scale(1.15); }
.sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; padding: .75rem 0 calc(.75rem + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--surface) 85%, transparent); backdrop-filter: blur(20px) saturate(180%); -webkit-backdrop-filter: blur(20px) saturate(180%); border-top: 1px solid var(--line); animation: slide-up .4s var(--ease); }
@keyframes slide-up { from { transform: translateY(100%); } }
.sticky-inner { display: flex; align-items: center; gap: 1rem; }
.sticky-name { font-weight: 500; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- Forms, panels ---------- */
.panel { background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 2px); padding: clamp(20px, 3vw, 32px); }
.panel.tint { background: var(--soft); border-color: transparent; }
.panel h2 { font-size: 1.6rem; }
.panel h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; letter-spacing: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.form-grid .full, .form-grid > button, .form-grid > .btn { grid-column: 1 / -1; }
.form-grid > button { justify-self: start; }
label { display: grid; gap: .4rem; font-size: .88rem; font-weight: 500; }
label em { font-style: normal; color: var(--muted); font-weight: 400; }
.check { display: flex; align-items: flex-start; gap: .6rem; margin-top: 1rem; font-weight: 400; cursor: pointer; }
.check input { width: 18px; height: 18px; accent-color: var(--dark); margin-top: 2px; }
.sub-panel { margin-top: 1rem; padding: 1rem; border-radius: 14px; background: var(--soft); }
.notice { padding: 1rem 1.25rem; border-radius: 14px; background: var(--soft); margin-bottom: 1.5rem; }
.notice.warn { background: #FFF4E5; color: #7A4A00; }
.with-icon { display: flex; gap: .7rem; align-items: flex-start; }
.with-icon .i { color: var(--accent); margin-top: 3px; }
.align-end { align-self: end; margin: 0; }

/* ---------- Cart & checkout ---------- */
.cart-grid, .checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: clamp(20px, 3vw, 40px); align-items: start; }
.cart-line { display: grid; grid-template-columns: 110px 1fr auto auto auto; gap: 1.25rem; align-items: center; padding: 1.25rem 0; border-bottom: 1px solid var(--line); }
.cart-line img { border-radius: 12px; aspect-ratio: 4 / 5; object-fit: cover; }
.cart-line-info { display: flex; flex-direction: column; gap: .15rem; font-size: .92rem; }
.cart-line-info .name { font-weight: 500; font-size: 1rem; }
.warn { color: #B03A2E; font-size: .85rem; }
.summary { background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); padding: 1.6rem; display: grid; gap: .65rem; box-shadow: var(--shadow-sm); }
.summary.sticky { position: sticky; top: calc(var(--header-h) + 16px); }
.summary h2 { font-size: 1.5rem; margin-bottom: .3rem; }
.row { display: flex; justify-content: space-between; gap: 1rem; }
.row.good { color: #2E7D4F; }
.row.total { font-size: 1.15rem; font-weight: 600; padding-top: .75rem; border-top: 1px solid var(--line); margin-top: .25rem; }
.coupon { display: flex; gap: .5rem; align-items: center; margin: .5rem 0; }
.coupon input { border-radius: 999px !important; padding: .6rem 1rem !important; }
.checkout h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: .5rem 0 1.5rem; }
.checkout-main { display: grid; gap: 16px; }
.checkout-main fieldset { margin: 0; min-width: 0; }
.checkout-main legend { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-size: 1.5rem; float: left; width: 100%; margin-bottom: 1.1rem; }
.checkout-main legend + * { clear: both; }
.step { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--dark); color: #fff; font-family: var(--font-body); font-size: .8rem; font-weight: 600; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .88rem; color: var(--muted); }
.back-link .i { width: 16px; }
.pay-options { display: grid; gap: 10px; }
.pay-option input { position: absolute; opacity: 0; }
.pay-option span { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.2rem; border: 1.5px solid var(--line); border-radius: 14px; cursor: pointer; transition: all .2s; font-weight: 450; }
.pay-option input:checked + span { border-color: var(--ink); box-shadow: 0 0 0 3px color-mix(in srgb, var(--ink) 8%, transparent); }
.mini-lines { list-style: none; padding: 0; margin: 0 0 .5rem; display: grid; gap: .9rem; }
.mini-lines li { display: grid; grid-template-columns: 56px 1fr auto; gap: .8rem; align-items: center; font-size: .9rem; }
.mini-lines small { display: block; color: var(--muted); }
.thumb-wrap { position: relative; }
.thumb-wrap img { border-radius: 10px; aspect-ratio: 4 / 5; object-fit: cover; }
.thumb-wrap b { position: absolute; top: -6px; right: -6px; min-width: 20px; height: 20px; border-radius: 10px; background: var(--muted); color: #fff; font-size: .72rem; display: grid; place-items: center; }
.pay-page { min-height: 60vh; display: grid; place-items: center; }
.pay-card { display: grid; gap: .75rem; justify-items: center; }
.spinner { width: 42px; height: 42px; border-radius: 50%; border: 3px solid var(--line); border-top-color: var(--ink); animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Order page ---------- */
.order-hero { margin-bottom: 2.5rem; }
.big-icon { display: inline-grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: #E7F4EC; color: #2E7D4F; margin-bottom: 1.25rem; animation: pop .6s var(--ease); }
.big-icon .i { width: 34px; height: 34px; stroke-width: 2; }
.big-icon.warn { background: #FFF4E5; color: #B26B00; }
.progress { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; grid-template-columns: repeat(4, 1fr); counter-reset: s; }
.progress li { position: relative; text-align: center; font-size: .85rem; color: var(--muted); padding-top: 26px; }
.progress li span { position: absolute; top: 0; left: 50%; translate: -50% 0; width: 16px; height: 16px; border-radius: 50%; background: var(--line); z-index: 1; }
.progress li::before { content: ''; position: absolute; top: 7px; left: -50%; width: 100%; height: 2px; background: var(--line); }
.progress li:first-child::before { display: none; }
.progress li.done { color: var(--ink); }
.progress li.done span, .progress li.done::before { background: var(--dark); }
.order-summary { display: grid; gap: .6rem; margin-bottom: 16px; }
.order-summary hr { border: 0; border-top: 1px solid var(--line); margin: .4rem 0; width: 100%; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 2rem; }
.gift-note { margin: 1rem 0 0; font-family: var(--font-head); font-style: italic; font-size: 1.2rem; }

/* ---------- Account ---------- */
.auth-wrap { display: grid; grid-template-columns: 440px 1fr; gap: clamp(24px, 5vw, 80px); align-items: center; }
.auth-card { background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px); padding: clamp(24px, 4vw, 40px); display: grid; gap: 1rem; box-shadow: var(--shadow); }
.auth-card form { display: grid; gap: 1rem; }
.auth-card h1 { font-size: 2rem; }
.tabs { display: grid; grid-template-columns: 1fr 1fr; background: var(--soft); border-radius: 999px; padding: 4px; }
.tabs button { border: 0; background: none; border-radius: 999px; padding: .6rem; font-size: .9rem; font-weight: 500; transition: background .25s, box-shadow .25s; }
.tabs button.on { background: var(--surface); box-shadow: var(--shadow-sm); }
.ticks { list-style: none; padding: 0; display: grid; gap: .7rem; }
.ticks li { display: flex; gap: .6rem; align-items: center; }
.ticks .i { color: #2E7D4F; }
.account-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.account-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 16px; align-items: start; }
.order-list { display: grid; }
.order-row { display: grid; grid-template-columns: 1fr auto auto 20px; gap: 1rem; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.order-row small { display: block; }
.status { font-size: .78rem; padding: .25em .75em; border-radius: 999px; background: var(--soft); }
.s-processing, .s-packed { background: #EAF2FF; color: #1D4ED8; }
.s-shipped { background: #F3EAFF; color: #6D28D9; }
.s-delivered, .s-completed { background: #E7F4EC; color: #2E7D4F; }
.s-cancelled, .s-failed, .s-refunded { background: #FDECEA; color: #B03A2E; }

/* ---------- Enquiry, blog, pages ---------- */
.enquiry-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; align-items: start; }
.contact-aside { display: grid; gap: 16px; }
.contact-aside p { font-size: .95rem; }
.steps { padding-left: 1.2rem; margin: 0; display: grid; gap: .5rem; color: var(--muted); }
.thanks { padding: 3rem 2rem; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-media { display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 3 / 2; margin-bottom: 1rem; background: var(--soft); }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.04); }
.post-card h3 { font-size: 1.5rem; }
.post-card p:last-child { color: var(--muted); font-size: .95rem; }
.article-head { padding-top: clamp(32px, 5vw, 64px); }
.article-cover { margin: 2rem auto; }
.article-cover img { border-radius: calc(var(--radius) * 1.4); width: 100%; }
.article-body { font-size: 1.1rem; line-height: 1.75; padding-bottom: 3rem; }
.about-media { display: grid; grid-template-columns: 1.3fr 1fr; gap: 16px; }
.about-media img { border-radius: calc(var(--radius) * 1.4); width: 100%; height: 100%; max-height: 520px; object-fit: cover; }
.search-inline { display: flex; gap: .5rem; max-width: 460px; margin: 2rem auto 0; }
.search-inline input { border-radius: 999px !important; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: rgba(255, 255, 255, .78); margin-top: clamp(40px, 6vw, 80px); padding: clamp(48px, 7vw, 88px) 0 24px; font-size: .92rem; }
body.has-wood .site-footer { margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-grid h3 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #fff; font-weight: 600; margin-bottom: 1.1rem; }
.footer-grid a { display: block; padding: .25rem 0; transition: color .2s; }
.footer-grid a:hover { color: #fff; }
.footer-grid .with-icon a { display: inline; padding: 0; }
.footer-brand img { width: 190px; margin-bottom: 1.2rem; }
.footer-brand p { max-width: 34ch; }
.social { display: flex; gap: .5rem; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 255, 255, .08); transition: background .2s; }
.social a:hover { background: rgba(255, 255, 255, .16); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .8rem; color: rgba(255, 255, 255, .55); }
.pay-note { display: inline-flex; align-items: center; gap: .4rem; }
.pay-note .i { width: 16px; }

/* ---------- Overlays ---------- */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 45; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff; box-shadow: 0 10px 25px -8px rgba(37, 211, 102, .6); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float .i { width: 28px; height: 28px; }
body.is-product .wa-float, body.is-checkout .wa-float { bottom: 88px; }
.scrim { position: fixed; inset: 0; z-index: 60; background: rgba(15, 10, 8, .35); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; } }
.sheet { position: fixed; top: 0; bottom: 0; z-index: 70; width: min(420px, 92vw); background: var(--bg); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.sheet-right { right: 0; animation: in-right .45s var(--ease); }
.sheet-left { left: 0; animation: in-left .45s var(--ease); }
@keyframes in-right { from { transform: translateX(100%); } }
@keyframes in-left { from { transform: translateX(-100%); } }
.sheet-head { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; border-bottom: 1px solid var(--line); }
.sheet-head h2 { font-size: 1.5rem; margin: 0; }
.sheet-nav { display: grid; padding: .75rem 1.25rem; overflow-y: auto; }
.sheet-nav a { display: flex; align-items: center; gap: .6rem; padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
.sheet-nav a.sub { padding-left: 1rem; font-size: .95rem; color: var(--muted); }
[data-cart-drawer] { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.drawer-lines { list-style: none; margin: 0; padding: 0 1.25rem; overflow-y: auto; flex: 1; }
.drawer-lines li { display: grid; grid-template-columns: 72px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.drawer-lines img { border-radius: 10px; aspect-ratio: 4 / 5; object-fit: cover; }
.drawer-lines a { font-weight: 500; font-size: .95rem; }
.drawer-lines small { display: block; color: var(--muted); font-size: .82rem; }
.qty-row { display: flex; justify-content: space-between; align-items: center; margin-top: .5rem; }
.drawer-foot { padding: 1.25rem; border-top: 1px solid var(--line); display: grid; gap: .6rem; background: var(--surface); }
.drawer-foot p { margin: 0; }
.drawer-empty { flex: 1; display: grid; place-content: center; justify-items: center; gap: .75rem; padding: 2rem; text-align: center; }
.drawer-empty .i { width: 44px; height: 44px; color: var(--accent); }
.ship-meter { padding: 1rem 1.25rem; font-size: .88rem; background: var(--soft); }
.ship-meter p { margin: 0 0 .5rem; }
.ship-meter.done { display: flex; align-items: center; gap: .5rem; color: #2E7D4F; }
.meter { height: 5px; border-radius: 3px; background: color-mix(in srgb, var(--ink) 10%, transparent); overflow: hidden; }
.meter span { display: block; height: 100%; background: var(--dark); border-radius: 3px; transition: width .6s var(--ease); }
.search-overlay { position: fixed; inset: 0; z-index: 75; display: grid; align-items: start; justify-items: center; padding-top: 12vh; background: rgba(15, 10, 8, .3); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); animation: fade .25s; }
.search-box { display: flex; align-items: center; gap: .75rem; width: min(640px, 92vw); padding: .5rem .6rem .5rem 1.25rem; background: var(--surface); border-radius: 999px; box-shadow: var(--shadow-lg); animation: toast-in .35s var(--ease); }
.search-box input { border: 0 !important; box-shadow: none !important; padding: .7rem 0 !important; font-size: 1.1rem; background: none !important; }
.cookie { position: fixed; left: 20px; bottom: 20px; z-index: 44; max-width: 360px; display: flex; gap: 1rem; align-items: center; padding: 1rem 1.2rem; border-radius: 16px; background: color-mix(in srgb, var(--surface) 90%, transparent); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--line); box-shadow: var(--shadow); font-size: .85rem; animation: toast-in .5s var(--ease); }
.cookie p { margin: 0; }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translate3d(0, 14px, 0); transition: opacity .6s ease-out, transform .6s cubic-bezier(.2, .7, .2, 1); transition-delay: min(var(--d, 0ms), 160ms); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .only-mobile { display: inline-grid; }
  .header-inner { gap: .5rem; }
  .logo { margin: 0 auto; }
  .header-actions { margin-left: 0; }
  .grid-products { grid-template-columns: repeat(3, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  :root { --header-h: 62px; }
  .logo img { width: 140px; }
  .hero-grid, .product-grid, .promo, .split-cards, .cart-grid, .checkout-grid, .auth-wrap, .account-grid, .enquiry-grid, .two-col { grid-template-columns: 1fr; }
  .hero-media { order: -1; aspect-ratio: 1 / 1; max-width: 520px; width: 100%; margin: 0 auto; }
  .hero { text-align: left; }
  .gallery { position: static; }
  .collections { grid-template-columns: 1fr 1fr; }
  .collection:nth-child(1) { grid-row: auto; aspect-ratio: 4 / 5; }
  .grid-products, .grid-products.three { grid-template-columns: repeat(2, 1fr); }
  .post-grid { grid-template-columns: 1fr; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .summary.sticky { position: static; }
  .promo-media img { min-height: 280px; }
  .toolbar { flex-direction: column; align-items: stretch; }
  .sort select { width: 100%; }
  .about-media { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hide-sm { display: none; }
  .features { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 80px 1fr auto; grid-template-areas: 'img info rm' 'img qty total'; gap: .5rem 1rem; }
  .cart-line > a { grid-area: img; } .cart-line-info { grid-area: info; } .cart-line .qty { grid-area: qty; justify-self: start; }
  .cart-line .line-total { grid-area: total; justify-self: end; } .cart-line .icon-btn { grid-area: rm; }
  .buy-actions { flex-wrap: wrap; }
  .buy-actions .btn-grow { order: 3; flex-basis: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .card-body h3 { font-size: .9rem; }
  .wish-btn { opacity: 1; transform: none; width: 34px; height: 34px; }
  .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .wa-float { width: 50px; height: 50px; right: 14px; bottom: 14px; }
  .progress li { font-size: .75rem; }
}

/* Settings-driven switches */
.no-wishlist .wish-btn, .no-wishlist [href="/wishlist/"] { display: none !important; }
.holiday { display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .7rem 1rem; background: #FFF4E5; color: #7A4A00; font-size: .9rem; text-align: center; }
.maint { min-height: 100vh; display: grid; place-items: center; padding: 2rem; text-align: center; background: radial-gradient(ellipse at top, var(--soft), var(--bg) 60%); }
.maint-card { max-width: 560px; display: grid; gap: 1rem; justify-items: center; }
.maint-card img { width: 200px; margin-bottom: 1.5rem; }
.maint-card .row-links { display: flex; gap: .6rem; flex-wrap: wrap; justify-content: center; margin-top: .5rem; }
.track-form { grid-template-columns: 1fr 1fr auto; align-items: end; }
.track-form > button { grid-column: auto; }
.track-result { margin-top: 16px; display: grid; gap: 1rem; }
.track-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; flex-wrap: wrap; }
.track-top h2 { margin: 0 0 .2rem; }
.track-top .eyebrow { margin-bottom: .3rem; }
.track-events { list-style: none; padding: 0; margin: 0; border-left: 2px solid var(--line); }
.track-events li { position: relative; padding: 0 0 1rem 1.25rem; }
.track-events li::before { content: ''; position: absolute; left: -6px; top: 6px; width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.track-events li:first-child::before { background: var(--dark); }
.track-events small { display: block; color: var(--muted); }
.track-items { display: grid; gap: .4rem; border-top: 1px solid var(--line); padding-top: 1rem; }
@media (max-width: 700px) { .track-form { grid-template-columns: 1fr; } }

/* =====================================================================
   v2 — layout robustness, header, homepage, footer, phone menu
   ===================================================================== */

/* Nothing may ever push the page wider than the screen */
html, body { max-width: 100%; overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }
.product-grid > *, .hero-grid > *, .cart-grid > *, .checkout-grid > *, .enquiry-grid > *, .account-grid > *, .footer-grid > *, .grid-products > *, .gallery { min-width: 0; }
.thumbs { max-width: 100%; }
img, video { max-width: 100%; }
.rte, .short-desc, .card-body h3 { overflow-wrap: anywhere; }
.gallery-main img, .card-media img, .collection img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Header: logo left, menu centred, icons right ---------- */
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 1rem; }
.h-left { display: flex; align-items: center; gap: .25rem; justify-self: start; }
.main-nav { margin: 0; justify-self: center; }
.header-actions { justify-self: end; margin: 0; }
.logo-mob { display: none; }
.main-nav > a.active, .has-menu > button.active { background: color-mix(in srgb, var(--ink) 7%, transparent); }
@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 1fr auto 1fr; }
  .logo-desk { display: none; }
  .logo-mob { display: block; justify-self: center; grid-column: 2; grid-row: 1; }
  .main-nav { display: none; }
  .h-left { grid-column: 1; grid-row: 1; }
  .header-actions { grid-column: 3; grid-row: 1; }
  .logo-mob img { width: 150px; }
}
@media (max-width: 400px) { .logo-mob img { width: 128px; } }

/* ---------- Display type ---------- */
.display { font-size: clamp(2.8rem, 6.4vw, 5.6rem); line-height: .98; letter-spacing: -.025em; font-weight: 500; }
.display-2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.02; letter-spacing: -.02em; }
.center-head { justify-content: center; text-align: center; }
.center-head p { margin: 0 auto; }
.u { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent); }

/* ---------- Hero: image melts into the text ---------- */
.hero2 { position: relative; min-height: min(88vh, 860px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero2-media { position: absolute; inset: 0 0 0 34%; z-index: -1; }
.hero2-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 18%, #000 52%);
          mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.35) 18%, #000 52%);
}
.hero2::after { content: ''; position: absolute; inset: auto 0 0 0; height: 30%; z-index: -1; background: linear-gradient(to top, var(--bg), transparent); }
.hero2-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); align-items: end; gap: 2rem; padding-top: clamp(40px, 7vw, 90px); padding-bottom: clamp(60px, 9vw, 120px); }
.hero2-copy { max-width: 640px; }
.hero2-copy .lead { max-width: 46ch; color: color-mix(in srgb, var(--ink) 72%, transparent); }
.hero2-float { justify-self: end; align-self: end; width: min(260px, 46%); margin: 0 0 -40px; border-radius: calc(var(--radius) * 1.4); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid color-mix(in srgb, var(--bg) 85%, transparent); transform: rotate(2.5deg); }
.hero2-float img { aspect-ratio: 3 / 4; object-fit: cover; }
.scroll-cue { position: absolute; left: 50%; bottom: 22px; translate: -50% 0; width: 24px; height: 38px; border-radius: 12px; border: 1.5px solid color-mix(in srgb, var(--ink) 35%, transparent); }
.scroll-cue span { position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 2px; background: var(--ink); translate: -50% 0; animation: cue 1.8s var(--ease) infinite; }
@keyframes cue { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Marquee ribbon ---------- */
.marquee { overflow: hidden; background: var(--dark); color: #fff; padding: 1.05rem 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: 1.6rem; padding-right: 1.6rem; white-space: nowrap; }
.marquee em { font-family: var(--font-head); font-style: italic; font-size: clamp(1.2rem, 2.2vw, 1.7rem); }
.marquee i { font-style: normal; color: var(--accent); font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Story: image blends into copy ---------- */
.story { position: relative; overflow: hidden; }
.story-media { position: absolute; inset: 0 55% 0 0; }
.story-media img { width: 100%; height: 100%; object-fit: cover;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 45%); mask-image: linear-gradient(to left, transparent 0%, #000 45%); }
.story-inner { position: relative; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.story-copy { grid-column: 2; padding-left: clamp(0px, 3vw, 40px); }
.story-text { font-size: 1.1rem; color: color-mix(in srgb, var(--ink) 70%, transparent); max-width: 52ch; }
.highlights { list-style: none; padding: 0; margin: 2.2rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 2rem; }
.highlights li { display: flex; gap: .9rem; align-items: flex-start; padding-top: 1.1rem; border-top: 1px solid var(--line); }
.highlights h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; letter-spacing: 0; margin: 0 0 .25rem; }
.highlights p { margin: 0; color: var(--muted); font-size: .93rem; }
.hl-icon { color: var(--accent); flex: none; }
.hl-icon .i { width: 22px; height: 22px; }

/* ---------- Collections rail ---------- */
.collections-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(240px, 1fr); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 max(var(--gutter), calc((100vw - var(--wrap)) / 2 + var(--gutter))) 8px; scrollbar-width: none; }
.collections-rail::-webkit-scrollbar { display: none; }
.collections-rail .collection { aspect-ratio: 3 / 4; scroll-snap-align: start; grid-row: auto !important; }

/* ---------- Choose your wood ---------- */
.wood-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.wood-card { position: relative; overflow: hidden; border-radius: calc(var(--radius) * 1.4); min-height: 320px; display: flex; align-items: flex-end; background: var(--wood-bg); color: var(--wood-text); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.wood-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wood-surface { position: absolute; inset: 0; background:
  var(--wood-image, none) center / cover,
  repeating-linear-gradient(96deg, transparent 0 18px, color-mix(in srgb, var(--wood-text) 7%, transparent) 18px 19px, transparent 19px 44px),
  radial-gradient(ellipse at 30% 20%, color-mix(in srgb, #fff 18%, transparent), transparent 60%); }
.wood-body { position: relative; padding: 1.6rem; display: grid; gap: .35rem; }
.wood-body strong { font-family: var(--font-head); font-size: 2rem; font-weight: 500; }
.wood-body span { opacity: .8; font-size: .95rem; max-width: 30ch; }

/* ---------- Full-bleed festive banner ---------- */
.promo2 { position: relative; overflow: hidden; color: #fff; min-height: 560px; display: flex; align-items: center; isolation: isolate; }
.promo2-bg { position: absolute; inset: -10% 0; z-index: -2; background-size: cover; background-position: center; }
.promo2::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(20,14,10,.86) 0%, rgba(20,14,10,.55) 45%, rgba(20,14,10,.1) 100%); }
.promo2-inner { padding-top: 80px; padding-bottom: 80px; }
.promo2-copy { max-width: 540px; }
.promo2-copy p { font-size: 1.08rem; opacity: .85; }
.promo2 .eyebrow { color: var(--accent); }

/* ---------- Reviews ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.quote { margin: 0; padding: 1.8rem; background: var(--surface); border: 1px solid var(--line); border-radius: calc(var(--radius) + 4px); display: grid; gap: .8rem; }
.quote blockquote { margin: 0; font-family: var(--font-head); font-size: 1.3rem; line-height: 1.35; }
.quote figcaption { font-size: .88rem; color: var(--muted); }
.quote figcaption strong { color: var(--ink); }

/* ---------- FAQ two-column ---------- */
.faq-wrap { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(24px, 5vw, 80px); align-items: start; }
.faq-head { position: sticky; top: calc(var(--header-h) + 24px); }
.faq-wrap .faq { margin-top: 0; }

/* ---------- Footer ---------- */
.site-footer { position: relative; overflow: hidden; background: var(--dark); color: rgba(255,255,255,.72); padding: clamp(56px, 8vw, 110px) 0 0; margin-top: 0; }
.footer-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-bottom: clamp(40px, 6vw, 72px); border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-statement { font-family: var(--font-head); font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1; color: #fff; margin: 0; letter-spacing: -.02em; }
.footer-cta { display: flex; gap: .6rem; flex-wrap: wrap; }
.btn-outline-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.3); }
.btn-outline-light:hover { background: rgba(255,255,255,.08); }
.site-footer .footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 2.5rem; padding: clamp(40px, 6vw, 64px) 0; }
.footer-brand img { width: 180px; margin-bottom: 1.1rem; }
.footer-brand p { max-width: 32ch; line-height: 1.7; }
.footer-col h3 { font-family: var(--font-body); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.45); font-weight: 600; margin-bottom: 1.1rem; }
.footer-col a { display: block; padding: .3rem 0; color: rgba(255,255,255,.82); transition: color .2s, transform .2s; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-contact .big-link { font-family: var(--font-head); font-size: 1.35rem; color: #fff; padding: .15rem 0; overflow-wrap: anywhere; }
.footer-contact p { margin: .8rem 0 0; font-size: .9rem; }
.footer-contact .dim { color: rgba(255,255,255,.45); }
.site-footer .social { margin-top: 1.2rem; }
.site-footer .footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem 2rem; flex-wrap: wrap; padding: 1.4rem 0; margin: 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; color: rgba(255,255,255,.45); }
.footer-legal { display: flex; gap: .4rem 1.2rem; flex-wrap: wrap; }
.footer-legal a:hover { color: #fff; }
.footer-wordmark { font-family: var(--font-head); font-size: clamp(4rem, 17vw, 16rem); line-height: .8; text-align: center; white-space: nowrap; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.08); letter-spacing: -.02em; margin-top: 1rem; transform: translateY(12%); user-select: none; overflow: hidden; }

/* ---------- Phone & tablet menu ---------- */
.menu-sheet { width: min(460px, 100vw); background: var(--bg); }
.menu-body { flex: 1; overflow-y: auto; display: flex; flex-direction: column; padding: 1rem 1.5rem calc(1.5rem + env(safe-area-inset-bottom)); }
.menu-main { display: grid; }
.menu-main > a, .menu-main summary { font-family: var(--font-head); font-size: 2.1rem; line-height: 1.1; padding: .55rem 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; list-style: none;
  opacity: 0; transform: translateX(-14px); animation: menuIn .5s var(--ease) forwards; animation-delay: calc(var(--i, 0) * 45ms + 80ms); }
.menu-main details { opacity: 0; transform: translateX(-14px); animation: menuIn .5s var(--ease) forwards; animation-delay: calc(var(--i, 0) * 45ms + 80ms); }
.menu-main details summary { animation: none; opacity: 1; transform: none; }
.menu-main summary::-webkit-details-marker { display: none; }
.menu-main summary .i { width: 22px; height: 22px; transition: transform .3s var(--ease); color: var(--muted); }
.menu-main details[open] summary .i { transform: rotate(180deg); }
.menu-main a.on { color: var(--accent); }
@keyframes menuIn { to { opacity: 1; transform: none; } }
.menu-chips { display: flex; flex-wrap: wrap; gap: .5rem; padding: .4rem 0 1rem; }
.menu-chips a { padding: .5rem .95rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); font-size: .9rem; }
.menu-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin: 1.6rem 0; }
.menu-quick a { display: grid; justify-items: center; gap: .35rem; padding: .9rem .4rem; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); font-size: .8rem; }
.menu-quick .i { color: var(--accent); }
.menu-foot { margin-top: auto; display: grid; gap: .7rem; text-align: center; }
.menu-tel { color: var(--muted); font-size: .9rem; }

/* ---------- Product page (dark boxes such as Men in Black) ---------- */
.var-desc { overflow-wrap: anywhere; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
  .wood-grid { grid-template-columns: 1fr; }
  .wood-card { min-height: 200px; }
  .quotes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .hero2 { min-height: 0; align-items: flex-end; }
  .hero2-media { inset: 0 0 38% 0; }
  .hero2-media img { -webkit-mask-image: linear-gradient(to bottom, #000 45%, transparent 100%); mask-image: linear-gradient(to bottom, #000 45%, transparent 100%); }
  .hero2-inner { grid-template-columns: 1fr; padding-top: 52vh; padding-bottom: 56px; }
  .hero2-float { display: none; }
  .scroll-cue { display: none; }
  .story-media { position: relative; inset: auto; height: 340px; margin: -40px 0 0; }
  .story-media img { -webkit-mask-image: linear-gradient(to bottom, #000 40%, transparent 100%); mask-image: linear-gradient(to bottom, #000 40%, transparent 100%); }
  .story-inner { grid-template-columns: 1fr; margin-top: -80px; }
  .story-copy { grid-column: 1; padding: 0; }
  .highlights { grid-template-columns: 1fr; gap: 1rem; }
  .collections-rail { grid-auto-columns: 72%; padding-left: 16px; padding-right: 16px; }
  .promo2 { min-height: 480px; }
  .promo2::before { background: linear-gradient(0deg, rgba(20,14,10,.9) 10%, rgba(20,14,10,.35) 100%); }
  .promo2 { align-items: flex-end; }
  .quotes { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-head { position: static; }
  .footer-hero { align-items: flex-start; }
}
@media (max-width: 560px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }
  .site-footer .footer-bottom { justify-content: center; text-align: center; }
  .menu-main > a, .menu-main summary { font-size: 1.85rem; }
}
/* Keep the WhatsApp button clear of the cookie notice */
body:has(#cookie:not([hidden])) .wa-float { bottom: 104px; }
@media (min-width: 700px) { body:has(#cookie:not([hidden])) .wa-float { bottom: 20px; } }

/* ==========================================================================
   v3 footer — closing card + sand footer, centred and editorial
   ========================================================================== */
.foot { --f-bg: #EFE6DA; --f-ink: #2A201A; --f-muted: #7A6B5E; --f-line: rgba(42, 32, 26, .12); --f-gold: #A8845C; position: relative; color: var(--f-ink); }
.foot a:not(.btn) { color: inherit; text-decoration: none; }
.foot-close { padding: clamp(48px, 7vw, 96px) 0 0; position: relative; z-index: 1; margin-bottom: calc(-1 * clamp(70px, 9vw, 120px)); }
.fc-card { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); min-height: clamp(320px, 34vw, 440px); border-radius: clamp(22px, 2.4vw, 34px); overflow: hidden; background: #211813; color: #F4ECE2; box-shadow: 0 40px 80px -40px rgba(33, 24, 19, .55); isolation: isolate; }
.fc-media { position: relative; }
.fc-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: linear-gradient(90deg, #000 45%, transparent 100%); mask-image: linear-gradient(90deg, #000 45%, transparent 100%); transform: scale(1.04); transition: transform 1.6s var(--ease); }
.fc-card:hover .fc-media img { transform: scale(1); }
.fc-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 90% at 85% 10%, rgba(186, 161, 131, .22), transparent 70%); }
.fc-copy { display: flex; flex-direction: column; justify-content: center; gap: .9rem; padding: clamp(28px, 5vw, 64px) clamp(24px, 5vw, 72px) clamp(28px, 5vw, 64px) 0; }
.fc-eyebrow { margin: 0; font-size: .72rem; letter-spacing: .24em; text-transform: uppercase; color: #CDB597; }
.fc-title { margin: 0; font-family: var(--font-head); font-weight: 400; font-size: clamp(2.5rem, 5.4vw, 4.6rem); line-height: .98; letter-spacing: -.02em; color: #fff; }
.fc-text { margin: 0; max-width: 34ch; color: rgba(244, 236, 226, .72); font-size: 1.02rem; line-height: 1.6; }
.fc-cta { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .6rem; }
.foot-main { position: relative; overflow: hidden; background: var(--f-bg); padding: calc(clamp(70px, 9vw, 120px) + clamp(40px, 5vw, 64px)) 0 0; background-image: radial-gradient(80% 60% at 50% 0%, rgba(255, 255, 255, .55), transparent 70%); }
.foot-promises { list-style: none; margin: 0 auto clamp(40px, 5vw, 64px); padding: 0 0 clamp(32px, 4vw, 48px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.2rem; border-bottom: 1px solid var(--f-line); }
.foot-promises li { display: flex; flex-direction: column; align-items: center; gap: .7rem; text-align: center; font-size: .92rem; color: var(--f-ink); }
.foot-promises .i { width: 46px; height: 46px; padding: 12px; box-sizing: border-box; border-radius: 50%; border: 1px solid rgba(168, 132, 92, .45); color: var(--f-gold); stroke-width: 1.4; }
.foot-brand { text-align: center; }
.foot-brand img { width: clamp(180px, 18vw, 230px); height: auto; margin: 0 auto; filter: none !important; }
.foot-brand p { margin: 1rem auto 0; max-width: 40ch; font-family: var(--font-head); font-style: italic; font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.5; color: var(--f-muted); }
.foot-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem clamp(1.2rem, 2.4vw, 2.2rem); margin: clamp(28px, 3.5vw, 40px) auto 0; }
.foot-nav a { position: relative; font-size: .98rem; padding: .3rem 0; }
.foot-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease); }
.foot-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.foot-occ { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin: 1.2rem auto 0; max-width: 900px; }
.foot-occ a { padding: .38rem .9rem; border-radius: 999px; border: 1px solid var(--f-line); font-size: .82rem; color: var(--f-muted); transition: background .25s, color .25s, border-color .25s; }
.foot-occ a:hover { background: var(--f-ink); border-color: var(--f-ink); color: #fff; }
.foot-contact { text-align: center; margin: clamp(32px, 4vw, 48px) auto 0; display: grid; justify-items: center; gap: .6rem; }
.fct { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: .3rem 1rem; font-family: var(--font-head); font-size: clamp(1.2rem, 2vw, 1.55rem); }
.fct a { overflow-wrap: anywhere; }
.fct a:hover { color: var(--f-gold); }
.fct .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--f-gold); }
.foot-contact p { margin: 0; font-size: .86rem; color: var(--f-muted); }
.foot-social { display: flex; gap: .55rem; margin-top: .5rem; }
.foot-social a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--f-line); transition: background .25s, color .25s, border-color .25s, transform .25s; }
.foot-social a:hover { background: var(--f-ink); color: #fff; border-color: var(--f-ink); transform: translateY(-2px); }
.foot-social .i { width: 17px; height: 17px; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem 2rem; margin-top: clamp(36px, 5vw, 56px); padding: 1.3rem 0; border-top: 1px solid var(--f-line); font-size: .78rem; color: var(--f-muted); position: relative; z-index: 1; }
.foot-legal { display: flex; flex-wrap: wrap; gap: .3rem 1.2rem; }
.foot-legal a:hover, .foot-bottom a:hover { color: var(--f-ink); }
.foot-bottom .pay-note { display: inline-flex; align-items: center; gap: .35rem; }
.foot-bottom .pay-note .i { width: 14px; height: 14px; }
.foot-wordmark { font-family: var(--font-head); font-size: clamp(3.6rem, 16vw, 15rem); line-height: .78; text-align: center; white-space: nowrap; color: transparent; -webkit-text-stroke: 1px rgba(168, 132, 92, .28); margin-top: -.05em; margin-bottom: -.12em; user-select: none; pointer-events: none; overflow: hidden; }
body.has-wood .foot { color: var(--f-ink); }
@media (max-width: 900px) {
    .fc-card { grid-template-columns: minmax(0, 1fr); }
    .fc-media { height: 240px; }
    .fc-media img { -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 100%); mask-image: linear-gradient(180deg, #000 40%, transparent 100%); }
    .fc-copy { padding: 0 28px 32px; margin-top: -40px; position: relative; }
    .foot-promises { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 1.8rem; }
}
@media (max-width: 600px) {
    .fc-media { height: 210px; }
    .fc-copy { padding: 0 22px 28px; }
    .fc-cta .btn { flex: 1 1 auto; justify-content: center; }
    .foot-promises li { font-size: .85rem; }
    .foot-nav { gap: .2rem 1.1rem; }
    .foot-nav a { font-size: .95rem; }
    .fct { flex-direction: column; gap: .2rem; }
    .fct .dot { display: none; }
    .foot-bottom { justify-content: center; text-align: center; flex-direction: column; }
    .foot-legal { justify-content: center; }
}

/* v4 — smoother on phones, wider side margins, no footer wordmark */
.foot-wordmark { display: none; }
.foot-main { padding-bottom: 8px; }
@media (max-width: 1024px), (hover: none) {
  .site-header, .header, .toast, .cookie, .sticky-buy, .pill, .wish-btn, .gal-nav { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
  .scrim, .search-overlay { -webkit-backdrop-filter: none !important; backdrop-filter: none !important; }
  .promo2-bg { transform: none !important; }
  .site-header { background: color-mix(in srgb, var(--bg) 97%, transparent); }
  body.has-wood .site-header { background: color-mix(in srgb, var(--wood-bg) 97%, transparent); }
  .fc-media img, .fc-card:hover .fc-media img { transform: none; transition: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
}
/* Continue with Google */
.google-btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; }
.google-btn .g-logo { flex: none; }
.or-line { display: flex; align-items: center; gap: .8rem; margin: 1rem 0; color: var(--muted); font-size: .82rem; }
.or-line::before, .or-line::after { content: ''; flex: 1; height: 1px; background: var(--line); }
