@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --color-primary: #1C1917;
  --color-on-primary: #FFFFFF;
  --color-secondary: #44403C;
  --color-accent: #C9A227;
  --color-accent-dark: #A16207;
  --color-accent-deep: #8B6914;
  --color-background: #FAFAF8;
  --color-foreground: #0C0A09;
  --color-muted: #E8E4DC;
  --color-border: #D6D3D1;
  --color-destructive: #DC2626;
  --color-ring: #1C1917;
  --gold: #C9A227;
  --gold-bright: #E0C35A;
  --gold-ink: #1A1408;
  --black: #0B0B0B;
  --charcoal: #141414;
  --ink: #1C1917;
  --paper: #FAFAF8;
  --stone: #6B6560;
  --line: #E8E4DC;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, sans-serif;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.18);
  --header-h: 78px;
  --announce-h: 36px;
  --radius: 2px;
  --max: 1280px;
  --ease: 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-foreground);
  background: var(--paper);
  min-height: 100vh;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: rgba(201, 162, 39, 0.25); }
button, input, select, textarea { font-family: inherit; font-size: 16px; }
button, a, .icon-btn, .btn { touch-action: manipulation; }
button { cursor: pointer; border: 0; background: none; }
ul { list-style: none; }
.skip-link {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--gold); color: var(--gold-ink);
  padding: 10px 16px; font-size: 13px; font-weight: 600;
}
.skip-link:focus { top: 8px; outline: 2px solid var(--ink); }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.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;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 12px 28px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  border-radius: var(--radius); transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: #fff; color: var(--ink); }
.btn-outline-gold { background: transparent; color: var(--gold-accent, var(--gold)); border: 1px solid var(--gold); color: var(--gold-dark, var(--accent-dark, #8B6914)); }
.btn-outline-gold { color: var(--color-accent-dark); border-color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--gold-ink); }
.btn-dark { background: var(--black); color: #fff; width: 100%; }
.btn-dark:hover { background: #2a2a2a; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* Announcement marquee */
.announce {
  position: sticky; top: 0; z-index: 60;
  background: var(--black); color: #fff;
  display: flex; align-items: center; overflow: hidden;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 400;
  border-bottom: 1px solid rgba(201,162,39,0.12);
  padding-top: env(safe-area-inset-top);
  height: calc(var(--announce-h) + env(safe-area-inset-top));
}
.announce-track {
  display: flex; width: max-content; white-space: nowrap;
  animation: announce-marquee 32s linear infinite;
  will-change: transform;
}
.announce:hover .announce-track,
.announce:focus-within .announce-track { animation-play-state: paused; }
.announce-seq { display: flex; align-items: center; }
.announce-seq span,
.announce-seq a {
  display: inline-flex; align-items: center; min-height: var(--announce-h);
  padding: 0 8px 0 28px; position: relative; color: rgba(255,255,255,0.92);
}
.announce-seq span::before,
.announce-seq a::before {
  content: ''; position: absolute; left: 10px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gold);
}
.announce a:hover { color: var(--gold); }
.announce-whatsapp { color: var(--gold) !important; font-weight: 600; }
@keyframes announce-marquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* Header */
.site-header {
  position: sticky; top: calc(var(--announce-h) + env(safe-area-inset-top)); z-index: 50;
  background: var(--black); color: #fff;
  border-bottom: 1px solid rgba(201,162,39,0.18);
  transition: box-shadow var(--ease), border-color var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  border-bottom-color: rgba(201,162,39,0.4);
}
.header-inner {
  height: var(--header-h);
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; min-height: 44px; }
.logo img { height: 58px; width: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--gold);
}
.logo-text small {
  font-size: 9px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.nav { display: flex; justify-content: center; gap: 4px; }
.nav a, .nav-drop > button {
  display: inline-flex; align-items: center; gap: 4px;
  min-height: 44px; padding: 8px 10px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  color: rgba(255,255,255,0.88); background: none; border: 0; cursor: pointer;
  transition: color var(--ease);
}
.nav a:hover, .nav a.is-active, .nav-drop > button:hover { color: var(--gold); }
.nav-drop { position: relative; }
.nav-drop svg { width: 12px; height: 12px; }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 200px;
  background: #111; border: 1px solid rgba(201,162,39,0.2);
  padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: var(--ease); z-index: 20;
}
.nav-drop:hover .dropdown, .nav-drop:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: none;
}
.dropdown a {
  display: block; padding: 10px 18px; min-height: 44px;
  letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px;
}
.header-utils { display: flex; align-items: center; gap: 2px; }
.icon-btn {
  width: 44px; height: 44px; display: grid; place-items: center;
  color: #fff; position: relative; border-radius: 50%;
  transition: color var(--ease), background var(--ease);
}
.icon-btn:hover { color: var(--gold); background: rgba(255,255,255,0.06); }
.icon-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.icon-btn svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.badge-count {
  position: absolute; top: 6px; right: 4px;
  min-width: 16px; height: 16px; padding: 0 4px;
  background: var(--gold); color: var(--gold-ink);
  border-radius: 99px; font-size: 9px; font-weight: 700;
  display: grid; place-items: center;
}
.menu-toggle { display: none; }

/* Hero */
.hero {
  position: relative; min-height: min(86vh, 760px);
  display: grid; align-items: center;
  background: #0a0a0a; color: #fff; overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% center;
  filter: brightness(0.55) contrast(1.05);
  will-change: transform;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 48%, rgba(0,0,0,0.15) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.22), transparent 50%);
}
.hero-copy { position: relative; z-index: 1; padding: 72px 0; max-width: 640px; }
.eyebrow {
  color: var(--gold); font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 16px; display: inline-block;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(42px, 6vw, 78px);
  line-height: 0.95; letter-spacing: 0.02em; margin-bottom: 18px;
}
.hero p { color: rgba(255,255,255,0.82); font-size: 16px; font-weight: 300; max-width: 420px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Sections */
.section { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-title {
  font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px);
  font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.section-title::before, .section-title::after {
  content: ''; height: 1px; width: 48px; background: var(--gold);
}
.section-sub { color: var(--stone); margin-top: 8px; font-size: 14px; font-weight: 400; }

/* Categories */
.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.cat-card {
  position: relative; display: block; overflow: hidden; min-height: 420px;
  color: #fff; isolation: isolate;
}
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.1) 55%);
}
.cat-card .cat-copy {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 28px 22px;
}
.cat-card h3 {
  font-family: var(--font-display); font-size: 28px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.cat-card p { font-size: 13px; color: rgba(255,255,255,0.75); margin: 4px 0 14px; }
.cat-card .btn { min-height: 40px; padding: 8px 16px; font-size: 10px; background: #111; color: #fff; }
.cat-card .btn:hover { background: var(--gold); color: var(--gold-ink); }

/* Products */
.product-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-row.is-6 { grid-template-columns: repeat(6, 1fr); }
.product-card {
  background: #fff; border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: box-shadow var(--ease), border-color var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: #d9d0c2; }
.product-media { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #eee; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.product-card:hover .product-media img { transform: scale(1.04); }
.tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--gold-ink);
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  padding: 5px 8px; text-transform: uppercase;
}
.wish {
  position: absolute; top: 8px; right: 8px; width: 40px; height: 40px;
  display: grid; place-items: center; color: #111; background: rgba(255,255,255,0.9);
  border-radius: 50%; transition: var(--ease);
}
.wish:hover, .wish.is-on { color: #b91c1c; }
.wish svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.wish.is-on svg { fill: currentColor; }
.product-body { padding: 16px 14px 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body h3 { font-size: 14px; font-weight: 500; letter-spacing: 0.02em; overflow-wrap: anywhere; }
.stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; }
.price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price strong { font-size: 16px; font-weight: 600; }
.price s { color: var(--stone); font-size: 13px; }
.price .off { color: #166534; font-size: 11px; font-weight: 600; }
.swatches { display: flex; gap: 6px; }
.swatch {
  width: 14px; height: 14px; border-radius: 50%; border: 1px solid #ccc;
}
.carousel-wrap { position: relative; }
.carousel-nav {
  position: absolute; top: 38%; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-md); display: grid; place-items: center;
  z-index: 2; color: var(--ink);
}
.carousel-nav.prev { left: -10px; }
.carousel-nav.next { right: -10px; }
.carousel-nav:hover { background: var(--gold); }
.carousel-nav svg { width: 18px; height: 18px; }

/* Promo */
.promo {
  position: relative; min-height: 420px; color: #fff;
  display: grid; align-items: center; overflow: hidden; background: #0d0d0d;
}
.promo-media { position: absolute; inset: 0; }
.promo-media img { width: 100%; height: 100%; object-fit: cover; object-position: 20% center; filter: brightness(0.45); }
.promo-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.5));
}
.promo-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
  padding: 80px 0;
}
.promo-copy { max-width: 520px; }
.promo h2 {
  font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 500; line-height: 1; letter-spacing: 0.03em; margin: 10px 0 16px;
}
.promo p { color: rgba(255,255,255,0.8); margin-bottom: 28px; }
.seal {
  width: 196px; height: 196px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f0d98a, #c9a227 48%, #8a6a1c);
  color: var(--gold-ink); display: grid; place-items: center; text-align: center;
  position: relative; box-shadow: 0 0 0 10px rgba(201,162,39,0.18), var(--shadow-xl);
  flex-shrink: 0;
}
.seal::before, .seal::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.seal::before { inset: 10px; border: 1px dashed rgba(26,20,8,0.45); }
.seal::after { inset: 18px; border: 1px solid rgba(26,20,8,0.25); }
.seal span {
  font-family: var(--font-display); font-size: 22px; font-weight: 600;
  line-height: 1.15; letter-spacing: 0.04em; position: relative; z-index: 1;
  padding: 20px;
}

/* Values */
.values { background: var(--black); color: #fff; padding: 36px 0; }
.values-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; text-align: center;
}
.value-item { padding: 8px; }
.value-item svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; margin: 0 auto 10px; }
.value-item h3 {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 500; color: var(--gold-bright); line-height: 1.4;
}

/* About */
.about-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.about-photo { overflow: hidden; min-height: 420px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.about-copy h2 {
  font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 42px);
  font-weight: 500; line-height: 1.15; margin: 8px 0 20px;
}
.about-copy p { color: var(--stone); margin-bottom: 16px; }

/* Testimonials */
.quotes { background: #f3f1ec; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  background: #fff; padding: 32px 28px; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold); display: flex; flex-direction: column; gap: 14px;
}
.quote p { font-size: 15px; color: #3f3a36; flex: 1; }
.quote-user { display: flex; align-items: center; gap: 12px; }
.quote-user img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.quote-user strong { display: block; font-size: 14px; }
.quote-user span { font-size: 12px; color: var(--stone); }

/* Instagram */
.ig-layout {
  display: grid; grid-template-columns: 1fr 280px; gap: 12px;
}
.ig-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; }
.ig-grid a { aspect-ratio: 1; overflow: hidden; display: block; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.ig-grid a:hover img { transform: scale(1.06); }
.ig-cta {
  background: var(--black); color: #fff; padding: 32px 24px;
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 14px;
}
.ig-cta svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; }
.ig-cta p { font-size: 14px; color: rgba(255,255,255,0.78); }

/* Inquiry */
.inquiry { background: #111; color: #fff; }
.inquiry-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr 0.9fr; gap: 40px; align-items: start;
}
.inquiry h2 {
  font-family: var(--font-display); font-size: 32px; font-weight: 500; margin-bottom: 8px;
}
.inquiry .lede { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 14px; }
.form-grid { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: block; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 6px; color: rgba(255,255,255,0.72); }
.field input, .field select, .field textarea {
  width: 100%; background: #1a1a1a; border: 1px solid #333; color: #fff;
  padding: 12px 14px; min-height: 48px; font-size: 16px; border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,39,0.2);
}
.field-error { color: #fca5a5; font-size: 12px; margin-top: 4px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #ef4444; }
.field.has-error .field-error { display: block; }
.form-status {
  display: none; padding: 12px 14px; font-size: 14px; margin-top: 8px;
  border: 1px solid var(--gold); color: var(--gold-bright);
}
.form-status.is-ok { display: block; }
.form-status.is-err { display: block; border-color: #ef4444; color: #fca5a5; }
.contact-block h3 {
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.contact-list { display: grid; gap: 16px; }
.contact-list a, .contact-list p { color: rgba(255,255,255,0.85); font-size: 14px; }
.contact-list a:hover { color: var(--gold); }
.contact-list svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.6; flex-shrink: 0; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.store-shot { overflow: hidden; min-height: 280px; }
.store-shot img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; filter: brightness(0.92); }

/* Footer */
.site-footer { background: #080808; color: rgba(255,255,255,0.78); padding: 56px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr repeat(4, 1fr); gap: 32px; padding-bottom: 40px;
}
.footer-brand p { font-size: 13px; margin: 12px 0 18px; max-width: 260px; }
.socials { display: flex; gap: 8px; }
.socials a {
  width: 40px; height: 40px; border: 1px solid #333; display: grid; place-items: center;
  color: #fff; transition: var(--ease);
}
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.socials svg { width: 16px; height: 16px; }
.site-footer h4 {
  color: #fff; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 16px; font-weight: 600;
}
.site-footer li { margin-bottom: 8px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid #1f1f1f; padding: 16px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 12px; color: #8a8a8a;
}
.pay { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.pay span {
  border: 1px solid #2a2a2a; padding: 4px 8px; font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #bbb;
}

/* Page hero */
.page-hero {
  background: var(--black); color: #fff; padding: 56px 0 48px; text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px);
  font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
}
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 8px; }

/* Shop */
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 36px; }
.filters h3 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.filter-list button, .filter-list a {
  display: block; width: 100%; text-align: left; padding: 10px 0;
  font-size: 14px; color: var(--stone); border-bottom: 1px solid var(--line); min-height: 44px;
}
.filter-list button.is-on, .filter-list a:hover, .filter-list button:hover { color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Product detail */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.pdp-img { background: #eee; aspect-ratio: 4/5; overflow: hidden; }
.pdp-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp h1 { font-family: var(--font-display); font-size: 40px; font-weight: 500; margin: 8px 0 12px; }
.size-row, .qty-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 20px; }
.size-btn, .qty-btn {
  min-width: 44px; min-height: 44px; border: 1px solid var(--line); background: #fff;
  font-size: 13px;
}
.size-btn.is-on { border-color: var(--ink); background: var(--ink); color: #fff; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 12px 8px; border-bottom: 1px solid var(--line); }
.cart-table td { padding: 16px 8px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.cart-item { display: flex; gap: 14px; align-items: center; }
.cart-item img { width: 80px; height: 100px; object-fit: cover; }
.cart-summary {
  background: #f6f4ef; padding: 24px; margin-top: 24px; max-width: 380px; margin-left: auto;
}
.cart-empty { text-align: center; padding: 48px 0; }

/* Overlays */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 80;
  opacity: 0; visibility: hidden; transition: var(--ease);
}
.overlay.is-open { opacity: 1; visibility: visible; }
.search-panel, .cart-drawer, .mobile-nav {
  position: fixed; z-index: 90; background: #fff; color: var(--ink);
  box-shadow: var(--shadow-xl); transition: transform var(--ease);
}
.search-panel {
  top: 0; left: 0; right: 0; padding: 24px; transform: translateY(-100%);
}
.search-panel.is-open { transform: none; }
.search-panel form { display: flex; gap: 8px; max-width: 720px; margin: 0 auto; }
.search-panel input {
  flex: 1; min-height: 48px; border: 1px solid var(--line); padding: 0 16px; font-size: 16px;
}
.cart-drawer {
  top: 0; right: 0; width: min(400px, 100%); height: 100%;
  transform: translateX(100%); display: flex; flex-direction: column;
}
.cart-drawer.is-open { transform: none; }
.drawer-head, .drawer-foot { padding: 20px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.drawer-foot { border-bottom: 0; border-top: 1px solid var(--line); display: block; }
.drawer-body { padding: 16px 20px; overflow: auto; flex: 1; }
.mobile-nav {
  top: 0; left: 0; width: min(340px, 88vw); height: 100%;
  background: #0d0d0d; color: #fff; transform: translateX(-100%);
  padding: calc(16px + env(safe-area-inset-top)) 20px calc(20px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; overflow: auto;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px; color: var(--gold);
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.04em;
}
.mobile-nav-links { flex: 1; }
.mobile-nav a {
  display: flex; align-items: center; padding: 14px 0; min-height: 48px;
  border-bottom: 1px solid #222; letter-spacing: 0.14em; text-transform: uppercase; font-size: 13px;
}
.mobile-nav-cta { display: grid; gap: 10px; margin-top: 20px; }
.mobile-nav-cta .btn-outline { color: #fff; border-color: rgba(255,255,255,0.4); }
.mobile-nav .close-x { color: #fff; }
.close-x { width: 44px; height: 44px; display: grid; place-items: center; font-size: 22px; }

/* Toast + float */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; padding: 12px 18px; font-size: 13px;
  z-index: 100; opacity: 0; pointer-events: none; transition: var(--ease);
}
.toast.is-on { opacity: 1; transform: translateX(-50%) translateY(0); }
.wa-float {
  position: fixed; z-index: 40;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

.legal { max-width: 760px; }
.legal h2 { font-family: var(--font-display); font-size: 28px; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--stone); margin-bottom: 10px; }
.legal ul { padding-left: 18px; list-style: disc; }

@media (max-width: 1100px) {
  .product-row.is-6 { grid-template-columns: repeat(3, 1fr); }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .ig-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .inquiry-grid { grid-template-columns: 1fr 1fr; }
  .store-shot { grid-column: 1 / -1; min-height: 220px; }
}
@media (max-width: 900px) {
  :root { --header-h: 62px; --announce-h: 34px; }
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .hide-sm { display: none !important; }
  .logo-text { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 8px; }
  .logo img { height: 46px; }
  .header-utils { gap: 0; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .cat-card { min-height: 240px; }
  .cat-card h3 { font-size: 22px; }
  .cat-card .cat-copy { padding: 16px 14px; }
  .product-row, .product-row.is-6, .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .quote-grid, .about-grid, .pdp { grid-template-columns: 1fr; gap: 28px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .shop-layout { grid-template-columns: 1fr; gap: 20px; }
  .promo-inner { grid-template-columns: 1fr; text-align: center; padding: 56px 0; }
  .promo-copy { max-width: none; }
  .seal { margin: 16px auto 0; width: 148px; height: 148px; }
  .seal span { font-size: 16px; }
  .inquiry-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero {
    min-height: min(78svh, 640px);
    align-items: end;
  }
  .hero-copy { padding: 36px 0 44px; max-width: none; }
  .hero h1 { font-size: clamp(36px, 11vw, 52px); }
  .hero-media img { object-position: 62% center; }
  .hero-media::after {
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 48%, rgba(0,0,0,0.2) 100%);
  }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; }
  .section-title { gap: 10px; font-size: clamp(26px, 7vw, 36px); }
  .section-title::before, .section-title::after { width: 22px; }
  .about-photo, .about-photo img { min-height: 240px; }
  .search-panel { padding: calc(16px + env(safe-area-inset-top)) 16px 16px; }
  .search-panel form { flex-wrap: wrap; }
  .search-panel input { flex: 1 1 100%; }
  .cart-drawer { width: 100%; padding-top: env(safe-area-inset-top); }
  .pdp h1 { font-size: 30px; }
  .pdp .btn { width: 100%; margin: 8px 0 0; }
  .page-hero { padding: 36px 0 28px; }
  .inquiry h2 { font-size: 28px; }
  .carousel-nav { display: none; }
}
@media (max-width: 640px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn,
  .promo .btn,
  .about-copy .btn,
  .inquiry .btn[type="submit"],
  .ig-cta .btn,
  .cart-summary .btn,
  .cart-empty .btn { width: 100%; }
  .product-body { padding: 12px 10px 10px; gap: 6px; }
  .product-body h3 { font-size: 13px; }
  .btn-dark { font-size: 10px; letter-spacing: 0.1em; padding: 12px 8px; min-height: 44px; }
  .wish { width: 44px; height: 44px; top: 6px; right: 6px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .values-grid { grid-template-columns: 1fr; gap: 6px; }
  .value-item { display: flex; align-items: center; gap: 12px; text-align: left; padding: 10px 0; border-bottom: 1px solid #222; }
  .value-item svg { margin: 0; flex-shrink: 0; }
  .quote-grid { grid-template-columns: 1fr; }
  .filter-list {
    display: flex; gap: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding: 4px 0 14px; margin-bottom: 8px; scrollbar-width: none;
  }
  .filter-list::-webkit-scrollbar { display: none; }
  .filter-list a {
    flex: 0 0 auto; width: auto; border: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 10px 14px; min-height: 44px; white-space: nowrap; background: #fff;
  }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .cart-table tr { border: 1px solid var(--line); margin-bottom: 12px; padding: 12px; }
  .cart-table td { border: 0; padding: 6px 0; }
  .cart-table td[data-label]::before {
    content: attr(data-label) ': '; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone);
  }
  .cart-summary { max-width: none; margin-left: 0; }
  .site-footer { padding: 40px 0 96px; }
  .toast { left: 12px; right: 12px; transform: translateY(20px); width: auto; }
  .toast.is-on { transform: translateY(0); }
  .legal { padding-bottom: 24px; }
}
@media (max-width: 400px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { min-height: 220px; }
  .hero { min-height: 520px; }
}
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .announce-track { animation: none !important; transform: none !important; }
}
