/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  background: #fafaf7;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
svg { width: 20px; height: 20px; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, select { font: inherit; color: inherit; }

:root {
  --ink: #14110f;
  --ink-soft: #4a4640;
  --muted: #8a8278;
  --line: #e8e3db;
  --bg: #fafaf7;
  --surface: #ffffff;
  --accent: #b08968;       /* warm taupe */
  --accent-dark: #8a6a4f;
  --rose: #c9a99b;
  --sage: #a8b4a0;
  --gold: #c9a96a;
  --danger: #c0432e;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 10px 30px rgba(20, 17, 15, 0.06);
  --shadow-lg: 0 20px 50px rgba(20, 17, 15, 0.10);
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h4 { font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.eyebrow.accent { color: var(--danger); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost { color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }

.link-arrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.link-arrow:hover { border-color: var(--ink); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--ink);
  color: #e8e3db;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 10px; padding-bottom: 10px;
}
.topbar-msg { opacity: 0.85; }
.currency { display: inline-flex; align-items: center; gap: 8px; }
.currency select {
  background: transparent; border: 0; color: #e8e3db;
  font-size: 0.78rem; cursor: pointer;
}
.currency select option { color: #14110f; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  border-radius: 50%;
  letter-spacing: -0.03em;
}
.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; line-height: 1;
  display: flex; flex-direction: column;
}
.brand-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 4px;
}

.primary-nav {
  display: flex; align-items: center; gap: 32px;
  justify-self: center;
}
.primary-nav a {
  font-size: 0.88rem; font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.primary-nav a:hover { color: var(--ink); border-color: var(--ink); }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background .2s;
}
.icon-btn:hover { background: var(--line); }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--accent); color: #fff;
  font-size: 0.65rem; font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 9px; padding: 0 5px;
  display: grid; place-items: center;
  line-height: 1;
}

.hamburger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); transition: transform .25s, opacity .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Search panel */
.search-panel {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  border-top: 1px solid transparent;
  background: var(--bg);
}
.search-panel.open {
  max-height: 220px;
  border-top: 1px solid var(--line);
}
.search-panel .container { padding-top: 18px; padding-bottom: 22px; }
.search-panel input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color .2s;
}
.search-panel input:focus { border-color: var(--ink); }
.trending { margin-top: 12px; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; }
.trending-label { color: var(--muted); margin-right: 4px; }
.trending a {
  padding: 4px 12px; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-soft); transition: all .2s;
}
.trending a:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
  background:
    radial-gradient(900px 500px at 90% 10%, rgba(201, 169, 155, 0.18), transparent 60%),
    radial-gradient(700px 400px at 10% 90%, rgba(176, 137, 104, 0.12), transparent 60%),
    var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px; align-items: center;
}
.hero-copy p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 1.25rem 0 2rem;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 3rem;
  font-size: 0.82rem;
  color: var(--muted);
}
.hero-trust li {
  position: relative;
  padding-left: 18px;
}
.hero-trust li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}

.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  justify-self: end;
  width: 100%;
}
.hero-card {
  position: absolute;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--bg);
  overflow: hidden;
}
.card-1 { inset: 8% 18% 18% 0; background-image: url("images/na2.png"); background-size: cover; background-position: center; }
.card-2 { inset: 0 0 30% 35%; background-image: url("images/na1.png"); background-size: cover; background-position: center; }
.card-3 { inset: 50% 8% 0 22%; background-image: url("images/lumeglow.png"); background-size: cover; background-position: center; }

.hero-card-label {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(20, 17, 15, 0.88);
  color: #f5ede2;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-card-label-light {
  background: rgba(245, 237, 226, 0.95);
  color: var(--ink);
}

.hero-card-link {
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hero-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(20, 17, 15, 0.20);
}
.hero-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- Featured product ---------- */
.featured {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.featured-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.featured-art {
  position: relative;
  max-width: 480px;
  width: 100%;
}
.gallery-main {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.thumb {
  flex: 0 0 80px;
  width: 80px; height: 80px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #f5ede2;
  padding: 0;
  cursor: pointer;
  transition: border-color .2s, transform .15s;
}
.thumb:hover { transform: translateY(-2px); }
.thumb.active { border-color: var(--accent); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.featured-art svg { width: 100%; height: 100%; display: block; }
.featured-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: linear-gradient(160deg, #f5ede2, #d9c7b8);
}
.featured-badge {
  position: absolute;
  top: 22px; left: 22px;
  background: var(--ink); color: #fff;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}
.featured-copy .lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin: 1.25rem 0 1.5rem;
  max-width: 52ch;
  line-height: 1.65;
}
.featured-copy .ship-callout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 1.5rem;
  padding: 8px 14px;
  background: rgba(168, 180, 160, 0.18);
  border: 1px solid rgba(168, 180, 160, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--ink);
}
.featured-copy .ship-callout svg {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
  flex-shrink: 0;
}
.featured-copy .ship-callout strong {
  font-weight: 600;
  color: var(--ink);
}

.featured-copy .title-sub {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  color: var(--ink-soft);
  letter-spacing: 0;
  margin-top: 0.4rem;
  line-height: 1.35;
}
.featured-copy .product-blurb {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 1rem 0 1.5rem;
  max-width: 60ch;
  line-height: 1.6;
}
.featured-copy .kit-includes {
  display: inline-block;
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.featured-copy .kit-includes span {
  color: var(--accent);
  margin: 0 6px;
  font-weight: 400;
}
.price-block {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.price-now-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 600;
  color: var(--ink); line-height: 1;
}
.price-was-lg {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
}
.price-save {
  background: var(--danger); color: #fff;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.featured-features {
  display: grid; gap: 12px;
  margin-bottom: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.featured-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.featured-features li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 8px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.featured-features strong { color: var(--ink); font-weight: 600; }
.featured-cta { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 820px) {
  .featured-inner { grid-template-columns: 1fr; gap: 40px; }
  .featured-art { margin: 0 auto; }
}

/* ---------- Categories ---------- */
.categories { padding: 30px 0 10px; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cat {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 14px 8px;
  border-radius: var(--radius);
  transition: transform .25s, background .25s;
}
.cat:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow); }
.cat-thumb {
  width: 86px; height: 86px;
  border-radius: 50%;
  background-size: cover; background-position: center;
}
.cat span { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); text-align: center; }
.t1 { background: radial-gradient(circle at 30% 30%, #f1e0d2, #b08968); }
.t2 { background: radial-gradient(circle at 30% 30%, #efe1d6, #8a6a4f); }
.t3 { background: radial-gradient(circle at 30% 30%, #e8dccd, #c9a96a); }
.t4 { background: radial-gradient(circle at 30% 30%, #e9dccf, #a89380); }
.t5 { background: radial-gradient(circle at 30% 30%, #efe6dc, #c9a99b); }
.t6 { background: radial-gradient(circle at 30% 30%, #e0dad1, #6f6a5f); }

/* ---------- Sections ---------- */
.section { padding: 70px 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px; gap: 24px; flex-wrap: wrap;
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card { scroll-margin-top: 100px; }
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-media {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: #f4ece2;
}
.product-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }

.badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--ink); color: #fff;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.badge.sale { background: var(--danger); }
.badge.new { background: var(--sage); color: #14110f; }

.wishlist-btn {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink);
  transition: background .2s, color .2s, transform .2s;
}
.wishlist-btn:hover { background: var(--ink); color: #fff; transform: scale(1.08); }
.wishlist-btn.active { background: var(--danger); color: #fff; }
.wishlist-btn svg { width: 16px; height: 16px; }

.quick-add {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 999px;
  font-size: 0.82rem; font-weight: 500;
  text-align: center;
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s;
}
.quick-add:hover { background: var(--accent-dark); }
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }

.product-body { padding: 18px 18px 22px; }
.product-cat {
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 6px;
}
.product-title {
  font-size: 1rem; font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.4;
}
.product-meta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.price { display: inline-flex; align-items: baseline; gap: 8px; }
.price-now { font-weight: 600; color: var(--ink); font-size: 1.05rem; }
.price-was { color: var(--muted); text-decoration: line-through; font-size: 0.85rem; }
.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 1px; }

/* Product card backgrounds — tinted by product type */
.product-img { position: absolute; inset: 0; display: grid; place-items: center; }
.product-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-svg { display: grid; place-items: center; width: 100%; height: 100%; padding: 18px; box-sizing: border-box; }
.product-svg svg { width: 78%; height: 78%; max-width: 100%; max-height: 100%; }
.product-bg-tube     { background: radial-gradient(circle at 30% 25%, #e8dccd, #b08968); }
.product-bg-box      { background: radial-gradient(circle at 30% 25%, #efe1d6, #8a6a4f); }

/* ---------- Deals & countdown ---------- */
.deals { background: linear-gradient(180deg, #fff 0%, #f5ede2 100%); }
.countdown { display: flex; gap: 10px; }
.countdown > div {
  background: var(--ink); color: #fff;
  width: 58px; padding: 10px 0;
  border-radius: 10px;
  text-align: center;
  display: flex; flex-direction: column; gap: 2px;
}
.countdown strong { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; line-height: 1; }
.countdown span { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.7; }

/* ---------- About ---------- */
.about-strip { padding: 100px 0; background: #fff; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 70px; align-items: center;
}
.about-art {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, #e8d8c5 0%, #b08968 60%, #2f2823 100%);
  box-shadow: var(--shadow-lg);
}
.about-copy p { color: var(--ink-soft); margin: 1.25rem 0 2rem; font-size: 1.05rem; max-width: 56ch; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.stats > div { padding: 18px 0; border-top: 1px solid var(--line); }
.stats strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--ink); line-height: 1; }
.stats span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-top: 6px; display: block; }

/* ---------- Shop Now (Buy Buttons) ---------- */
.shop-now-section {
  background: linear-gradient(180deg, var(--bg) 0%, #f5ede2 100%);
  padding: 80px 0;
}
.shop-now-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.shop-now-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.shop-now-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.shop-now-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.shop-now-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.shop-now-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.shop-now-meta .price-was {
  text-decoration: line-through;
  margin-left: 6px;
  font-size: 0.78rem;
}
.shop-now-card-feature {
  background: linear-gradient(180deg, #fff 0%, #f5ede2 100%);
  border-color: var(--accent);
}
.shop-now-card [id^="product-component-"] {
  width: 100%;
}
.shop-now-grid-single {
  grid-template-columns: minmax(0, 400px);
  justify-content: center;
}
@media (max-width: 900px) {
  .shop-now-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .shop-now-grid { grid-template-columns: 1fr; }
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--ink); color: #f1e6dc;
  padding: 70px 0;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255,255,255,0.7); margin-top: 0.5rem; max-width: 44ch; }
.newsletter-form {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
}
.newsletter-form input {
  flex: 1; min-width: 240px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 999px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.newsletter-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.10); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form .btn-primary { background: var(--accent); }
.newsletter-form .btn-primary:hover { background: #c9a96a; }
.newsletter-form .note { width: 100%; font-size: 0.82rem; color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer { background: #14110f; color: #c9bfb2; padding: 70px 0 24px; }
.site-footer .brand-text, .site-footer .brand-sub { color: #f1e6dc; }
.site-footer .brand-mark { background: #f1e6dc; color: #14110f; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-blurb { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin: 18px 0; max-width: 38ch; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #f1e6dc;
  transition: background .2s, border-color .2s;
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.site-footer h4 { color: #fff; margin-bottom: 18px; }
.site-footer li { font-size: 0.88rem; color: rgba(255,255,255,0.6); padding: 5px 0; transition: color .15s; }
.site-footer li:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; flex-wrap: wrap; gap: 10px; color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-size: 0.88rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 100;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-inner { gap: 40px; }
}
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art {
    aspect-ratio: auto;
    max-width: 100%;
    margin-top: 12px;
  }
  .card-1, .card-2 { display: none; }
  .card-3 {
    display: block;
    position: relative;
    inset: auto;
    aspect-ratio: 16 / 10;
    width: 100%;
  }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .hamburger { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: var(--bg);
    padding: 0 24px;
    gap: 4px;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
  }
  .primary-nav.open {
    max-height: 360px;
    padding: 14px 24px 24px;
    border-bottom-color: var(--line);
  }
  .primary-nav a { padding: 12px 0; width: 100%; font-size: 1rem; }
  .topbar-msg { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 50px 0; }
  .hero { padding: 50px 0 70px; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 460px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}

/* ---------- Product detail page ---------- */
.breadcrumb {
  padding: 22px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
.breadcrumb a:hover { border-bottom-color: var(--ink-soft); }
.breadcrumb span[aria-hidden] { margin: 0 8px; color: var(--muted); }
.breadcrumb .current { color: var(--ink); }

.product-detail { padding-top: 40px; }
.product-detail h1 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin-bottom: 0.5rem;
}

.trust-strip {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.trust-strip div { display: flex; flex-direction: column; gap: 2px; }
.trust-strip strong {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.trust-strip span {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
}

.spec-section { background: #fff; border-top: 1px solid var(--line); }
.spec-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 2px;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.spec-row dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.spec-row dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}

.condition-section {
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.condition-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.condition-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow);
}
.condition-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--ink);
}
.condition-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
.condition-note {
  margin-top: 28px;
  padding: 22px 26px;
  background: #fff;
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}
.condition-note strong { color: var(--ink); font-weight: 600; }

.inquiry-section {
  padding: 80px 0;
  background: var(--ink);
  color: #f5ede2;
}
.inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.inquiry-copy .eyebrow { color: var(--gold); }
.inquiry-copy h2 { color: #fff; margin-bottom: 1rem; }
.inquiry-copy p { color: #d8d2c5; line-height: 1.7; max-width: 42ch; }
.inquiry-meta {
  margin-top: 1.5rem;
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.inquiry-meta li {
  position: relative;
  padding-left: 24px;
  font-size: 0.92rem;
  color: #c8c2b6;
}
.inquiry-meta li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.inquiry-form {
  background: #1c1916;
  border: 1px solid #2a2522;
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8c2b6;
  font-weight: 600;
}
.form-row label .opt {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--muted);
  margin-left: 4px;
}
.form-row input,
.form-row textarea {
  background: #14110f;
  border: 1px solid #2f2a26;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #f5ede2;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color .15s, background .15s;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #181513;
}
.form-row textarea { resize: vertical; min-height: 96px; }
.form-row input.field-error,
.form-row textarea.field-error { border-color: var(--danger); }
.form-hint { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-actions { flex-direction: row; align-items: center; gap: 16px; }

.checkout-cta {
  background: #1c1916;
  border: 1px solid #2a2522;
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.checkout-btn {
  width: 100%;
  justify-content: center;
  padding: 1.05rem 1.5rem;
  font-size: 1rem;
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.checkout-btn:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translateY(-1px);
}
.checkout-note {
  font-size: 0.82rem;
  color: #c8c2b6;
  line-height: 1.55;
  margin: 0;
  text-align: center;
}
.cc-icons-lg {
  justify-content: center;
  gap: 8px;
}
.checkout-policy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 9px 18px;
  border: 1px solid rgba(245, 237, 226, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c8c2b6;
  text-decoration: none;
  background: transparent;
  transition: border-color .15s, color .15s, background .15s;
}
.checkout-policy-btn:hover {
  border-color: #f5ede2;
  color: #fff;
  background: rgba(245, 237, 226, 0.06);
}
.trust-strip a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
.trust-strip a:hover { border-bottom-color: var(--ink-soft); }
.cc-icons-lg .cc-icon {
  width: 38px;
  height: 24px;
}

.apple-pay-btn {
  width: 100%;
  background: #fff;
  color: #000;
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 1.05rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  transition: opacity 0.15s, transform 0.1s;
}
.apple-pay-btn:hover { opacity: 0.92; }
.apple-pay-btn:active { transform: scale(0.99); }
.apple-pay-btn:disabled { opacity: 0.6; cursor: wait; }
.apple-pay-btn svg {
  width: 24px;
  height: 24px;
  margin-top: -2px;
}

.payment-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 4px 0;
}
.payment-divider::before,
.payment-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #2a2522;
}

.form-row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cc-icons {
  display: inline-flex;
  gap: 4px;
}
.cc-icon {
  width: 28px;
  height: 18px;
  border-radius: 3px;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.form-status { font-size: 0.85rem; color: #c8c2b6; }
.form-status.ok { color: var(--sage); }
.form-status.err { color: var(--danger); }

@media (max-width: 900px) {
  .inquiry-inner { grid-template-columns: 1fr; gap: 36px; }
  .condition-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; column-gap: 0; }
}
@media (max-width: 520px) {
  .trust-strip { grid-template-columns: 1fr; gap: 14px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .inquiry-form { padding: 24px; }
  .inquiry-section { padding: 60px 0; }
}

/* ---------- Contact section ---------- */
.contact-section {
  padding: 80px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.contact-copy h2 { margin: 0.4rem 0 1rem; }
.contact-copy p {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0;
}
.contact-grid {
  display: grid;
  gap: 14px;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.contact-item:not(.contact-item-static):hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-value {
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
  word-break: break-all;
}
@media (max-width: 820px) {
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Thank you page ---------- */
.thank-you-section {
  padding: 90px 0 100px;
  background: linear-gradient(180deg, var(--bg) 0%, #fff 100%);
}
.thank-you-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.thank-you-check {
  width: 72px;
  height: 72px;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.thank-you-section h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0.5rem 0 1.25rem;
}
.thank-you-lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 auto 2.5rem;
  max-width: 56ch;
}
.thank-you-card {
  text-align: left;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin: 0 auto 2rem;
  box-shadow: var(--shadow);
}
.thank-you-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 1rem;
  color: var(--ink);
}
.thank-you-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.thank-you-card li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.thank-you-card li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 10px; height: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}
.thank-you-card strong { color: var(--ink); font-weight: 600; }
.thank-you-meta {
  margin: 0 auto 2rem;
  max-width: 56ch;
}
.thank-you-meta p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 0.5rem;
  line-height: 1.6;
}
.thank-you-meta a {
  color: var(--accent-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .15s;
}
.thank-you-meta a:hover { border-bottom-color: var(--accent-dark); }
.thank-you-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Legal section ---------- */
.legal-section {
  padding: 50px 0 60px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  scroll-margin-top: 80px;
}
.legal-head { margin-bottom: 2rem; }
.legal-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 0.3rem;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.legal-grid h4 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.legal-grid p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}
.legal-intro {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 80ch;
  margin: 0 0 2rem;
}
.legal-doc {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
.legal-section-block h4 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.7rem;
}
.legal-section-block p,
.legal-section-block li {
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.legal-section-block p {
  margin: 0 0 0.6rem;
}
.legal-section-block ul {
  margin: 0.4rem 0 0.6rem 1.1rem;
  padding: 0;
}
.legal-section-block li {
  margin-bottom: 4px;
}
.legal-section-block a {
  color: var(--accent-dark);
  border-bottom: 1px solid transparent;
  text-decoration: none;
  transition: border-color .15s;
}
.legal-section-block a:hover { border-bottom-color: var(--accent-dark); }
@media (max-width: 820px) {
  .legal-doc { grid-template-columns: 1fr; gap: 26px; }
}

.trademark-disclaimer {
  padding: 22px 0 26px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.trademark-disclaimer p {
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 8px;
  max-width: 90ch;
}
.trademark-disclaimer p:last-child { margin-bottom: 0; }

.legal-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-decoration: none;
  background: transparent;
  transition: border-color .15s, color .15s, background .15s;
}
.legal-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(20, 17, 15, 0.04);
}
.legal-footnote {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.74rem;
  color: var(--muted);
}
@media (max-width: 820px) {
  .legal-grid { grid-template-columns: 1fr; gap: 22px; }
}

/* ---------- Express checkout summary ---------- */
.summary-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 1.75rem;
  padding: 16px 0;
  border-top: 1px solid #2a2522;
  border-bottom: 1px solid #2a2522;
}
.summary-thumb {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  background: #1c1916;
  flex: 0 0 64px;
}
.summary-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.summary-info strong {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
}
.summary-info span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}
.summary-price {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
}
.summary-totals {
  list-style: none;
  padding: 18px 0 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.summary-totals li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #c8c2b6;
}
.summary-totals li.total {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px solid #2a2522;
  font-size: 1.05rem;
  color: #fff;
  font-weight: 600;
}
.summary-totals li.total span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
}
