/* ══════════════════════════════════════════════════════════
   वारुShi Digiprintic — icon-led e-commerce theme
   Navy / gold / cream, with a press-sheet accent language:
   registration marks, halftone dots, mono spec type.
   ══════════════════════════════════════════════════════════ */

:root {
  --navy: #0f172a;
  --navy-soft: #1e293b;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #a6851a;
  --cream: #faf8f3;
  --cream-dark: #f3efe6;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #64748b;
  --border: #e8e4d9;
  --ok: #16794c;
  --warn: #b45309;
  --danger: #b91c1c;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 30px 80px rgba(15, 23, 42, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --mono: ui-monospace, "SF Mono", "Segoe UI Mono", Menlo, Consolas, monospace;
  --halftone: radial-gradient(rgba(15,23,42,0.07) 1px, transparent 1.2px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
:focus-visible { outline: 2px solid var(--gold-dark); outline-offset: 3px; border-radius: 6px; }
.container { width: min(1160px, 92%); margin-inline: auto; }
.container.narrow { width: min(760px, 92%); }

/* ── icon system ───────────────────────────────────────── */
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.ico {
  width: 1.05em; height: 1.05em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
  vertical-align: -0.16em;
}
.ico-lg { width: 1.35em; height: 1.35em; stroke-width: 1.5; }
.ico-xl { width: 2.4em; height: 2.4em; stroke-width: 1.2; }

/* ── announcement ticker ───────────────────────────────── */
.announce {
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 9px 0;
  overflow: hidden;
}
.announce-track {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.announce-track span { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.announce b { color: var(--white); font-weight: 600; letter-spacing: 0.06em; font-family: var(--mono); }
@keyframes ticker { to { transform: translateX(-50%); } }
.announce:hover .announce-track { animation-play-state: paused; }

/* ── header ────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 18px; }
.logo-img { height: 46px; width: auto; object-fit: contain; }
.logo-text { font-family: "Cormorant Garamond", serif; font-size: 1.7rem; font-weight: 700; color: var(--navy); letter-spacing: -0.01em; }
.logo-text.light { color: var(--white); }
.nav { display: flex; gap: 24px; }
.nav a { font-size: 0.9rem; font-weight: 500; color: var(--muted); transition: color var(--transition); position: relative; }
.nav a:hover { color: var(--navy); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 1.5px; background: var(--gold);
  transition: width var(--transition);
}
.nav a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative; background: none; border: none; cursor: pointer;
  color: var(--navy); padding: 9px; border-radius: 12px; font-size: 1rem;
  display: grid; place-items: center;
  transition: background var(--transition), color var(--transition);
}
.icon-btn:hover { background: var(--cream-dark); color: var(--gold-dark); }
.icon-btn.on { color: var(--gold-dark); }
.pip {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold); color: var(--navy);
  font-family: var(--mono); font-size: 0.6rem; font-weight: 600;
  min-width: 17px; height: 17px; padding: 0 4px;
  border-radius: 100px; display: grid; place-items: center;
  border: 2px solid var(--cream);
}
.menu-toggle { display: none; }
.desktop-only { display: inline-flex; }

/* ── buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.92rem;
  border: 1.5px solid transparent; cursor: pointer;
  transition: all var(--transition);
}
.btn-sm { padding: 9px 16px; font-size: 0.84rem; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.32);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201, 162, 39, 0.42); }
.btn-navy { background: var(--navy); color: var(--gold-light); }
.btn-navy:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--navy); }
.btn-ghost:hover { border-color: var(--gold); background: rgba(201, 162, 39, 0.08); }
.btn-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--gold-light); }
.btn-full { width: 100%; }
.btn-grow { flex: 1; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ── hero ──────────────────────────────────────────────── */
.hero { position: relative; padding: 84px 0 96px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    var(--halftone) 0 0 / 14px 14px,
    radial-gradient(ellipse 80% 60% at 72% 18%, rgba(201, 162, 39, 0.16), transparent 70%),
    radial-gradient(ellipse 50% 40% at 8% 82%, rgba(15, 23, 42, 0.05), transparent 70%),
    var(--cream);
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 50px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 14px;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5.5vw, 4.3rem);
  font-weight: 600; line-height: 1.1; color: var(--navy);
  margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--navy-soft); }
.hero h1 .gold {
  color: var(--gold-dark);
  background: linear-gradient(120deg, var(--gold-dark), var(--gold-light) 60%, var(--gold-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead { font-size: 1.06rem; color: var(--muted); max-width: 470px; margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stats li { display: flex; align-items: center; gap: 10px; color: var(--gold-dark); }
.hero-stats strong { display: block; font-size: 1.3rem; font-weight: 700; color: var(--navy); line-height: 1.2; font-family: var(--mono); }
.hero-stats span { font-size: 0.78rem; color: var(--muted); }

.hero-visual { position: relative; }
.hero-frame { position: relative; height: 392px; }
.reg-mark {
  position: absolute; width: 26px; height: 26px; opacity: 0.45;
  background:
    linear-gradient(var(--gold-dark), var(--gold-dark)) center/1px 100% no-repeat,
    linear-gradient(var(--gold-dark), var(--gold-dark)) center/100% 1px no-repeat;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--gold-dark);
}
.reg-mark.tl { top: 0; left: 0; }
.reg-mark.br { bottom: 0; right: 0; }
.hero-card {
  position: absolute; background: var(--white); border-radius: var(--radius);
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: floaty 6s ease-in-out infinite;
}
.hero-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hero-card.main { top: 34px; left: 12px; width: 268px; z-index: 2; }
.hero-card.float-1 { top: 158px; right: 4px; width: 224px; z-index: 3; animation-delay: -2s; }
.hero-card.float-2 { bottom: 14px; left: 44px; width: 238px; z-index: 1; animation-delay: -4s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.hc-ico {
  display: grid; place-items: center; width: 46px; height: 46px; flex: none;
  border-radius: 14px; font-size: 1.5rem; color: var(--gold-dark);
  background: linear-gradient(150deg, var(--cream-dark), #ece6d6);
  box-shadow: inset 0 0 0 1px var(--border);
}
.hero-card h3 { font-size: 1rem; font-weight: 600; color: var(--navy); }
.hero-card p { font-size: 0.78rem; color: var(--muted); }
.hc-price { font-family: var(--mono); font-size: 0.74rem; color: var(--gold-dark); font-weight: 600; }

/* ── trust bar ─────────────────────────────────────────── */
.trust-bar { background: var(--navy); color: rgba(255,255,255,0.8); padding: 22px 0; }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.88rem; }
.trust-item .ico { color: var(--gold); }
.trust-item strong { display: block; color: var(--white); font-size: 0.9rem; font-weight: 600; }
.trust-item span { font-size: 0.78rem; opacity: 0.6; }

/* ── section shell ─────────────────────────────────────── */
.section { padding: 96px 0; }
.services, .gallery, .faq, .testimonials { content-visibility: auto; contain-intrinsic-size: 600px; }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 600; color: var(--navy); margin-bottom: 10px;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 520px; margin: 0 auto; }
.section-head.light h2, .section-head.light .section-sub { color: var(--white); }
.section-head.light .section-sub { opacity: 0.7; }
.section-head.light .eyebrow { color: var(--gold-light); }

/* ── collections ───────────────────────────────────────── */
.collection-grid { display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 18px; min-height: 480px; }
.collection-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: flex-end; min-height: 220px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.collection-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.collection-card.large { grid-row: 1 / 3; min-height: 100%; }
.cc-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #1e293b 0%, #0f172a 60%, #1a2744 100%); }
.cc-bg.alt { background: linear-gradient(160deg, #3d3420 0%, #2a2418 100%); }
.cc-bg.alt2 { background: linear-gradient(160deg, #1a2a3a 0%, #0f1c28 100%); }
.cc-ghost {
  position: absolute; right: -14px; top: -10px;
  font-size: 9rem; color: rgba(232, 197, 71, 0.14); line-height: 1;
  transition: transform var(--transition), color var(--transition);
}
.collection-card:hover .cc-ghost { transform: rotate(-6deg) scale(1.05); color: rgba(232, 197, 71, 0.22); }
.collection-card.large .cc-ghost { font-size: 13rem; }
.cc-content { position: relative; z-index: 1; padding: 28px; color: var(--white); }
.cc-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 8px;
}
.cc-content h3 { font-family: "Cormorant Garamond", serif; font-size: 1.75rem; font-weight: 600; margin-bottom: 6px; }
.cc-content p { font-size: 0.9rem; opacity: 0.78; margin-bottom: 12px; }
.cc-link { display: inline-flex; align-items: center; gap: 7px; font-size: 0.86rem; font-weight: 600; color: var(--gold-light); }
.collection-card:hover .cc-link .ico { transform: translateX(4px); }
.cc-link .ico { transition: transform var(--transition); }

/* ── shop toolbar ──────────────────────────────────────── */
.shop-bar { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.search-field, .sort-field {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 100px; padding: 0 16px; height: 48px;
  color: var(--muted); transition: border-color var(--transition);
}
.search-field { flex: 1; min-width: 240px; }
.search-field:focus-within, .sort-field:focus-within { border-color: var(--gold); }
.search-field input {
  flex: 1; border: none; background: none; outline: none;
  font-size: 0.92rem; color: var(--text); height: 100%;
}
.search-field input::-webkit-search-cancel-button { display: none; }
.search-clear { background: none; border: none; cursor: pointer; color: var(--muted); display: grid; }
.sort-field select { border: none; background: none; outline: none; font-size: 0.9rem; color: var(--navy); font-weight: 500; cursor: pointer; }

.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--white);
  font-weight: 500; font-size: 0.86rem; cursor: pointer; color: var(--muted);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--gold-light); }

/* ── product cards ─────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); gap: 22px; }
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
  animation: rise 0.4s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(12px); } }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image {
  aspect-ratio: 1.08; position: relative; display: grid; place-items: center;
  background:
    var(--halftone) 0 0 / 12px 12px,
    linear-gradient(145deg, var(--cream-dark), #ebe6da);
  color: var(--navy); font-size: 4.4rem;
  border-bottom: 1px solid var(--border);
}
.product-image .ico { stroke-width: 1.1; transition: transform var(--transition); }
.product-card:hover .product-image .ico { transform: scale(1.06) rotate(-2deg); }
.product-badge {
  position: absolute; top: 13px; left: 13px;
  background: var(--navy); color: var(--gold-light);
  font-family: var(--mono); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 100px;
}
.wish-btn {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); border: 1px solid var(--border);
  display: grid; place-items: center; cursor: pointer;
  color: var(--muted); font-size: 0.95rem;
  transition: all var(--transition);
}
.wish-btn:hover { color: var(--danger); transform: scale(1.08); }
.wish-btn.on { color: var(--danger); }
.wish-btn.on .ico { fill: currentColor; }
.quick-btn {
  position: absolute; left: 13px; right: 13px; bottom: 13px;
  padding: 9px; border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.92); color: var(--gold-light);
  border: none; cursor: pointer; font-size: 0.82rem; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  opacity: 0; transform: translateY(8px); transition: all var(--transition);
}
.product-card:hover .quick-btn { opacity: 1; transform: translateY(0); }
.product-body { padding: 16px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold-dark); font-weight: 600; margin-bottom: 6px;
}
.rating { display: inline-flex; align-items: center; gap: 4px; color: var(--gold-dark); font-family: var(--mono); letter-spacing: 0; text-transform: none; }
.rating .ico { fill: currentColor; stroke: none; width: 0.85em; height: 0.85em; }
.product-title { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.product-desc { font-size: 0.84rem; color: var(--muted); margin-bottom: 12px; flex: 1; }
.swatches { display: flex; gap: 5px; margin-bottom: 14px; }
.swatch { width: 15px; height: 15px; border-radius: 5px; box-shadow: inset 0 0 0 1px rgba(15,23,42,0.18); }
.swatch-more { font-size: 0.7rem; color: var(--muted); font-family: var(--mono); }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: var(--mono); font-weight: 600; font-size: 1.08rem; color: var(--navy); display: flex; align-items: baseline; gap: 7px; }
.product-price del { font-size: 0.78rem; color: var(--muted); font-weight: 400; }
.price-off { font-size: 0.68rem; color: var(--ok); font-weight: 600; }
.add-btn {
  background: var(--navy); color: var(--gold-light); border: none;
  padding: 10px 15px; border-radius: var(--radius-sm); cursor: pointer;
  font-size: 0.84rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all var(--transition);
}
.add-btn:hover { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); }
.grid-empty {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center; color: var(--muted); padding: 60px 20px; font-size: 0.95rem;
}

/* ── process ───────────────────────────────────────────── */
.process { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.process::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(rgba(232,197,71,0.09) 1px, transparent 1.2px) 0 0 / 16px 16px;
  opacity: 0.6;
}
.process .container { position: relative; z-index: 1; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step {
  padding: 26px 22px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); background: rgba(255,255,255,0.03);
  transition: background var(--transition), transform var(--transition);
  position: relative;
}
.process-step:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.ps-ico {
  display: grid; place-items: center; width: 46px; height: 46px;
  border-radius: 14px; font-size: 1.4rem; color: var(--gold-light);
  background: rgba(232,197,71,0.1); box-shadow: inset 0 0 0 1px rgba(232,197,71,0.25);
  margin-bottom: 16px;
}
.ps-num {
  position: absolute; top: 22px; right: 22px;
  font-family: var(--mono); font-size: 0.78rem; color: var(--gold); opacity: 0.6;
}
.process-step h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: 0.87rem; opacity: 0.68; line-height: 1.6; }

/* ── services ──────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.service-card {
  background: var(--white); padding: 28px 26px; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201,162,39,0.4); }
.sc-icon {
  display: grid; place-items: center; width: 52px; height: 52px;
  border-radius: 16px; font-size: 1.6rem; color: var(--gold-dark);
  background: linear-gradient(150deg, var(--cream-dark), #ece6d6);
  box-shadow: inset 0 0 0 1px var(--border);
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.89rem; color: var(--muted); }

/* ── testimonials ──────────────────────────────────────── */
.testimonials { background: var(--cream-dark); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: var(--white); padding: 26px 24px; border-radius: var(--radius); border: 1px solid var(--border); }
.stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 12px; }
.stars .ico { fill: currentColor; stroke: none; width: 1em; height: 1em; }
.testimonial p { font-size: 0.94rem; color: var(--navy-soft); margin-bottom: 18px; line-height: 1.7; }
.testimonial footer { display: flex; align-items: center; gap: 12px; }
.tm-ico {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream-dark); color: var(--gold-dark); font-size: 1rem;
  box-shadow: inset 0 0 0 1px var(--border);
}
.testimonial strong { display: block; font-size: 0.9rem; color: var(--navy); }
.testimonial footer span span { font-size: 0.78rem; color: var(--muted); }

/* ── gallery ───────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.gal-item {
  aspect-ratio: 1; background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  font-size: 2rem; color: var(--gold-dark);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.gal-item:hover { transform: translateY(-5px); box-shadow: var(--shadow); background: var(--white); }
.gal-item p { font-size: 0.74rem; font-weight: 500; color: var(--muted); }
.gallery-cta { text-align: center; margin-top: 34px; }

/* ── faq ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-item summary {
  padding: 17px 20px; font-weight: 600; font-size: 0.96rem; color: var(--navy);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary span { display: inline-flex; align-items: center; gap: 10px; }
.faq-item summary span .ico { color: var(--gold-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.3rem; color: var(--gold); font-weight: 400; line-height: 1;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 20px 18px 50px; font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ── contact ───────────────────────────────────────────── */
.contact { background: var(--cream-dark); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 46px; align-items: start; }
.contact-info h2 { font-family: "Cormorant Garamond", serif; font-size: 2.3rem; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.contact-lead { color: var(--muted); margin-bottom: 26px; max-width: 400px; }
.contact-links { margin-bottom: 24px; }
.cl-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.cl-icon {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  border-radius: 13px; font-size: 1.15rem; color: var(--gold-dark);
  background: var(--white); box-shadow: inset 0 0 0 1px var(--border);
}
.cl-item > div { flex: 1; }
.cl-item strong { display: block; font-size: 0.92rem; color: var(--navy); }
.cl-item span { font-size: 0.83rem; color: var(--muted); }
.cl-arrow { color: var(--muted); transition: transform var(--transition); }
a.cl-item:hover .cl-arrow { transform: translateX(4px); color: var(--gold-dark); }
.trust-pill {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px;
}
.trust-pill strong { display: block; font-size: 0.9rem; color: var(--navy); }
.trust-pill span { font-size: 0.8rem; color: var(--muted); }
.contact-form { background: var(--white); padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: 0.81rem; font-weight: 500; margin-bottom: 6px; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.92rem; background: var(--cream); color: var(--text);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group input.bad, .form-group textarea.bad { border-color: var(--danger); }
.form-note { display: flex; align-items: center; justify-content: center; gap: 7px; text-align: center; font-size: 0.77rem; color: var(--muted); margin-top: 12px; }

/* ── footer ────────────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,0.8); padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-logo { height: 50px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { font-size: 0.88rem; opacity: 0.65; margin-bottom: 12px; max-width: 290px; }
.footer-ig { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-light); font-weight: 500; font-size: 0.88rem; }
.footer-col h4 { color: var(--white); font-size: 0.86rem; font-weight: 600; margin-bottom: 15px; letter-spacing: 0.04em; }
.footer-col a { display: flex; align-items: center; gap: 9px; font-size: 0.87rem; opacity: 0.62; margin-bottom: 11px; transition: all var(--transition); }
.footer-col a:hover { opacity: 1; color: var(--gold-light); transform: translateX(3px); }
.pay-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pay-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem; padding: 6px 11px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
}
.secure-note { display: inline-flex; align-items: center; gap: 7px; font-size: 0.76rem; opacity: 0.55; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; font-size: 0.78rem; opacity: 0.5; text-align: center; }

/* ── cart drawer ───────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(15, 23, 42, 0.5);
  opacity: 0; visibility: hidden; transition: var(--transition); z-index: 200;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; right: 0; width: min(412px, 100%); height: 100%;
  background: var(--white); z-index: 210; display: flex; flex-direction: column;
  transform: translateX(101%); transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -12px 0 40px rgba(0,0,0,0.14);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.cart-header h3 { display: flex; align-items: center; gap: 10px; font-family: "Cormorant Garamond", serif; font-size: 1.4rem; color: var(--navy); }
.ship-meter { padding: 14px 20px; background: var(--cream); border-bottom: 1px solid var(--border); }
.ship-meter p { display: flex; align-items: center; gap: 8px; font-size: 0.79rem; color: var(--navy); margin-bottom: 8px; }
.ship-meter .ico { color: var(--gold-dark); }
.meter { height: 5px; border-radius: 100px; background: var(--border); overflow: hidden; }
.meter span { display: block; height: 100%; width: 0; border-radius: 100px; background: linear-gradient(90deg, var(--gold), var(--gold-dark)); transition: width 0.4s ease; }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 20px; }
.cart-empty { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; color: var(--muted); padding: 56px 12px; font-size: 0.9rem; }
.cart-empty .ico { color: var(--border); }
.cart-item { display: flex; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--border); }
.cart-item-img {
  width: 62px; height: 62px; flex: none; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.7rem; color: var(--navy);
  background: var(--halftone) 0 0 / 10px 10px, var(--cream-dark);
  box-shadow: inset 0 0 0 1px var(--border);
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-info h4 { font-size: 0.9rem; color: var(--navy); font-weight: 600; }
.cart-item-meta { font-size: 0.76rem; color: var(--muted); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.ci-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.qty {
  display: inline-flex; align-items: center; gap: 2px;
  border: 1.5px solid var(--border); border-radius: 100px; padding: 2px;
}
.qty button {
  width: 26px; height: 26px; border: none; background: none; cursor: pointer;
  border-radius: 50%; color: var(--navy); display: grid; place-items: center; font-size: 0.8rem;
  transition: background var(--transition);
}
.qty button:hover { background: var(--cream-dark); }
.qty b { min-width: 24px; text-align: center; font-family: var(--mono); font-size: 0.82rem; font-weight: 600; }
.ci-price { font-family: var(--mono); font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.cart-item-remove {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 0.9rem; padding: 4px; display: grid; align-self: flex-start;
  transition: color var(--transition);
}
.cart-item-remove:hover { color: var(--danger); }
.cart-footer { padding: 16px 20px 22px; border-top: 1px solid var(--border); background: var(--white); }
.coupon-row { display: flex; gap: 8px; margin-bottom: 14px; }
.coupon-row input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 100px;
  font-size: 0.85rem; background: var(--cream); text-transform: uppercase; letter-spacing: 0.05em;
}
.coupon-row input:focus { outline: none; border-color: var(--gold); }
.cart-summary { margin-bottom: 14px; }
.cart-summary > div { display: flex; justify-content: space-between; align-items: center; font-size: 0.87rem; color: var(--muted); padding: 3px 0; }
.cart-summary dd { font-family: var(--mono); color: var(--navy); }
.cart-summary .disc-row dd { color: var(--ok); }
.cart-summary .total-row {
  border-top: 1px dashed var(--border); margin-top: 8px; padding-top: 10px;
  font-size: 1.02rem; color: var(--navy); font-weight: 600;
}
.cart-summary .total-row dd { font-size: 1.15rem; font-weight: 600; }
.cart-note { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.72rem; color: var(--muted); margin-top: 10px; }

/* ── modals (quick view + checkout) ────────────────────── */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.55); backdrop-filter: blur(3px); animation: fade 0.25s ease; }
@keyframes fade { from { opacity: 0; } }
.modal-panel {
  position: relative; background: var(--white); border-radius: 22px;
  width: min(880px, 100%); max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg); animation: pop 0.3s cubic-bezier(0.4,0,0.2,1);
}
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.98); } }
.checkout-panel { width: min(560px, 100%); }

/* quick view */
.quick-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; }
.qv-visual {
  position: relative; display: grid; place-items: center; min-height: 320px;
  font-size: 7rem; color: var(--navy);
  background: var(--halftone) 0 0 / 13px 13px, linear-gradient(145deg, var(--cream-dark), #e9e3d5);
  border-radius: 22px 0 0 22px;
}
.qv-visual .ico { stroke-width: 1 }
.qv-body { padding: 26px 28px 28px; }
.qv-close { position: absolute; top: 12px; right: 12px; z-index: 2; background: rgba(255,255,255,0.9); }
.qv-cat { display: flex; align-items: center; gap: 10px; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gold-dark); font-weight: 600; margin-bottom: 8px; }
.qv-body h3 { font-family: "Cormorant Garamond", serif; font-size: 1.9rem; font-weight: 600; color: var(--navy); line-height: 1.2; margin-bottom: 6px; }
.qv-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.qv-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; font-family: var(--mono); }
.qv-price strong { font-size: 1.6rem; color: var(--navy); font-weight: 600; }
.qv-price del { color: var(--muted); font-size: 0.9rem; }
.opt-block { margin-bottom: 16px; }
.opt-label { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); margin-bottom: 9px; }
.opt-label em { font-style: normal; color: var(--muted); font-weight: 400; letter-spacing: 0; text-transform: none; font-size: 0.8rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  min-width: 42px; padding: 8px 14px; border-radius: 10px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 0.85rem; font-weight: 500; color: var(--navy); cursor: pointer;
  transition: all var(--transition);
}
.chip:hover { border-color: var(--gold); }
.chip.on { background: var(--navy); border-color: var(--navy); color: var(--gold-light); }
.color-chip {
  width: 34px; height: 34px; border-radius: 10px; cursor: pointer; padding: 0;
  border: 2px solid transparent; box-shadow: inset 0 0 0 1px rgba(15,23,42,0.2);
  transition: all var(--transition);
}
.color-chip.on { border-color: var(--gold-dark); transform: scale(1.06); }
.qv-note textarea {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--border);
  border-radius: 10px; background: var(--cream); font-size: 0.87rem; resize: vertical;
}
.qv-note textarea:focus { outline: none; border-color: var(--gold); }
.qv-actions { display: flex; gap: 10px; margin-top: 18px; }
.qv-meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; font-size: 0.78rem; color: var(--muted); }
.qv-meta span { display: inline-flex; align-items: center; gap: 7px; }
.qv-meta .ico { color: var(--gold-dark); }

/* checkout */
.ck-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--border); }
.ck-head h3 { display: flex; align-items: center; gap: 10px; font-family: "Cormorant Garamond", serif; font-size: 1.4rem; color: var(--navy); }
.ck-steps { display: flex; gap: 8px; padding: 16px 22px; background: var(--cream); border-bottom: 1px solid var(--border); }
.ck-steps li {
  flex: 1; display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500; color: var(--muted);
}
.ck-steps li span {
  display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%;
  background: var(--white); box-shadow: inset 0 0 0 1.5px var(--border); font-size: 0.85rem;
  transition: all var(--transition);
}
.ck-steps li.on { color: var(--navy); font-weight: 600; }
.ck-steps li.on span { background: var(--navy); color: var(--gold-light); box-shadow: none; }
.ck-steps li.done span { background: var(--gold); color: var(--navy); box-shadow: none; }
.ck-body { padding: 22px; }
.ck-step { display: none; }
.ck-step.on { display: block; animation: fade 0.25s ease; }
.ck-err { color: var(--danger); font-size: 0.82rem; margin-bottom: 10px; }
.pay-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.pay-opt {
  display: flex; align-items: center; gap: 13px; cursor: pointer;
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 14px;
  transition: all var(--transition);
}
.pay-opt:hover { border-color: var(--gold); }
.pay-opt.on { border-color: var(--navy); background: var(--cream); }
.pay-opt input { position: absolute; opacity: 0; pointer-events: none; }
.po-ico {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: var(--cream-dark); color: var(--gold-dark); font-size: 1.1rem;
  box-shadow: inset 0 0 0 1px var(--border);
}
.po-txt { flex: 1; }
.po-txt strong { display: block; font-size: 0.92rem; color: var(--navy); }
.po-txt span { font-size: 0.78rem; color: var(--muted); }
.po-check { color: var(--navy); opacity: 0; }
.pay-opt.on .po-check { opacity: 1; }
.ck-review { background: var(--cream); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; margin-bottom: 16px; }
.ck-review .rv-line { display: flex; justify-content: space-between; gap: 12px; font-size: 0.85rem; color: var(--muted); padding: 3px 0; }
.ck-review .rv-line b { font-family: var(--mono); font-weight: 500; color: var(--navy); }
.ck-review .rv-total { border-top: 1px dashed var(--border); margin-top: 8px; padding-top: 9px; color: var(--navy); font-weight: 600; }
.ck-review .rv-total b { font-size: 1.05rem; font-weight: 600; }
.ck-actions { display: flex; gap: 10px; }
.ck-secure { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.74rem; color: var(--muted); margin-top: 12px; }
.ck-done { text-align: center; padding: 12px 4px 6px; }
.done-ring {
  display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 16px;
  border-radius: 50%; font-size: 1.7rem; color: var(--ok);
  background: rgba(22,121,76,0.08); box-shadow: inset 0 0 0 1.5px rgba(22,121,76,0.3);
  animation: pop 0.4s cubic-bezier(0.4,0,0.2,1);
}
.ck-done h4 { font-family: "Cormorant Garamond", serif; font-size: 1.7rem; color: var(--navy); margin-bottom: 6px; }
.done-id { font-size: 0.88rem; color: var(--muted); margin-bottom: 4px; }
.done-id strong { font-family: var(--mono); color: var(--navy); letter-spacing: 0.06em; }
.done-sub { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.ck-done .btn { margin-bottom: 10px; }

/* ── toast ─────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--navy); color: var(--white);
  padding: 12px 22px; border-radius: 12px;
  font-size: 0.88rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 9px;
  opacity: 0; transition: all 0.3s ease; z-index: 400;
  pointer-events: none; box-shadow: 0 8px 30px rgba(0,0,0,0.22);
}
.toast .ico { color: var(--gold-light); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
body.locked { overflow: hidden; }

/* ── responsive ────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid, .contact-wrap, .footer-grid { grid-template-columns: 1fr; }
  .collection-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .collection-card.large { grid-row: auto; min-height: 260px; }
  .process-grid, .trust-inner { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-frame { height: 340px; max-width: 380px; margin: 0 auto; }
  .hero-visual { order: -1; }
  .quick-grid { grid-template-columns: 1fr; }
  .qv-visual { border-radius: 22px 22px 0 0; min-height: 220px; font-size: 5rem; }
}
@media (max-width: 720px) {
  .nav {
    position: fixed; top: 114px; left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 18px 24px; gap: 14px; border-bottom: 1px solid var(--border);
    transform: translateY(-130%); opacity: 0; pointer-events: none;
    transition: all 0.3s ease; z-index: 90;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .menu-toggle { display: grid; }
  .desktop-only { display: none; }
  .hero { padding: 44px 0 64px; }
  .section { padding: 64px 0; }
  .process-grid, .trust-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 18px; }
  .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
  .product-image { font-size: 3.2rem; }
  .quick-btn { opacity: 1; transform: none; }
  .modal { padding: 0; align-items: end; }
  .modal-panel { border-radius: 22px 22px 0 0; max-height: 94vh; }
  .qv-visual { border-radius: 22px 22px 0 0; }
  .ck-steps li span { width: 26px; height: 26px; }
  .ck-steps li { font-size: 0.72rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
