/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --gold: #c9a465;
  --gold-light: #e2c688;
  --gold-dark: #9e7d43;
  --text: #ffffff;
  --text-muted: #9a9488;
  --border: #2a2a2a;
  --card-bg: #141414;
  --red: #c0392b;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }
input, select { font-family: var(--font-body); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--gold-dark);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}
.ticker-track {
  display: inline-block;
  animation: ticker 28s linear infinite;
}
.ticker-track span { padding: 0 48px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 300;
  color: #ffffff;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo span { color: var(--text-muted); font-size: 12px; display: block; font-family: var(--font-body); letter-spacing: 0.12em; text-transform: uppercase; }
#nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(201,164,101,0.07); }
.nav-link.exclusive-link { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.cart-btn {
  position: relative;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.cart-btn:hover { color: var(--gold); border-color: var(--gold-dark); background: rgba(201,164,101,0.06); }
.cart-count {
  background: var(--gold);
  color: #000;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 101;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  padding: 100px 20px 80px;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,164,101,0.08) 0%, transparent 65%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a465' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11.5px;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: none;
  letter-spacing: 0.04em;
  transition: background var(--transition), transform var(--transition);
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--gold-dark);
  letter-spacing: 0.04em;
  transition: background var(--transition), border-color var(--transition);
  display: inline-block;
}
.btn-outline:hover { background: rgba(201,164,101,0.08); border-color: var(--gold); }

/* ===== SECTION ===== */
.section { padding: 72px 20px; max-width: 1200px; margin: 0 auto; }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 36px; gap: 16px; flex-wrap: wrap; }
.section-title { font-family: var(--font-head); font-size: clamp(24px, 3vw, 36px); color: var(--text); }
.section-title span { color: var(--gold); }
.section-link { color: var(--gold); font-size: 13.5px; font-weight: 500; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }
.section-subtitle { color: var(--text-muted); font-size: 14px; margin-top: -24px; margin-bottom: 32px; }

/* ===== BRAND STRIP ===== */
.brand-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.brand-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 24s linear infinite;
  padding: 14px 0;
}
.brand-name {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(154,148,136,0.55);
  padding: 0 30px;
  transition: color 0.2s;
}
.brand-sep { color: var(--gold-dark); opacity: 0.4; font-size: 8px; flex-shrink: 0; }

/* ===== TRUST TICKER ===== */
.trust-bar {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 18px 0;
}
.trust-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 36px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.trust-item .dot { color: var(--gold); font-size: 18px; line-height: 1; }

/* ===== PRODUCT GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}
.product-card:hover { border-color: var(--gold-dark); transform: translateY(-3px); }
.product-card.out-of-stock { opacity: 0.6; }
.card-img {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg3);
  overflow: hidden;
}
.card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .card-img img { transform: scale(1.04); }
.card-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 40px;
}
.tag-badges { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 4px; }
.tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 3px 7px;
  line-height: 1;
}
.tag-new { background: #1a5c2a; color: #4caf50; }
.tag-restocked { background: #1a3c5c; color: #4a9fd4; }
.tag-limited { background: #5c3a1a; color: #d4894a; }
.tag-discontinued { background: #3a1a1a; color: #d44a4a; }
.tag-exclusive { background: #3a2a0a; color: var(--gold); }
.oos-badge { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; }
.oos-badge span { background: rgba(0,0,0,0.8); color: var(--text-muted); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: 4px; border: 1px solid var(--border); }
.card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-brand { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; }
.card-name { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.3; flex: 1; }
.card-from { font-size: 12.5px; color: var(--text-muted); }
.card-from strong { color: var(--text); font-size: 14px; }
.card-footer { padding: 0 14px 14px; display: flex; flex-direction: column; gap: 8px; }
.size-select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 13px;
  padding: 7px 10px;
  outline: none;
  transition: border-color var(--transition);
}
.size-select:focus { border-color: var(--gold-dark); }

/* ===== SIZE PILLS ===== */
.size-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.size-pill {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  font-family: var(--font-body);
  line-height: 1;
}
.size-pill:hover { border-color: var(--gold-dark); color: var(--text); }
.size-pill.active { border-color: var(--gold-dark); background: rgba(201,164,101,0.1); color: var(--gold); }
.card-price-live { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; display: block; }

.add-to-cart-btn {
  width: 100%;
  background: transparent;
  border: 1px solid var(--gold-dark);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  padding: 9px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.add-to-cart-btn:hover { background: var(--gold); color: #000; }
.add-to-cart-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ===== FILTERS (SHOP PAGE) ===== */
.shop-layout { display: flex; gap: 28px; align-items: flex-start; }
.filters-sidebar {
  width: 220px;
  flex-shrink: 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-color: #222 transparent;
  scrollbar-width: thin;
}
.filters-sidebar::-webkit-scrollbar { width: 4px; }
.filters-sidebar::-webkit-scrollbar-track { background: transparent; }
.filters-sidebar::-webkit-scrollbar-thumb { background: #222; border-radius: 4px; }
.filter-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.filter-group { margin-bottom: 20px; }
.filter-group label { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); padding: 4px 0; cursor: pointer; }
.filter-group label:hover { color: var(--text); }
.filter-group input[type=checkbox] { accent-color: var(--gold); }
.filter-group select, .filter-group input[type=text] {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
}
.filter-group input[type=text]::placeholder { color: var(--text-muted); }
.filter-group select:focus, .filter-group input:focus { border-color: var(--gold-dark); }
.filter-clear { font-size: 12px; color: var(--text-muted); text-decoration: underline; cursor: pointer; background: none; border: none; color: var(--gold-dark); }
.filter-clear:hover { color: var(--gold); }
.shop-main { flex: 1; min-width: 0; }
.shop-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.result-count { font-size: 13px; color: var(--text-muted); }
.filter-toggle-btn { display: none; }
.sort-select {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.04em;
}
.sort-select:focus { border-color: var(--gold); }

/* Buyer info form in cart */
.buyer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.buyer-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.buyer-field label {
  display: block;
  font-size: 12.5px;
  color: #9a9488;
  margin-bottom: 5px;
}
.buyer-field input,
.buyer-field textarea {
  width: 100%;
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 11px;
  box-sizing: border-box;
  resize: none;
  outline: none;
  transition: border-color var(--transition);
}
.buyer-field input:focus,
.buyer-field textarea:focus { border-color: var(--gold); }
.buyer-field input.field-error,
.buyer-field textarea.field-error { border-color: #e05555; }

.search-bar {
  flex: 1;
  max-width: 320px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 9px 14px;
  font-size: 13.5px;
  outline: none;
  transition: border-color var(--transition);
}
.search-bar::placeholder { color: var(--text-muted); }
.search-bar:focus { border-color: var(--gold-dark); }
.no-results { text-align: center; padding: 60px 20px; color: var(--text-muted); font-size: 15px; }

/* ===== EXCLUSIVE PAGE BANNER ===== */
.exclusive-banner {
  background: linear-gradient(135deg, #1a1000 0%, #0a0800 100%);
  border: 1px solid var(--gold-dark);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.exclusive-banner .icon { font-size: 28px; flex-shrink: 0; }
.exclusive-banner h3 { font-family: var(--font-head); font-size: 18px; color: var(--gold); margin-bottom: 6px; }
.exclusive-banner p { font-size: 13.5px; color: var(--text-muted); }

/* ===== CART PAGE ===== */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: flex-start; }
.cart-items-list { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.cart-item-info .brand { font-size: 10.5px; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; }
.cart-item-info .name { font-size: 14px; font-weight: 600; margin: 2px 0; }
.cart-item-info .size-price { font-size: 12.5px; color: var(--text-muted); }
.cart-item-controls { display: flex; align-items: center; gap: 10px; }
.qty-control { display: flex; align-items: center; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.qty-btn { background: var(--bg3); border: none; color: var(--text); width: 30px; height: 30px; font-size: 16px; transition: background var(--transition); }
.qty-btn:hover { background: var(--border); }
.qty-val { width: 34px; text-align: center; font-size: 14px; font-weight: 600; background: var(--bg2); border: none; color: var(--text); }
.remove-btn { background: none; border: none; color: var(--text-muted); font-size: 18px; padding: 4px; transition: color var(--transition); }
.remove-btn:hover { color: var(--red); }
.item-subtotal { font-size: 14px; font-weight: 700; color: var(--gold); white-space: nowrap; }
.cart-empty { text-align: center; padding: 80px 20px; color: var(--text-muted); }
.cart-empty h2 { font-family: var(--font-head); font-size: 24px; color: var(--text); margin-bottom: 12px; }
.cart-summary {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 84px;
}
.cart-summary h3 { font-family: var(--font-head); font-size: 18px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 12px; color: var(--text-muted); }
.summary-row.total { font-size: 16px; color: var(--text); font-weight: 700; border-top: 1px solid var(--border); padding-top: 14px; margin-top: 4px; }
.delivery-select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  padding: 9px 10px;
  font-size: 13.5px;
  outline: none;
  margin-bottom: 16px;
}
.delivery-select:focus { border-color: var(--gold-dark); }
.advance-note {
  background: rgba(201,164,101,0.07);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 12.5px;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.checkout-btn {
  width: 100%;
  padding: 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  border: none;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.checkout-btn:hover { transform: translateY(-1px); }
.checkout-wa { background: #25d366; color: #000; }
.checkout-wa:hover { background: #20c45c; }
.checkout-ms { background: var(--bg3); color: var(--text); border: 1px solid var(--border) !important; }
.checkout-ms:hover { background: var(--border); }
.messenger-note {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}
.cart-policy { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 14px; font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* ===== ABOUT ME SECTION ===== */
.about-me-section {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 72px 20px;
}
.about-me-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.about-me-img-wrap {
  position: sticky;
  top: 80px;
}
.about-me-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 3/4;
  display: block;
}
.about-me-img-placeholder {
  display: none;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg3);
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 72px;
  color: var(--gold-dark);
}
.about-me-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-me-heading {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
}
.about-me-heading em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.about-me-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-me-text p strong {
  color: var(--text);
  font-weight: 600;
}
.about-me-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.about-me-quote {
  border-left: 3px solid var(--gold);
  margin: 24px 0;
  padding: 16px 20px;
  background: var(--bg2);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
}
@media (max-width: 680px) {
  .about-me-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .about-me-img-wrap { position: static; }
  .about-me-img, .about-me-img-placeholder {
    max-width: 220px;
    margin: 0 auto;
    aspect-ratio: 1;
    border-radius: 50%;
  }
}

/* ===== ABOUT / POLICIES PAGE ===== */
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.policy-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.policy-card h3 { font-family: var(--font-head); font-size: 16px; color: var(--gold); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.policy-card p, .policy-card li { font-size: 13.5px; color: var(--text-muted); line-height: 1.7; }
.policy-card ul { padding-left: 4px; }
.policy-card li { margin-bottom: 4px; }
.policy-card li::before { content: '—'; color: var(--gold-dark); margin-right: 8px; }
.about-hero { text-align: center; padding: 60px 20px 32px; }
.about-hero h1 { font-family: var(--font-head); font-size: clamp(28px, 4vw, 48px); color: var(--text); margin-bottom: 14px; }
.about-hero h1 span { color: var(--gold); }
.about-hero p { color: var(--text-muted); max-width: 540px; margin: 0 auto; font-size: 15px; }
.pickup-locations { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.pickup-badge { background: var(--bg3); border: 1px solid var(--border); border-radius: 6px; padding: 5px 12px; font-size: 12.5px; color: var(--gold); font-weight: 500; }
.contact-row { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  border: none;
  transition: background var(--transition);
}
.contact-wa { background: #25d366; color: #000; }
.contact-wa:hover { background: #20c45c; }
.contact-ms { background: #0084ff; color: #fff; }
.contact-ms:hover { background: #006fd6; }
.contact-fb { background: #1877f2; color: #fff; }
.contact-fb:hover { background: #1465d6; }

/* ===== STATS ===== */
.stats-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 20px;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  margin-top: 60px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 20px 28px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo { margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 16px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--text-muted);
  transition: color var(--transition), border-color var(--transition);
}
.social-link:hover { color: var(--gold); border-color: var(--gold-dark); }
.footer-col h4 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); font-weight: 600; margin-bottom: 14px; }
.footer-col a { display: block; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; transition: color var(--transition); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== TOAST ===== */
#toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--gold);
  color: #000;
  font-size: 13.5px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  z-index: 9999;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}
#toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ===== DIVIDER ===== */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* ===== CARD FRAGRANCE NOTES PANEL ===== */
.details-toggle {
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 10.5px;
  padding: 8px 12px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  font-family: var(--font-body);
  text-align: center;
  display: block;
}
.details-toggle:hover { color: var(--gold); }
.card-details {
  display: none;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}
.card-details.open { display: block; }
.notes-section { margin-bottom: 8px; }
.notes-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 2px;
}
.notes-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.accords-row { display: flex; flex-wrap: wrap; gap: 4px; margin: 8px 0 6px; }
.accord-pill {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px 9px;
  font-size: 10.5px;
  color: var(--text-muted);
}
.family-text { font-size: 11px; color: var(--gold); opacity: 0.7; font-style: italic; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
  .shop-layout { flex-direction: column; }
  .filters-sidebar {
    width: 100%;
    position: static;
    max-height: none;
    overflow: visible;
    display: none;
  }
  .filters-sidebar.sidebar-open { display: block; }
  .filter-toggle-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 16px;
    cursor: pointer;
    letter-spacing: 0.04em;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  #nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    justify-content: center;
    align-items: center;
    z-index: 100;
    gap: 6px;
  }
  #nav-menu.open { display: flex; }
  #nav-menu .nav-link { font-size: 18px; padding: 12px 24px; }
  .burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 72px 16px 56px; }
  .section { padding: 52px 16px; }
  .cart-item { grid-template-columns: 1fr; }
  .cart-item-controls { justify-content: space-between; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .card-name { font-size: 12.5px; }
  .card-body { padding: 10px; gap: 4px; }
  .card-footer { padding: 0 10px 10px; }
}
@media (max-width: 360px) {
  .product-grid { grid-template-columns: 1fr; }
}
