/* ============ Maison Chic — Stylesheet (light identity) ============ */

:root {
  --bg: #fdfcfa;
  --bg-alt: #f6f1e6;
  --card-bg: #ffffff;
  --card-bg-hover: #fbf9f4;
  --gold: #b6892f;
  --gold-light: #8a6a24;
  --gold-soft: rgba(182, 137, 47, 0.12);
  --border: rgba(182, 137, 47, 0.28);
  --line: rgba(24, 18, 10, 0.1);
  --line-soft: rgba(24, 18, 10, 0.07);
  --text: #221d14;
  --text-muted: #7d7364;
  --heading: #18140c;
  --danger: #c0392b;
  --whatsapp: #25d366;
  --radius: 2px;
  --radius-lg: 4px;
  --shadow: 0 20px 50px rgba(30, 22, 10, 0.12);
  --maxw: 1240px;
  --header-h: 84px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', system-ui, -apple-system, sans-serif;
  --gold-gradient: linear-gradient(180deg, #cda454 0%, #a3792c 50%, #7a5a1f 100%);
  --gold-gradient-btn: linear-gradient(135deg, #e3c179 0%, #b6892f 100%);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: var(--radius);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold-gradient-btn);
  color: #1c1206;
  font-weight: 600;
}
.btn-gold:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn-outline {
  border-color: rgba(24, 18, 10, 0.22);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: var(--gold-soft); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { filter: brightness(1.05); }
.btn-block { width: 100%; }

/* ============ Header ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(253, 252, 250, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: auto; height: 40px; object-fit: contain; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.25s;
}
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 6px 13px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}
.lang-btn.active { background: var(--gold); color: #1c1206; }

.icon-btn {
  background: transparent;
  border: none;
  color: var(--text);
  position: relative;
  padding: 6px;
  display: flex;
  align-items: center;
}
.icon-btn:hover { color: var(--gold-light); }
.cart-count {
  position: absolute;
  top: -4px; inset-inline-end: -6px;
  background: var(--gold);
  color: #1c1206;
  font-size: 10px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.burger { display: none; }

/* ============ Hero ============ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(253,252,250,0.12) 0%, rgba(253,252,250,0.4) 45%, var(--bg) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; margin: 0 auto; max-width: 780px; padding-top: var(--header-h); }
.hero-eyebrow {
  color: var(--gold-light);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.2;
  color: var(--heading);
  margin-bottom: 22px;
}
.hero-sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero-cta { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold-light);
  opacity: 0.85;
  animation: bounce 2.2s infinite;
  z-index: 2;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

/* ============ Section shared ============ */
.section-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(26px, 4vw, 38px); color: var(--heading); margin-bottom: 20px; }
.center { text-align: center; }

/* ============ Marquee (auto-scrolling showcase) ============ */
.marquee-section {
  padding: 40px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
/* Track scrolls right-to-left; both languages are LTR so no direction flip is needed */
.marquee-section:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  flex: 0 0 auto;
  width: 150px;
  height: 190px;
  margin: 0 10px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  background: #0e0e0e;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.marquee-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.marquee-item img { width: 100%; height: 100%; object-fit: cover; }
.marquee-item-label {
  position: absolute; inset-inline: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(10,8,4,0.88), transparent);
  color: #f4efe4;
  font-size: 11px;
  padding: 18px 10px 8px;
  letter-spacing: 0.3px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 800px) {
  .marquee-item { width: 120px; height: 155px; margin: 0 7px; }
}

/* ============ About ============ */
/* ---------- Shop by type: collection cards ---------- */
.types-section { padding: 90px 0 20px; }
.type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 26px;
  margin-top: 46px;
}
.type-card {
  display: block;
  width: 100%;
  text-align: start;
  padding: 0;
  background: var(--card-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.type-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.type-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.type-media {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #0e0e0e;
}
.type-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.type-card:hover .type-media img { transform: scale(1.05); }
/* No image yet: show the initial rather than an empty grey box */
.type-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, serif);
  font-size: 62px;
  color: var(--gold);
  opacity: 0.5;
}
.type-body { display: block; padding: 18px 20px 20px; }
.type-name {
  display: block;
  font-size: 15.5px;
  color: var(--heading);
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.type-count { display: block; font-size: 12px; color: var(--text-muted); }

@media (max-width: 900px) {
  .types-section { padding: 70px 0 10px; }
  .type-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; margin-top: 32px; }
  .type-body { padding: 13px 14px 15px; }
  .type-name { font-size: 13.5px; }
  .type-count { font-size: 11px; }
  .type-fallback { font-size: 44px; }
}
@media (max-width: 430px) {
  /* Two per row still reads on the narrowest phones; one per row wastes the fold */
  .type-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.about { padding: 110px 0; background: var(--bg-alt); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}
.about-frame {
  aspect-ratio: 1/1;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(182,137,47,0.08), transparent 60%),
    var(--card-bg);
  position: relative;
}
.about-frame::before {
  content: '';
  position: absolute; inset: 18px;
  border: 1px solid rgba(182,137,47,0.35);
}
.about-monogram { width: 60%; opacity: 1; }
.about-body { color: var(--text-muted); font-size: 16px; margin-bottom: 34px; }
.about-stats { display: flex; gap: 44px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num { font-family: var(--font-heading); font-size: 30px; color: var(--gold-light); }
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

.about-social { margin-top: 38px; }
.about-social-label {
  display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-bottom: 14px;
}
.about-social-icons { display: flex; gap: 14px; }
.social-badge {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(24,18,10,0.14);
  transition: transform .25s ease, box-shadow .25s ease;
}
.social-badge:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 10px 24px rgba(24,18,10,0.2); }
.social-badge--instagram {
  background: linear-gradient(45deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
}
.social-badge--snapchat { background: #FFFC00; }
.social-badge--tiktok { background: #010101; }

/* ============ Shop ============ */
.shop { padding: 110px 0 100px; }
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.shop-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 18px;
  min-width: 240px;
  color: var(--text-muted);
}
.shop-search input {
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  color: var(--text);
  width: 100%;
}
.shop-sort {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 9px 16px;
  font-size: 13px;
  color: var(--text-muted);
  outline: none;
}
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

/* ============ Collection chips (product types) ============
   A second filter row under the men/women tabs. Deliberately lighter than the
   tabs above so the visual hierarchy stays: category first, then type. */
.collection-bar {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  padding: 0 4px;
}
/* Sub-collections read as a quieter, secondary row so the hierarchy is obvious at a glance */
.collection-bar-sub {
  margin-bottom: 18px;
}
.collection-bar-sub .collection-chip {
  font-size: 11.5px;
  padding: 5px 14px;
  background: transparent;
  border-style: dashed;
}
.collection-bar-sub .collection-chip.active {
  background: var(--gold-soft);
  border-style: solid;
}
.chip-count {
  opacity: 0.6;
  font-size: 11px;
  margin-inline-start: 3px;
}
.collection-chip {
  background: var(--card-bg);
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 7px 17px;
  border-radius: 30px;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.18s;
}
.collection-chip:hover { border-color: var(--gold); color: var(--gold-light); }
.collection-chip.active {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold-light);
  font-weight: 600;
}
.collection-chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

@media (max-width: 700px) {
  /* On a phone the chips scroll sideways in their own strip instead of
     stacking into five cramped rows that push the products off-screen. */
  .collection-bar {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 34px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .collection-bar::-webkit-scrollbar { display: none; }
  .collection-chip { flex: 0 0 auto; }
  .collection-bar { margin-bottom: 12px; }
  .collection-bar-sub { margin-bottom: 12px; }
}

/* ---------- Facet panel: size, colour, price ---------- */
.facet-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding: 0 4px;
}
.facet-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.18s;
}
.facet-toggle:hover,
.facet-toggle.is-open { border-color: var(--gold); color: var(--gold-light); }
.facet-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.facet-count {
  background: var(--gold);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.result-count { color: var(--text-muted); font-size: 12.5px; }

.facet-panel {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.facet-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.facet-label {
  flex: 0 0 68px;
  font-size: 11.5px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-top: 7px;
}
.facet-chips { display: flex; flex-wrap: wrap; gap: 8px; flex: 1 1 200px; min-width: 0; }
.facet-chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  min-width: 40px;
  padding: 6px 13px;
  border-radius: 6px;
  font-size: 12.5px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.16s;
}
.facet-chip:hover { border-color: var(--gold); }
.facet-chip.active {
  background: var(--gold-soft);
  border-color: var(--gold);
  color: var(--gold-light);
  font-weight: 600;
}
.facet-chip:focus-visible,
.color-swatch:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.color-swatch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 5px 13px 5px 7px;
  border-radius: 30px;
  font-size: 12.5px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.16s;
}
.color-swatch:hover { border-color: var(--gold); }
.color-swatch.active { background: var(--gold-soft); border-color: var(--gold); font-weight: 600; }
/* The ring keeps a near-white swatch (ivory, cream) visible against the card */
.swatch-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
  flex: 0 0 auto;
}

.facet-price { display: flex; align-items: center; gap: 9px; flex: 1 1 200px; }
.facet-price input {
  width: 96px;
  min-width: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 8px 11px;
  border-radius: 6px;
  font-size: 12.5px;
  font-family: inherit;
}
.facet-price input:focus { outline: none; border-color: var(--gold); }
.facet-dash { color: var(--text-muted); }

.facet-clear {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 12.5px;
  font-family: inherit;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px 0;
}

@media (max-width: 700px) {
  .facet-panel { padding: 16px; gap: 14px; }
  /* align-items:flex-start would size these children to max-content, and two number
     inputs report ~170px each — enough to push the page sideways. Stretch instead,
     and reset the flex-basis that becomes a HEIGHT once the axis is vertical. */
  .facet-row { flex-direction: column; gap: 8px; align-items: stretch; }
  .facet-label { flex: 0 0 auto; padding-top: 0; }
  .facet-chips { flex: 0 0 auto; }
  .facet-price { flex: 0 0 auto; width: 100%; }
  /* 42px targets — a 30px chip is a mis-tap waiting to happen on a phone */
  .facet-chip { min-height: 40px; min-width: 46px; }
  .color-swatch { min-height: 40px; }
  .facet-price input { flex: 1 1 0; width: auto; min-height: 40px; }
  .facet-toggle { min-height: 40px; }
}
.filter-tab {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text-muted);
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.filter-tab:hover { border-color: var(--gold); color: var(--gold-light); }
.filter-tab.active { background: var(--gold); border-color: var(--gold); color: #1c1206; font-weight: 600; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow);
}
.product-media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #0e0e0e; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-media img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 14px; inset-inline-start: 14px;
  background: var(--gold);
  color: #1c1206;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.badge-soldout {
  position: absolute;
  top: 14px; inset-inline-end: 14px;
  inset-inline-start: auto;
  background: rgba(10,10,10,0.85);
  color: #f2f0ec;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}
.product-card.is-soldout .product-media img { opacity: 0.55; filter: grayscale(0.3); }
.modal-badge-soldout {
  display: inline-block;
  background: rgba(10,10,10,0.85);
  color: #f2f0ec;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-info { padding: 22px 22px 24px; }
.product-category { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.product-name { font-size: 18px; color: var(--heading); margin-bottom: 10px; min-height: 26px; }

/* Colour dots on a product card — a quick "comes in N colours" cue */
.color-dots { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; min-height: 14px; }
.color-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
  flex: 0 0 auto;
}
.dot-more { font-size: 11px; color: var(--text-muted); margin-inline-start: 2px; }

.product-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.price-current { font-size: 17px; color: var(--gold-light); font-weight: 600; }
.price-old { font-size: 14px; color: var(--text-muted); text-decoration: line-through; opacity: 0.7; }
.product-view-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 11px;
  border-radius: var(--radius);
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.product-card:hover .product-view-btn { border-color: var(--gold); background: var(--gold-soft); color: var(--gold-light); }

.empty-state { text-align: center; color: var(--text-muted); padding: 40px 0; }

/* ============ Testimonials ============ */
.testimonials { padding: 100px 0 110px; background: var(--bg-alt); }
.testimonial-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: 0 16px 34px rgba(24,18,10,0.08); }
.testimonial-comment {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.85;
  /* Quotation marks framing the review, in the brand's gold — a light decorative touch
     that reads instantly as "this is a quote" without needing an icon. */
  position: relative;
  padding-top: 6px;
}
.testimonial-comment::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 46px;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: -22px;
  left: -4px;
  line-height: 1;
}
.testimonial-footer { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial-avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
}
.testimonial-who { display: flex; flex-direction: column; gap: 4px; }
.testimonial-name { font-size: 13.5px; font-weight: 600; color: var(--heading); }
.testimonial-stars { display: flex; gap: 2px; color: var(--line); }
.testimonial-stars .star.is-filled { color: var(--gold); }

@media (max-width: 900px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============ Footer ============ */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}
.social-icons a:hover { color: var(--gold-light); border-color: var(--gold-light); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .brand-logo { width: auto; height: 46px; object-fit: contain; }
.footer-tagline { color: var(--text-muted); font-size: 14px; max-width: 280px; }
.footer-col h4 { color: var(--heading); font-size: 14px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--text-muted); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.admin-link { opacity: 0.7; font-size: 12px !important; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 28px;
  color: var(--text-muted);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 22px;
  flex-wrap: wrap;
}
/* French-origin badge: flag + line, an identity touch at the foot of the site */
.footer-origin {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}
.flag-fr {
  display: block;
  flex-shrink: 0;
  border-radius: 2px;
  border: 1px solid var(--line);
  box-shadow: 0 1px 3px rgba(30, 22, 10, 0.12);
}
.footer-copy { display: inline-flex; align-items: center; gap: 5px; flex-wrap: wrap; }
@media (max-width: 640px) {
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column-reverse; gap: 12px; }
}

/* ============ Modal (shared) ============ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(24, 18, 10, 0.55);
  backdrop-filter: blur(4px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-close {
  position: absolute;
  top: 16px; inset-inline-end: 16px;
  background: rgba(24, 18, 10, 0.55);
  border: none;
  color: #fff;
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}
.modal-close:hover { background: var(--gold); color: #1c1206; }

/* Product modal */
.product-modal {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 88vh;
  overflow: auto;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-overlay.open .product-modal { transform: translateY(0) scale(1); }
.product-modal-grid { display: grid; grid-template-columns: 1fr 1fr; }
.product-modal-media { position: relative; background: #0e0e0e; }
.product-modal-media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.product-modal-info { padding: 40px; display: flex; flex-direction: column; }
.modal-category { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.modal-name { font-size: 27px; color: var(--heading); margin-bottom: 14px; }
.modal-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.modal-price .price-current { font-size: 24px; }
.modal-price .price-old { font-size: 16px; }
.modal-desc { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 26px; }
.modal-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; }
.modal-colors { margin-bottom: 22px; }
.modal-color-list { display: flex; flex-wrap: wrap; gap: 10px; }
.modal-color {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px 13px 5px 7px;
  font-size: 13px;
  color: var(--text);
}
.modal-color .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.22);
  flex: 0 0 auto;
}
.modal-sizes { margin-bottom: 22px; }
.size-options { display: flex; flex-wrap: wrap; gap: 10px; }
.size-opt {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  min-width: 44px;
  padding: 9px 12px;
  border-radius: var(--radius);
  font-size: 13px;
  transition: all 0.2s;
}
.size-opt:hover { border-color: var(--gold); }
.size-opt.selected { background: var(--gold); border-color: var(--gold); color: #1c1206; font-weight: 600; }
.size-opt.unavailable {
  opacity: 0.45;
  cursor: not-allowed;
  text-decoration: line-through;
  border-color: var(--line-soft);
}
.size-opt.unavailable:hover { border-color: var(--line-soft); }
.btn-block[disabled] { opacity: 0.5; cursor: not-allowed; }
.modal-soldout-note {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 10px 0;
}
.modal-qty { margin-bottom: 26px; }
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.qty-control button {
  background: transparent; border: none; color: var(--text);
  width: 38px; height: 38px; font-size: 18px;
}
.qty-control button:hover { background: var(--gold-soft); color: var(--gold-light); }
.qty-control span { width: 42px; text-align: center; font-size: 15px; }
.modal-note { color: var(--danger); font-size: 13px; margin-top: 10px; text-align: center; }

/* ============ Cart Drawer ============ */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(24, 18, 10, 0.4);
  z-index: 400;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; inset-inline-end: 0;
  width: min(420px, 100%);
  height: 100%;
  background: var(--bg);
  border-inline-start: 1px solid var(--border);
  z-index: 450;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.drawer-header h3 { font-size: 19px; color: var(--heading); }
.drawer-header .modal-close { position: static; background: var(--line-soft); color: var(--text); }
.drawer-header .modal-close:hover { background: var(--gold); color: #1c1206; }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 26px; }
.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.cart-item img { width: 68px; height: 82px; object-fit: cover; border-radius: var(--radius); }
.cart-item-info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-item-name { font-size: 14px; color: var(--heading); }
.cart-item-meta { font-size: 12px; color: var(--text-muted); }
.cart-item-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.cart-item-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: var(--radius); }
.cart-item-qty button { background: transparent; border: none; color: var(--text); width: 26px; height: 26px; font-size: 14px; }
.cart-item-qty span { width: 24px; text-align: center; font-size: 13px; }
.cart-item-remove { color: var(--danger); font-size: 12px; background: none; border: none; }
.cart-item-price { font-size: 13px; color: var(--gold-light); white-space: nowrap; }
#cartEmpty { padding: 40px 26px; }
.drawer-footer { padding: 22px 26px 26px; border-top: 1px solid var(--line); }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 16px; color: var(--heading); margin-bottom: 18px; }
.cart-subtotal span:last-child { color: var(--gold-light); font-weight: 600; }

/* ============ Checkout modal ============ */
.checkout-modal {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.modal-overlay.open .checkout-modal { transform: translateY(0) scale(1); }
.checkout-modal h3 { font-size: 23px; color: var(--heading); margin-bottom: 8px; }
.checkout-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 26px; }
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.checkout-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: var(--text-muted); }
.checkout-form input, .checkout-form textarea {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  resize: vertical;
}
.checkout-form input:focus, .checkout-form textarea:focus { outline: none; border-color: var(--gold); }
.checkout-summary {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-muted);
  max-height: 160px;
  overflow-y: auto;
}
.checkout-summary-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line-soft);
}
.checkout-summary-row:last-of-type { border-bottom: none; }
.checkout-summary-item { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.checkout-summary-item .csr-name { color: var(--text); font-size: 13px; overflow-wrap: break-word; }
.checkout-summary-item .csr-meta { font-size: 11.5px; color: var(--text-muted); }
.checkout-summary-row .csr-price { white-space: nowrap; flex-shrink: 0; color: var(--text); font-weight: 500; }
.checkout-summary-total { display: flex; justify-content: space-between; margin-top: 8px; padding-top: 10px; border-top: 1px solid var(--line); color: var(--gold-light); font-weight: 600; }

/* ============ Toast ============ */
.toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--gold);
  color: #1c1206;
  padding: 13px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-frame { max-width: 320px; margin: 0 auto; }
  .product-modal-grid { grid-template-columns: 1fr; }
  .product-modal-media img { min-height: 260px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 800px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-info { padding: 14px; }
  .product-name { font-size: 14px; min-height: auto; }
  .price-current { font-size: 14px; }
  .container { padding: 0 18px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .shop-search { min-width: 0; flex: 1; }
}

/* ===== Mobile nav (drawer style) ===== */
.main-nav.mobile-open {
  display: flex;
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(253,252,250,0.98);
  flex-direction: column;
  padding: 24px 28px;
  gap: 20px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(24,18,10,0.08);
}
