/* ============================================================
   TASHY KOLLECTIONS — Global Stylesheet
   Theme: Black & Rose Gold
   ============================================================ */

/* ---------- UTILITY BAR (Language / Currency) ---------- */
.utility-bar {
  background: #111;
  border-bottom: 1px solid rgba(201,149,108,0.15);
  padding: 6px 0;
  display: none; /* lang/currency moved to nav dropdown */
}
.utility-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.utility-group {
  display: flex;
  align-items: center;
  gap: 6px;
}
.utility-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 2px;
}
.util-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.util-btn:hover { color: var(--rose-gold); border-color: rgba(201,149,108,0.3); }
.util-btn.active {
  color: var(--rose-gold);
  border-color: var(--rose-gold);
  background: rgba(201,149,108,0.1);
}
.util-divider { color: rgba(255,255,255,0.15); font-size: 0.75rem; }

/* ---------- FULL-WIDTH HERO ---------- */
.hero--fw {
  width: 100%;
  background: linear-gradient(135deg, #0d0d0d 0%, #1b0e07 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;   /* stack: grid on top, CTAs below */
}

/* TOP GRID — text col | images col, both same height */
.hero-fw-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: stretch;     /* both columns grow to match each other */
}

/* Left column: eyebrow + h1 + sub — centred vertically */
.hero-fw-text {
  padding: 52px max(24px, calc((100vw - 1280px) / 2 + 48px)) 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Right column: images panel — matches text column height exactly */
.hero-fw-images {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 52px 32px 36px 0; /* same top & bottom as .hero-fw-text */
}

/* Soft left-edge blend into the dark background */
.hero-fw-images::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 22%;
  background: linear-gradient(to right, #0d0d0d 0%, rgba(13,13,13,0.45) 55%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
.hero-fw-images::after { display: none; }

/* Two-image row fills the full column height */
.hero-img-row {
  display: flex;
  gap: 14px;
  align-items: stretch;
  width: 100%;
  position: relative;
  z-index: 4;
}

/* Each card — equal width, height = full column */
.hero-img-card {
  flex: 1 1 0;
  min-width: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,149,108,0.22);
  background: #1c1210;
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;  /* slide up so product labels are fully visible */
  display: block;
}

/* BOTTOM: CTAs + proofs below the grid — centred */
.hero-fw-bottom {
  padding: 0 max(24px, calc((100vw - 1280px) / 2 + 48px)) 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Platinum card — show full image so "Kenra Professional" label is visible */
.hero-img-card:last-child {
  background: #ebebeb;   /* matches the light grey of the platinum.webp background */
}
.hero-img-card:last-child img {
  object-fit: contain;
  object-position: center top;
}

/* Legacy classes — hidden */
.hero-img-back, .hero-img-front { display: none; }

/* ── Responsive ─────────────────────────────── */
@media (max-width: 900px) {
  .hero-fw-inner { grid-template-columns: 1fr; }
  .hero-fw-text {
    padding: 40px 24px 24px;
    text-align: center;
    align-items: center;
  }
  .hero-eyebrow { text-align: center; }
  .hero-fw-text h1,
  .hero-fw-text p { text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-fw-images {
    padding: 0 16px 20px;
    min-height: 180px;
  }
  .hero-fw-images::before { display: none; }
  .hero-fw-bottom { padding: 0 24px 40px; }
  .hero-img-row { gap: 10px; }
}
@media (max-width: 600px) {
  .hero-fw-images { min-height: 140px; padding: 0 12px 16px; }
  .hero-img-row { gap: 8px; }
}

/* ---------- CSS Variables ---------- */
:root {
  --black:        #0d0d0d;
  --black-soft:   #1a1a1a;
  --black-card:   #222222;
  --rose-gold:    #c9956c;
  --rose-light:   #e8b89a;
  --rose-pale:    #fdf0e8;
  --white:        #ffffff;
  --off-white:    #faf8f6;
  --grey-light:   #f4f4f4;
  --grey-mid:     #999999;
  --grey-dark:    #555555;
  --gold-accent:  #d4a853;
  --success:      #3a9e6d;
  --error:        #c0392b;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  --radius:       8px;
  --radius-lg:    16px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.14);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.2);

  --nav-height:   68px;
  --max-width:    1280px;
  --transition:   0.25s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

/* Prevent horizontal / side-scroll from any stray wide element.
   overflow-x: clip doesn't create a scroll container, so the sticky header keeps working
   (overflow-x: hidden is the fallback for older browsers). */
html, body { max-width: 100%; overflow-x: hidden; }
@supports (overflow: clip) { html, body { overflow-x: clip; } }

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--grey-dark); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--black);
  margin-bottom: 0.25rem;
}
.section-sub {
  color: var(--grey-mid);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* ---------- Layout Helpers ---------- */
.container { width: 100%; max-width: 100%; margin: 0 auto; padding: 0 clamp(20px, 4vw, 72px); }
.container--narrow { max-width: 1100px; }
.section    { padding: 72px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--pale { background: var(--rose-pale); }
.section--grey { background: var(--grey-light); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex    { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ---------- LOGO SVG ---------- */
.logo-svg { display: block; vertical-align: middle; }

/* ---------- ANNOUNCEMENT BAR ---------- */
.announcement-bar {
  background: var(--black);
  color: var(--rose-light);
  text-align: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  padding: 10px 16px;
  font-weight: 500;
}
.announcement-bar a { color: var(--rose-gold); text-decoration: underline; }

/* ---------- HEADER / NAV ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  overflow: visible; /* dropdowns must still show below */
}

.header-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  gap: 12px;
  /* Do NOT set overflow:hidden here — that would clip dropdown menus.
     Nav overflow is handled by .header-nav below. */
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 8px;
}
.header-nav  {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: 2px; flex-wrap: nowrap; }
.nav-item { position: relative; flex-shrink: 0; }

.nav-link {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  display: block;
}
.nav-link:hover { color: var(--rose-gold); background: var(--rose-pale); }
.nav-link.active { color: var(--rose-gold); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 520px;
  padding: 24px;
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 24px;
  z-index: 999;
}
.nav-item:hover .dropdown { display: grid; }

.dropdown-col h5 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 700;
}
.dropdown-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--grey-dark);
  padding: 4px 0;
  transition: color var(--transition);
}
.dropdown-col a:hover { color: var(--rose-gold); }

/* Header action icons */
.header-action-btn {
  background: none;
  border: none;
  color: var(--black);
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}
.header-action-btn:hover { color: var(--rose-gold); }
.cart-count {
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 1px 5px;
  margin-left: 4px;
}

.wholesale-nav-badge {
  background: var(--rose-gold);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 6px;
}

/* Mobile hamburger */
.mobile-menu-btn { display: none; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--black-soft);
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(201,149,108,0.25);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.trust-item svg { color: var(--rose-gold); flex-shrink: 0; }

/* ---------- HERO ---------- */
.hero {
  background: linear-gradient(135deg, var(--black) 55%, #2a1a12 100%);
  color: var(--white);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,149,108,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--rose-gold); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.hero-proofs {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.hero-proof svg { color: var(--rose-gold); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  border: 2px solid var(--rose-gold);
}
.btn-primary:hover { background: var(--rose-light); border-color: var(--rose-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,149,108,0.4); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { border-color: var(--rose-gold); color: var(--rose-gold); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline:hover { background: var(--black); color: var(--white); }

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
}
.btn-dark:hover { background: var(--black-soft); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-sm { padding: 9px 18px; font-size: 0.78rem; }
.btn-lg { padding: 17px 36px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- CONCERN TILES ---------- */
.concern-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.concern-tile {
  background: var(--white);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  padding: 16px 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.concern-tile:hover {
  border-color: var(--rose-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.concern-tile .icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.concern-tile h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--black);
}
.concern-tile p {
  font-size: 0.7rem;
  color: var(--grey-mid);
  margin-top: 3px;
}

/* ---------- PRODUCT CARDS ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.product-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--grey-light);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--black);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}
.product-badge.new  { background: var(--rose-gold); }
.product-badge.sale { background: var(--error); }

.product-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.product-brand  { font-size: 0.72rem; color: var(--rose-gold); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.product-name   { font-size: 0.93rem; font-weight: 600; color: var(--black); margin-bottom: 6px; line-height: 1.4; }
.product-tags   { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.product-tag    { background: var(--rose-pale); color: var(--rose-gold); font-size: 0.68rem; font-weight: 600; padding: 3px 8px; border-radius: 999px; }

.product-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 10px; }
.stars          { color: var(--gold-accent); font-size: 0.8rem; letter-spacing: 1px; }
.rating-count   { font-size: 0.75rem; color: var(--grey-mid); }

.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--grey-light); }
.product-price  { font-size: 1.05rem; font-weight: 700; color: var(--black); }
.product-price .original { text-decoration: line-through; color: var(--grey-mid); font-size: 0.85rem; font-weight: 400; margin-left: 6px; }
.product-size   { font-size: 0.75rem; color: var(--grey-mid); }

.quick-add-btn  {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.quick-add-btn:hover { background: var(--rose-gold); }

/* ---------- CATEGORY CARDS ---------- */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.category-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.category-card:hover img { transform: scale(1.06); }
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.category-card-overlay h3 { color: var(--white); font-size: 1.2rem; }
.category-card-overlay span { color: var(--rose-light); font-size: 0.8rem; margin-top: 4px; display: block; }

/* ---------- WHOLESALE BANNER ---------- */
.wholesale-banner {
  background: linear-gradient(135deg, var(--black) 0%, #1f0e06 100%);
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid rgba(201,149,108,0.3);
}
.wholesale-banner-text h2 { color: var(--white); margin-bottom: 10px; }
.wholesale-banner-text h2 span { color: var(--rose-gold); }
.wholesale-banner-text p { color: rgba(255,255,255,0.65); max-width: 460px; }
.wholesale-banner-cta { display: flex; gap: 12px; flex-shrink: 0; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 10px 0 16px; line-height: 1.65; }

/* Footer brand name */
.footer-co-name {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  line-height: 1.15;
}
.footer-co-main {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.footer-co-sub {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--rose-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 10px 0 16px; line-height: 1.65; }
.footer-address { font-style: normal; font-size: 0.82rem; color: rgba(255,255,255,0.6); margin: 0 0 16px; line-height: 1.6; max-width: 240px; }
.footer-address svg { color: var(--rose-gold); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--rose-gold); color: var(--rose-gold); }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 10px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--rose-gold); }

.footer-newsletter input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  width: 100%;
  margin-bottom: 10px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
.footer-newsletter input:focus { border-color: var(--rose-gold); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.35); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-payments { display: flex; gap: 8px; }
.payment-icon {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, #1a0f0a 100%);
  color: var(--white);
  padding: 64px 0;
  border-bottom: 3px solid var(--rose-gold);
}
.page-hero h1 { margin-bottom: 10px; }
.page-hero h1 span { color: var(--rose-gold); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--rose-gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---------- FILTERS (shop page) ---------- */
.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.filter-sidebar { position: sticky; top: calc(var(--nav-height) + 20px); }
.filter-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.filter-group { margin-bottom: 24px; }
.filter-group h5 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-light);
}
.filter-option { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; cursor: pointer; }
.filter-option input[type="checkbox"] { accent-color: var(--rose-gold); width: 15px; height: 15px; }
.filter-option label { font-size: 0.85rem; color: var(--grey-dark); cursor: pointer; }
.filter-option label span { color: var(--grey-mid); font-size: 0.78rem; }

.price-range { display: flex; gap: 8px; align-items: center; }
.price-input {
  flex: 1;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 8px 12px;
  font-size: 0.83rem;
  color: var(--black);
  outline: none;
}
.price-input:focus { border-color: var(--rose-gold); }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; gap: 16px; }
.result-count { font-size: 0.88rem; color: var(--grey-mid); }
.sort-select {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--black);
  outline: none;
  background: var(--white);
  cursor: pointer;
}
.sort-select:focus { border-color: var(--rose-gold); }

.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
/* Category Filter side panel */
.filter-sidebar .filter-card { padding: 24px 22px; }
.filter-panel-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--rose-gold);
}
/* Sub-section labels (Shop by Category / Sort By) */
.filter-title {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 12px;
}
.filter-sidebar .filter-group { margin-bottom: 26px; }
.filter-sidebar .filter-group:last-of-type { margin-bottom: 16px; }
.filter-tag {
  background: var(--rose-pale);
  color: var(--rose-gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.filter-tag:hover { background: var(--rose-gold); color: var(--white); }
/* Sidebar category/sort links: bigger, comfortable, left-aligned list */
.filter-sidebar .filter-tag {
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 16px;
  margin-bottom: 8px;
  border-radius: 10px;
  justify-content: flex-start;
  transition: background var(--transition), color var(--transition);
}
.filter-sidebar .filter-tag.active { background: var(--rose-gold); color: var(--white); }

/* ---------- PDP (Product Detail Page) ---------- */
.pdp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }

.pdp-gallery { position: sticky; top: calc(var(--nav-height) + 20px); }
.pdp-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--grey-light);
  margin-bottom: 12px;
}
.pdp-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs, .pdp-thumb-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pdp-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--rose-gold); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp-info {}
.pdp-brand { font-size: 0.75rem; color: var(--rose-gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.pdp-title { font-size: clamp(1.4rem, 2vw, 2rem); color: var(--black); margin-bottom: 10px; line-height: 1.25; }
.pdp-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.pdp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.pdp-tag  { background: var(--rose-pale); color: var(--rose-gold); font-size: 0.78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; }

.pdp-price { margin-bottom: 24px; }
.pdp-price .price { font-size: 1.9rem; font-weight: 700; color: var(--black); }
.pdp-price .original { text-decoration: line-through; color: var(--grey-mid); font-size: 1.1rem; margin-left: 10px; }
.pdp-price .price-per { font-size: 0.8rem; color: var(--grey-mid); display: block; margin-top: 2px; }

.pdp-size-selector { margin-bottom: 24px; }
.pdp-size-selector label { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 10px; }
.size-options { display: flex; gap: 8px; flex-wrap: wrap; }
.size-btn {
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.size-btn.active, .size-btn:hover { border-color: var(--black); background: var(--black); color: var(--white); }

.pdp-qty-row { display: flex; gap: 12px; margin-bottom: 16px; align-items: center; }
.qty-selector { display: flex; align-items: center; border: 2px solid var(--grey-light); border-radius: var(--radius); overflow: hidden; }
.qty-btn { width: 40px; height: 48px; background: none; font-size: 1.1rem; color: var(--grey-dark); transition: background var(--transition); }
.qty-btn:hover { background: var(--grey-light); }
.qty-input { width: 50px; text-align: center; font-size: 1rem; font-weight: 600; border: none; outline: none; }

.pdp-atc-btn {
  flex: 1;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 15px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.pdp-atc-btn:hover { background: var(--rose-gold); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,149,108,0.35); }

.pdp-shipping-teaser {
  background: var(--rose-pale);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 24px;
  font-size: 0.83rem;
  color: var(--grey-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pdp-shipping-teaser strong { color: var(--black); }
.pdp-shipping-teaser a { color: var(--rose-gold); text-decoration: underline; }

/* Accordion */
.accordions { margin-top: 32px; }
.accordion { border-bottom: 1px solid var(--grey-light); }
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  cursor: pointer;
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--rose-gold); }
.accordion-btn .chevron { transition: transform var(--transition); font-size: 1.1rem; }
.accordion.open .accordion-btn .chevron { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 0 20px; }
.accordion.open .accordion-body { display: block; }
.accordion-body p, .accordion-body li { font-size: 0.88rem; color: var(--grey-dark); line-height: 1.7; }
.accordion-body ul { padding-left: 20px; list-style: disc; }
.accordion-body ol { padding-left: 20px; list-style: decimal; }
.accordion-body li { margin-bottom: 4px; }
.inci-text { font-size: 0.78rem; line-height: 1.65; color: var(--grey-mid); font-family: monospace; }

/* ---------- STICKY ATC (mobile) ---------- */
.sticky-atc {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  padding: 14px 20px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  align-items: center;
  gap: 12px;
}
.sticky-atc-info strong { font-size: 0.9rem; display: block; }
.sticky-atc-info span  { font-size: 1.1rem; font-weight: 700; color: var(--rose-gold); }

/* ---------- CROSS SELLS ---------- */
.cross-sell-section { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--grey-light); }

/* ---------- WHOLESALE PAGE ---------- */
.wholesale-hero { background: linear-gradient(135deg, var(--black) 0%, #1a0a04 100%); color: var(--white); padding: 80px 0; }
.wholesale-hero h1 { color: var(--white); margin-bottom: 16px; }
.wholesale-hero h1 span { color: var(--rose-gold); }
.wholesale-hero p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px; }

.stat-row { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 40px; }
.stat-item strong { font-size: 2.2rem; font-family: var(--font-heading); color: var(--rose-gold); display: block; }
.stat-item span   { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  counter-increment: step;
  position: relative;
}
.step-card::before {
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose-gold);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.step-card h4 { margin: 12px 0 8px; }
.step-card p  { font-size: 0.85rem; }

.apply-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 760px;
  margin: 0 auto;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.form-control {
  border: 2px solid var(--grey-light);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-control:focus { border-color: var(--rose-gold); }
select.form-control { cursor: pointer; }

/* ---------- ABOUT PAGE ---------- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-card .icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.85rem; }

/* ---------- POLICY PAGE ---------- */
.policy-layout { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.policy-nav { position: sticky; top: calc(var(--nav-height) + 20px); }
.policy-nav-link {
  display: block;
  font-size: 0.88rem;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--grey-dark);
  transition: all var(--transition);
  margin-bottom: 4px;
  font-weight: 500;
}
.policy-nav-link:hover, .policy-nav-link.active { background: var(--rose-pale); color: var(--rose-gold); }
.policy-content h2 { font-size: 1.6rem; margin-bottom: 16px; margin-top: 40px; color: var(--black); }
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { margin-bottom: 14px; font-size: 0.95rem; line-height: 1.75; }
.policy-content table { width: 100%; border-collapse: collapse; margin-bottom: 24px; font-size: 0.88rem; }
.policy-content th { background: var(--black); color: var(--white); padding: 12px 16px; text-align: left; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; }
.policy-content td { padding: 12px 16px; border-bottom: 1px solid var(--grey-light); }
.policy-content tr:nth-child(even) td { background: var(--grey-light); }
.policy-tag { display: inline-block; background: var(--rose-pale); color: var(--rose-gold); border-radius: 999px; padding: 4px 12px; font-size: 0.78rem; font-weight: 600; margin-bottom: 8px; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info-card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-item .ci-icon { color: var(--rose-gold); flex-shrink: 0; margin-top: 2px; }
.contact-item h5 { color: var(--white); font-family: var(--font-body); font-size: 0.88rem; margin-bottom: 2px; }
.contact-item p  { color: rgba(255,255,255,0.55); font-size: 0.83rem; }
.response-badge {
  background: rgba(201,149,108,0.15);
  border: 1px solid rgba(201,149,108,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--rose-light);
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

/* ---------- ALERTS / BANNERS ---------- */
.alert { border-radius: var(--radius); padding: 14px 18px; font-size: 0.88rem; margin-bottom: 20px; display: flex; gap: 10px; align-items: flex-start; }
.alert-info    { background: #e8f4fd; color: #0d6efd; border-left: 4px solid #0d6efd; }
.alert-success { background: #e8f7ef; color: var(--success); border-left: 4px solid var(--success); }
.alert-warning { background: #fff8e1; color: #b07b00; border-left: 4px solid #f0c040; }

/* ---------- MOBILE NAV OVERLAY ---------- */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1100;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: var(--white);
  z-index: 1200;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-overlay.open { display: block; }
.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--grey-light);
}
.mobile-nav-item { border-bottom: 1px solid var(--grey-light); }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--black);
}
.mobile-nav-sub { background: var(--grey-light); padding: 8px 0; display: none; }
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub a { display: block; padding: 10px 28px; font-size: 0.85rem; color: var(--grey-dark); }
.mobile-nav-sub a:hover { color: var(--rose-gold); }
.mobile-pref-bar {
  display: flex; flex-direction: column; gap: 8px;
  padding: 12px 20px; border-bottom: 1px solid var(--grey-light);
}
.mobile-pref-group {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.mobile-pref-label { font-size: 1rem; }
.mobile-pref-bar .util-btn {
  padding: 3px 8px; font-size: 0.74rem; border-radius: 4px;
  border: 1px solid var(--grey-light); background: none;
  color: var(--grey-dark); cursor: pointer; transition: background 0.15s, border-color 0.15s;
}
.mobile-pref-bar .util-btn.active,
.mobile-pref-bar .util-btn:hover {
  background: var(--rose-pale); border-color: var(--rose-gold); color: var(--rose-gold);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .mobile-menu-btn { display: flex; }
  .pdp-layout { grid-template-columns: 1fr; gap: 32px; }
  .pdp-gallery { position: static; }
  .shop-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .wholesale-banner { flex-direction: column; padding: 32px; text-align: center; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .sticky-atc { display: flex; }
  .pdp-qty-row .pdp-atc-btn { display: none; }

  /* ── MOBILE HEADER ── */
  /* Hide eyebrow bars */
  .announcement-bar,
  .utility-bar { display: none !important; }

  /* Trust bar: reduce gap between items by 50% */
  .trust-bar-inner { gap: 20px; }

  /* Compact header strip */
  .site-header { box-shadow: none; }
  .site-header .container { padding: 0 6px 0 0; } /* no left pad — logo touches edge */
  .header-inner {
    height: 52px; gap: 0; padding: 0; margin: 0;
    overflow: visible; flex-wrap: nowrap;
  }

  /* Logo flush to left edge */
  .header-logo {
    flex-shrink: 1; min-width: 0;
    padding: 0 0 0 10px; /* just enough breathing room */
    margin: 0;
  }
  .logo-svg { width: 143px !important; height: auto !important; max-width: 100%; display: block; }

  /* Action buttons */
  .header-actions { gap: 0; flex-shrink: 0; padding: 0; margin: 0 0 0 auto; }
  .header-action-btn { padding: 6px 5px; margin: 0; }

  /* Lang/Currency: show icon only, no text label */
  .hdr-icon-pair { display: flex !important; align-items: center; gap: 0; }
  #hdrLangLbl, #hdrCurLbl { display: none !important; }
  .hdr-icon-btn {
    padding: 6px 7px !important;
    border: none !important;
    background: none !important;
  }

  /* Theme switcher lives in the hamburger drawer — hide from header */
  #hdrThemeWrap { display: none !important; }
}

@media (max-width: 640px) {
  .logo-svg { width: 121px !important; }
  .header-action-btn[aria-label="Search"] { display: none !important; }
}

@media (max-width: 420px) {
  .logo-svg { width: 99px !important; }
  .header-action-btn[aria-label="Account"] { display: none !important; }
}

@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .hero    { min-height: 480px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .concern-grid { grid-template-columns: repeat(4, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
  /* Brand and Newsletter span both columns; Shop + Help sit side by side */
  .footer-brand,
  .footer-grid > .footer-col:last-child { grid-column: 1 / -1; }
  .apply-form-card { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .step-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 28px; }
  .wholesale-banner-cta { flex-direction: column; width: 100%; }
}

/* ── Centered, single-column footer on phones ── */
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 26px; }
  .footer-grid > .footer-brand,
  .footer-grid > .footer-col { grid-column: 1 / -1; }
  .footer-logo { display: inline-block; }
  .footer-tagline,
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-address { max-width: none; }
  .footer-address,
  .footer-newsletter p { text-align: center; }
  .footer-social { justify-content: center; }
  .newsletter-form { display: flex; flex-direction: column; align-items: center; gap: 8px; }
  .newsletter-form .btn,
  .newsletter-form .newsletter-input { width: 100%; }
  .footer-bottom { flex-direction: column; justify-content: center; text-align: center; gap: 10px; }
  .footer-copy { width: 100%; }
  .footer-legal { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; width: 100%; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .concern-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============================================================
   HEADER — COMPACT LANG / CURRENCY
   ============================================================ */
.header-lang-currency {
  display: flex; align-items: center; gap: 3px;
  margin-right: 4px;
}
.hdr-util-btn {
  background: none; border: 1px solid transparent; border-radius: 4px;
  padding: 3px 7px; color: rgba(255,255,255,0.45);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  cursor: pointer; font-family: var(--font-body); transition: all 0.2s;
}
.hdr-util-btn:hover { color: var(--rose-gold); border-color: rgba(201,149,108,0.35); }
.hdr-util-btn.active { color: var(--rose-gold); border-color: var(--rose-gold); background: rgba(201,149,108,0.08); }
.hdr-util-sep { color: rgba(255,255,255,0.18); font-size: 0.72rem; line-height: 1; }

/* ============================================================
   SHOP — VIEW TOGGLE BUTTONS
   ============================================================ */
.view-toggle-btns { display: flex; gap: 4px; align-items: center; }
.view-btn {
  width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--grey-light); border-radius: 7px;
  background: var(--white); color: var(--grey-mid); cursor: pointer; transition: all 0.2s;
}
.view-btn:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.view-btn.active { background: var(--rose-gold); border-color: var(--rose-gold); color: #fff; }

/* LIST VIEW */
.product-grid.view-list { grid-template-columns: 1fr; gap: 12px; }
.product-grid.view-list .product-card { display: flex; flex-direction: row; align-items: flex-start; }
.product-grid.view-list .product-card-img { width: 160px; min-width: 160px; flex-shrink: 0; }
.product-grid.view-list .product-card-img img { height: 160px; }
.product-grid.view-list .product-card-body { flex: 1; padding: 16px 20px; }
.product-grid.view-list .product-name { font-size: 0.98rem; }

/* COMPACT VIEW */
.product-grid.view-compact { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
.product-grid.view-compact .product-card-img img { height: 140px; }
.product-grid.view-compact .product-name { font-size: 0.77rem; }
.product-grid.view-compact .product-tags,
.product-grid.view-compact .product-rating { display: none; }
.product-grid.view-compact .product-footer { flex-direction: column; gap: 6px; }
.product-grid.view-compact .quick-add-btn { width: 100%; justify-content: center; }

/* ============================================================
   FAVOURITE BUTTON
   ============================================================ */
.fav-btn {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.92); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12); transition: all 0.2s;
}
.fav-btn svg { width: 16px; height: 16px; transition: all 0.2s; }
.fav-btn:hover { background: #fff; transform: scale(1.12); }
.fav-btn:hover svg { stroke: #e05c6a; }
.fav-btn.active svg { fill: #e05c6a; stroke: #e05c6a; }

/* ============================================================
   QUICK-VIEW MODAL (single-click detail)
   ============================================================ */
.qv-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55);
  z-index: 9000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.qv-overlay.open { opacity: 1; pointer-events: all; }
.qv-modal {
  background: #fff; border-radius: 18px;
  width: min(700px, 94vw); max-height: 88vh; overflow-y: auto;
  position: relative; transform: translateY(22px); transition: transform 0.25s;
}
.qv-overlay.open .qv-modal { transform: translateY(0); }
.qv-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 50%; border: none; background: var(--grey-light);
  cursor: pointer; font-size: 1rem; z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.qv-body { display: grid; grid-template-columns: 1fr 1fr; min-height: 360px; }
.qv-img { background: var(--grey-light); border-radius: 18px 0 0 18px; overflow: hidden; }
.qv-img img { width: 100%; height: 100%; object-fit: cover; }
.qv-info { padding: 32px 28px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 600px) {
  .qv-body { grid-template-columns: 1fr; }
  .qv-img { border-radius: 18px 18px 0 0; height: 220px; }
}

/* ============================================================
   CART TOAST
   ============================================================ */
.cart-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(0);
  background: var(--black); color: #fff; padding: 12px 24px;
  border-radius: 40px; font-size: 0.88rem; font-weight: 600;
  z-index: 9999; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity 0.22s, bottom 0.22s;
}
.cart-toast.show { opacity: 1; bottom: 42px; }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  z-index: 8800; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 100vw);
  background: #fff; z-index: 8900; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
}
.cart-overlay.open .cart-drawer { transform: none; }
.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px; border-bottom: 1px solid var(--grey-light); flex-shrink: 0;
}
.cart-drawer-title {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: var(--black);
  display: flex; align-items: center; gap: 8px;
}
.cart-drawer-count { font-size: 0.82rem; font-weight: 600; color: var(--grey-mid); }
.cart-drawer-close {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--grey-light); cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.cart-drawer-close:hover { background: var(--rose-pale); }
.cart-items {
  flex: 1; overflow-y: auto; padding: 16px 24px;
  display: flex; flex-direction: column; gap: 14px; scrollbar-width: thin;
}
.cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  color: var(--grey-mid); font-size: 0.9rem; padding: 48px 0; text-align: center;
}
.cart-empty svg { opacity: 0.2; }
.cart-item {
  display: grid; grid-template-columns: 64px 1fr auto;
  gap: 12px; align-items: center; padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-light);
}
.cart-item:last-child { border-bottom: none; padding-bottom: 0; }
.cart-item-img {
  width: 64px; height: 64px; border-radius: 10px;
  background: var(--grey-light); overflow: hidden; flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { min-width: 0; }
.cart-item-name {
  font-weight: 600; font-size: 0.85rem; color: var(--black);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px;
}
.cart-item-brand { font-size: 0.72rem; color: var(--grey-mid); margin-bottom: 5px; }
.cart-item-price { font-size: 0.88rem; font-weight: 700; color: var(--rose-gold); }
.cart-qty { display: flex; align-items: center; gap: 5px; flex-direction: column; }
.cart-qty-row { display: flex; align-items: center; gap: 5px; }
.cart-qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--grey-light);
  background: none; cursor: pointer; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; line-height: 1;
  transition: border-color 0.2s, color 0.2s;
}
.cart-qty-btn:hover { border-color: var(--rose-gold); color: var(--rose-gold); }
.cart-qty-num { font-size: 0.88rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-remove {
  background: none; border: none; cursor: pointer; color: var(--grey-mid);
  padding: 3px; font-size: 0.75rem; line-height: 1; transition: color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.cart-remove:hover { color: #e05c6a; }
.cart-footer {
  padding: 14px 24px 22px; border-top: 1px solid var(--grey-light); flex-shrink: 0;
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.86rem; margin-bottom: 6px; color: var(--grey-dark);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; margin-bottom: 16px; padding-top: 8px;
  border-top: 1.5px solid var(--grey-light);
}
.cart-total-label { font-weight: 700; color: var(--black); }
.cart-total-val { font-weight: 800; font-size: 1.15rem; color: var(--rose-gold); }
.cart-checkout-btn {
  width: 100%; padding: 13px; background: var(--rose-gold); color: #fff;
  border: none; border-radius: 10px; font-weight: 700; font-size: 0.93rem;
  cursor: pointer; transition: opacity 0.2s;
}
.cart-checkout-btn:hover { opacity: 0.88; }
.cart-continue-link {
  display: block; text-align: center; margin-top: 10px;
  font-size: 0.84rem; color: var(--grey-mid); cursor: pointer;
  text-decoration: underline; background: none; border: none; width: 100%; padding: 6px 0;
}
.cart-continue-link:hover { color: var(--rose-gold); }

/* ── HEADER ICON PAIR (lang + currency buttons) ── */
.hdr-icon-pair {
  display: flex; align-items: center; gap: 3px; margin-right: 2px;
}
.hdr-icon-wrap { position: relative; }
.hdr-icon-btn {
  display: flex; align-items: center; gap: 3px;
  background: none; border: 1px solid rgba(201,149,108,.3);
  border-radius: 6px; padding: 4px 7px; cursor: pointer;
  font-size: 0.68rem; font-weight: 700; color: var(--grey-dark);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap; line-height: 1.3;
}
.hdr-icon-btn:hover, .hdr-icon-wrap.open .hdr-icon-btn {
  background: var(--rose-pale); border-color: var(--rose-gold); color: var(--rose-gold);
}
.hdr-icon-btn svg { flex-shrink: 0; }
.hdr-icon-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 6px; min-width: 140px; z-index: 5000;
}
.hdr-icon-wrap.open .hdr-icon-menu { display: block; }
.hdr-icon-opt {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 7px; border: none; background: none;
  cursor: pointer; width: 100%; text-align: left;
  font-size: 0.82rem; color: var(--black); transition: background 0.15s;
}
.hdr-icon-opt:hover { background: var(--rose-pale); }
.hdr-icon-opt.active { font-weight: 700; color: var(--rose-gold); }

/* ============================================================
   AUTH MODAL
   ============================================================ */
.auth-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9100; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.auth-overlay.open { opacity: 1; pointer-events: all; }
.auth-modal {
  background: #fff; border-radius: 20px;
  width: min(460px, 94vw); max-height: 92vh; overflow-y: auto;
  padding: 36px 32px 32px; position: relative;
  transform: translateY(18px) scale(0.98); transition: transform 0.25s;
  scrollbar-width: thin;
}
.auth-overlay.open .auth-modal { transform: none; }
.auth-close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 50%; border: none; background: var(--grey-light);
  cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
}
.auth-logo { text-align: center; margin-bottom: 18px; }
.auth-title { font-family: var(--font-heading); font-size: 1.45rem; text-align: center; margin-bottom: 4px; color: var(--black); }
.auth-sub { font-size: 0.84rem; color: var(--grey-mid); text-align: center; margin-bottom: 22px; }
.auth-form .field-group { margin-bottom: 15px; }
.auth-form label { font-size: 0.79rem; font-weight: 600; color: var(--grey-dark); display: block; margin-bottom: 5px; }
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="text"],
.auth-form input[type="tel"] {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--grey-light);
  border-radius: 8px; font-size: 0.9rem; outline: none;
  transition: border-color 0.2s; box-sizing: border-box; font-family: var(--font-body);
}
.auth-form input:focus { border-color: var(--rose-gold); }
.pw-field { position: relative; }
.pw-field input { padding-right: 44px; }
.pw-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--grey-mid); padding: 4px;
  display: flex; align-items: center;
}
.pw-strength { height: 4px; border-radius: 2px; margin-top: 6px; background: var(--grey-light); overflow: hidden; }
.pw-strength-bar { height: 100%; border-radius: 2px; transition: width 0.3s, background 0.3s; width: 0; }
.auth-remember { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--grey-dark); }
.auth-remember input[type="checkbox"] { width: auto; }
.auth-forgot { font-size: 0.82rem; color: var(--rose-gold); cursor: pointer; }
.auth-forgot:hover { text-decoration: underline; }
.auth-submit {
  width: 100%; padding: 13px; background: var(--rose-gold); color: #fff;
  border: none; border-radius: 8px; font-size: 0.95rem; font-weight: 700;
  cursor: pointer; margin-top: 8px; transition: background 0.2s; font-family: var(--font-body);
}
.auth-submit:hover { background: #b8845c; }
.auth-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--grey-mid); font-size: 0.77rem; margin: 18px 0;
}
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--grey-light); }
.social-btns { display: flex; flex-direction: column; gap: 9px; }
.social-btn {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  padding: 10px 16px; border-radius: 8px; border: 1.5px solid var(--grey-light);
  background: #fff; cursor: pointer; font-size: 0.87rem; font-weight: 600;
  color: var(--black); transition: border-color 0.2s, background 0.2s; font-family: var(--font-body);
}
.social-btn:hover { border-color: var(--rose-gold); background: var(--rose-pale); }
.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.auth-switch { text-align: center; margin-top: 18px; font-size: 0.84rem; color: var(--grey-mid); }
.auth-switch a { color: var(--rose-gold); cursor: pointer; font-weight: 600; }
.auth-switch a:hover { text-decoration: underline; }
.auth-tabs {
  display: flex; margin-bottom: 20px;
  border: 1.5px solid var(--grey-light); border-radius: 8px; overflow: hidden;
}
.auth-tab {
  flex: 1; padding: 9px; text-align: center; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; border: none; background: #fff; color: var(--grey-mid);
  transition: all 0.2s; font-family: var(--font-body);
}
.auth-tab.active { background: var(--rose-gold); color: #fff; }

/* ============================================================
   CHAT WIDGET
   ============================================================ */
.chat-fab {
  position: fixed; bottom: 28px; right: 28px; width: 58px; height: 58px;
  border-radius: 50%; background: var(--rose-gold); border: none; cursor: pointer;
  z-index: 8900; box-shadow: 0 4px 20px rgba(201,149,108,0.5);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.chat-fab:hover { transform: scale(1.08); background: #b8845c; }
.chat-fab svg { width: 26px; height: 26px; color: #fff; }
.chat-fab .notif-dot {
  position: absolute; top: 6px; right: 6px; width: 12px; height: 12px;
  border-radius: 50%; background: #e05c6a; border: 2px solid #fff;
}
.chat-panel {
  position: fixed; bottom: 100px; right: 28px; width: 370px; max-height: 560px;
  background: #fff; border-radius: 18px; box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  z-index: 8900; display: flex; flex-direction: column;
  transform: scale(0.9) translateY(20px); transform-origin: bottom right;
  opacity: 0; pointer-events: none;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.chat-panel.open { opacity: 1; pointer-events: all; transform: none; }
@media (max-width: 480px) {
  .chat-panel { width: calc(100vw - 24px); right: 12px; bottom: 90px; }
  .chat-fab { bottom: 20px; right: 20px; }
}
.chat-header {
  background: linear-gradient(135deg, #0d0d0d, #1b0e07); color: #fff;
  padding: 16px 20px; border-radius: 18px 18px 0 0;
  display: flex; align-items: center; justify-content: space-between;
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--rose-gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.chat-header-title { font-weight: 700; font-size: 0.92rem; }
.chat-header-sub { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 1px; }
.chat-close-btn { background: none; border: none; color: rgba(255,255,255,0.55); cursor: pointer; font-size: 1.2rem; padding: 4px; }
.chat-tabs {
  display: flex; background: #f8f8f8; border-bottom: 1px solid #eee; overflow-x: auto;
  scrollbar-width: none;
}
.chat-tabs::-webkit-scrollbar { display: none; }
.chat-tab {
  flex: 1; min-width: 52px; padding: 9px 6px;
  font-size: 0.63rem; font-weight: 700; color: var(--grey-mid);
  border: none; background: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  white-space: nowrap; transition: all 0.2s; border-bottom: 2px solid transparent;
  font-family: var(--font-body);
}
.chat-tab svg { width: 17px; height: 17px; }
.chat-tab.active { color: var(--rose-gold); border-bottom-color: var(--rose-gold); background: #fff; }
.chat-body { flex: 1; overflow-y: auto; padding: 14px; min-height: 260px; max-height: 320px; scrollbar-width: thin; }
.chat-footer { padding: 10px 14px; border-top: 1px solid #eee; display: flex; gap: 8px; align-items: center; }
.chat-input {
  flex: 1; border: 1.5px solid #eee; border-radius: 24px;
  padding: 9px 14px; font-size: 0.84rem; outline: none;
  transition: border-color 0.2s; font-family: var(--font-body);
}
.chat-input:focus { border-color: var(--rose-gold); }
.chat-send-btn {
  width: 36px; height: 36px; border-radius: 50%; background: var(--rose-gold);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ════════════════════════════════════════════════════════
   COMPONENTS v2.0 — Auth, Chat, View Toggles, Favourites
   ════════════════════════════════════════════════════════ */

/* ── Header Lang/Currency Dropdowns ── */
.hdr-dropdown-wrap { position: relative; display: inline-flex; align-items: center; }
.hdr-dropdown-toggle {
  background: none; border: 1px solid rgba(201,149,108,.35);
  border-radius: 20px; padding: 3px 8px; font-size: .72rem;
  cursor: pointer; color: var(--black); display: flex; align-items: center; gap: 3px;
  transition: background var(--transition); white-space: nowrap;
}
.hdr-dropdown-toggle:hover { background: var(--rose-pale); }
.hdr-dropdown-toggle .dd-arrow { font-size: .55rem; opacity: .6; }
.hdr-dropdown-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--white); border: 1px solid var(--grey-light);
  border-radius: var(--radius); box-shadow: var(--shadow-md);
  min-width: 140px; z-index: 9999; overflow: hidden;
  display: none; flex-direction: column;
}
.hdr-dropdown-wrap.open .hdr-dropdown-menu { display: flex; }
.cur-menu-item {
  padding: 9px 14px; font-size: .82rem; cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--transition);
}
.cur-menu-item:hover { background: var(--rose-pale); }
.cur-menu-item.active { color: var(--rose-gold); font-weight: 600; }

/* ── NAV PREFERENCES DROPDOWN (combined lang + currency) ── */
.nav-pref-li { position: relative; margin-left: 8px; border-left: 1px solid rgba(0,0,0,0.09); padding-left: 10px; }
.nav-pref-btn {
  display: flex; align-items: center; gap: 5px;
  background: none; border: 1px solid rgba(201,149,108,.4);
  border-radius: 20px; padding: 4px 11px;
  font-size: .74rem; font-weight: 600; letter-spacing: .03em;
  color: var(--black); cursor: pointer; white-space: nowrap;
  transition: background var(--transition), border-color var(--transition);
}
.nav-pref-btn:hover, .nav-pref-li.open .nav-pref-btn {
  background: var(--rose-pale); border-color: var(--rose-gold); color: var(--rose-gold);
}
.nav-pref-btn .pref-arrow { font-size: .5rem; opacity: .6; margin-left: 1px; }
.nav-pref-panel {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--white); border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  min-width: 320px; z-index: 9999; overflow: hidden;
  flex-direction: row;
}
.nav-pref-li.open .nav-pref-panel { display: flex; }
.pref-col {
  flex: 1; padding: 16px 14px;
}
.pref-col + .pref-col { border-left: 1px solid var(--grey-light); }
.pref-col-title {
  font-size: .62rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--rose-gold);
  margin-bottom: 10px; padding-bottom: 6px;
  border-bottom: 1px solid var(--grey-light);
}
.pref-opt {
  display: flex; align-items: center; gap: 8px;
  width: 100%; background: none; border: none; border-radius: 6px;
  padding: 7px 8px; font-size: .82rem; cursor: pointer; text-align: left;
  transition: background var(--transition); color: var(--black);
}
.pref-opt:hover { background: var(--rose-pale); color: var(--rose-gold); }
.pref-opt.active { color: var(--rose-gold); font-weight: 700; background: rgba(201,149,108,.08); }
.pref-opt .pref-check { margin-left: auto; font-size: .7rem; opacity: 0; }
.pref-opt.active .pref-check { opacity: 1; }

/* ── View Toggle Buttons ── */
.view-toggle-btns { display: flex; gap: 4px; align-items: center; }
.view-btn {
  background: none; border: 1px solid var(--grey-light);
  border-radius: var(--radius); padding: 6px 9px; cursor: pointer;
  color: var(--grey-dark); transition: all var(--transition); display: flex; align-items: center;
}
.view-btn:hover { background: var(--rose-pale); border-color: var(--rose-gold); }
.view-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ── Product Grid List / Compact Views ── */
.product-grid.view-list {
  display: flex; flex-direction: column; gap: 16px;
}
.product-grid.view-list .product-card {
  display: grid; grid-template-columns: 180px 1fr;
  border-radius: var(--radius); overflow: hidden;
}
.product-grid.view-list .product-card-img { height: 180px; }
.product-grid.view-list .product-card-body { padding: 20px 24px; display: flex; flex-direction: column; justify-content: space-between; }
.product-grid.view-compact {
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px;
}
.product-grid.view-compact .product-card-img { height: 160px; }
.product-grid.view-compact .product-card-body { padding: 10px 12px; }
.product-grid.view-compact .product-name { font-size: .78rem; }
.product-grid.view-compact .product-tags,
.product-grid.view-compact .product-rating { display: none; }

/* ── Favourite Button ── */
.fav-btn {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  background: rgba(255,255,255,.9); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 6px rgba(0,0,0,.12); transition: transform var(--transition), background var(--transition);
  padding: 0;
}
.fav-btn:hover { transform: scale(1.15); }
.fav-btn svg { width: 16px; height: 16px; }
.fav-btn.faved svg { fill: #e63950; stroke: #e63950; }
.product-card-img { position: relative; }

/* ── Quick-View Modal ── */
.qv-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 10000; display: flex; align-items: center; justify-content: center;
  animation: fadeIn .18s ease;
}
.qv-modal {
  background: var(--white); border-radius: var(--radius-lg);
  width: min(700px, 94vw); max-height: 88vh; overflow-y: auto;
  padding: 32px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25); animation: slideUp .22s ease;
}
.qv-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--grey-dark);
}
.qv-body { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.qv-img { border-radius: var(--radius); overflow: hidden; }
.qv-img img { width: 100%; display: block; }
.qv-info { display: flex; flex-direction: column; gap: 12px; }
.qv-brand { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--rose-gold); font-weight: 600; }
.qv-name { font-size: 1.2rem; font-weight: 700; font-family: var(--font-heading); line-height: 1.3; }
.qv-price { font-size: 1.4rem; font-weight: 700; color: var(--black); }
.qv-add-btn {
  background: var(--black); color: var(--white); border: none;
  border-radius: var(--radius); padding: 14px 24px;
  font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: background var(--transition);
}
.qv-add-btn:hover { background: var(--rose-gold); }

/* ── Auth Modal ── */
.sb-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 10001; display: flex; align-items: center; justify-content: center;
  animation: fadeIn .18s ease;
}
.sb-modal {
  background: var(--white); border-radius: var(--radius-lg);
  width: min(440px, 96vw); padding: 36px 32px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3); animation: slideUp .22s ease;
  max-height: 92vh; overflow-y: auto;
}
.sb-modal-close {
  position: absolute; top: 14px; right: 18px;
  background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--grey-dark);
}
.auth-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.auth-sub { font-size: .85rem; color: var(--grey-dark); margin-bottom: 20px; }
.auth-form { display: flex; flex-direction: column; gap: 14px; }
.auth-input-group { display: flex; flex-direction: column; gap: 5px; }
.auth-input-group label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.auth-input {
  border: 2px solid var(--grey-light); border-radius: var(--radius);
  padding: 11px 14px; font-size: .9rem; outline: none;
  transition: border-color var(--transition); width: 100%; box-sizing: border-box;
}
.auth-input:focus { border-color: var(--rose-gold); }
.auth-pw-wrap { position: relative; }
.auth-pw-wrap .auth-input { padding-right: 44px; }
.auth-pw-toggle {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--grey-dark); font-size: .8rem;
}
.auth-submit {
  background: var(--black); color: var(--white); border: none;
  border-radius: var(--radius); padding: 13px; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: background var(--transition);
}
.auth-submit:hover { background: var(--rose-gold); }
.auth-divider { text-align: center; font-size: .78rem; color: var(--grey-dark); margin: 4px 0; }
.auth-social-row { display: flex; gap: 10px; }
.auth-social-btn {
  flex: 1; border: 1px solid var(--grey-light); background: var(--white);
  border-radius: var(--radius); padding: 10px 6px; font-size: .8rem; cursor: pointer;
  font-weight: 600; transition: background var(--transition); text-align: center;
}
.auth-social-btn:hover { background: var(--rose-pale); }
.auth-link { background: none; border: none; color: var(--rose-gold); cursor: pointer; font-size: .85rem; text-decoration: underline; }
.auth-footer { text-align: center; font-size: .82rem; margin-top: 4px; }
.auth-back {
  background: none; border: none; font-size: .82rem; color: var(--grey-dark);
  cursor: pointer; padding: 0; margin-bottom: 12px; display: flex; align-items: center; gap: 4px;
}
.auth-back:hover { color: var(--black); }
.pw-strength-bar { height: 4px; border-radius: 2px; background: var(--grey-light); margin-top: 4px; overflow: hidden; }
.pw-strength-fill { height: 100%; width: 0; border-radius: 2px; transition: width .3s, background .3s; }
.pw-strength-label { font-size: .72rem; color: var(--grey-dark); margin-top: 2px; }
.auth-match-ok { font-size: .72rem; color: #2ecc71; }
.auth-match-err { font-size: .72rem; color: #e74c3c; }
.phone-row { display: flex; gap: 8px; align-items: flex-start; }
.phone-cc { width: 90px; flex-shrink: 0; }

/* ── OTP Boxes ── */
.otp-inputs { display: flex; gap: 10px; justify-content: center; margin: 10px 0; }
.otp-box {
  width: 42px; height: 50px; text-align: center; font-size: 1.3rem; font-weight: 700;
  border: 2px solid var(--grey-light); border-radius: var(--radius); outline: none;
  transition: border-color var(--transition); background: var(--white);
}
.otp-box:focus { border-color: var(--rose-gold); }
.otp-box.filled { border-color: var(--black); }
.otp-resend { font-size: .78rem; color: var(--grey-dark); text-align: center; margin-top: 4px; }
.otp-resend-btn { background: none; border: none; color: var(--rose-gold); cursor: pointer; font-size: .78rem; text-decoration: underline; }

/* ── Profile Pane ── */
.profile-avatar {
  width: 64px; height: 64px; border-radius: 50%; background: var(--black);
  color: var(--white); font-size: 1.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 12px;
}
.profile-name { text-align: center; font-size: 1.1rem; font-weight: 700; margin-bottom: 2px; }
.profile-email { text-align: center; font-size: .82rem; color: var(--grey-dark); margin-bottom: 20px; }
.profile-actions { display: flex; flex-direction: column; gap: 10px; }

/* ── Chat Widget ── */
.chat-widget {
  position: fixed; bottom: 24px; right: 24px; z-index: 10000;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.chat-fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--black); color: var(--white); border: none; cursor: pointer;
  font-size: 1.4rem; box-shadow: 0 4px 20px rgba(0,0,0,.25);
  display: flex; align-items: center; justify-content: center;
}
/* ============================================================
   THEME OVERRIDES  (applied via data-theme on <html>)
   Default theme = existing :root — no overrides needed.
   ============================================================ */

/* ── Light ── */
[data-theme="light"] {
  --off-white:   #ffffff;
  --white:       #ffffff;
  --grey-light:  #f0f0f0;
  --rose-pale:   #fff7f4;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.09);
}

/* ── Dark ── */
[data-theme="dark"] {
  --off-white:   #111214;
  --white:       #1d1f22;
  --grey-light:  #28292d;
  --grey-mid:    #888888;
  --grey-dark:   #b8b8b8;
  --black:       #e8e5e0;
  --black-soft:  #26282c;
  --rose-pale:   #1e120a;
  --rose-gold:   #d4916a;
  --rose-light:  #e8ae86;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.35);
  --shadow-md:   0 6px 24px rgba(0,0,0,0.55);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.7);
}
/* Dark — keep hero/section-dark regions truly dark */
[data-theme="dark"] .section--dark              { background: #090909 !important; }
[data-theme="dark"] .hero--fw                   { background: linear-gradient(135deg,#090909 0%,#160a04 100%) !important; }
[data-theme="dark"] .wholesale-hero             { background: linear-gradient(135deg,#090909 0%,#1a0a04 100%) !important; }
[data-theme="dark"] .site-footer               { background: #0a0a0a !important; }
[data-theme="dark"] .footer-bottom              { background: #060606 !important; }
/* Dark — fix buttons that use --black as background */
[data-theme="dark"] .btn-dark                   { background: var(--rose-gold); color: #111; border-color: var(--rose-gold); }
[data-theme="dark"] .btn-dark:hover             { background: var(--rose-light); border-color: var(--rose-light); }
[data-theme="dark"] .btn-primary                { background: var(--rose-gold); color: #111; }
[data-theme="dark"] .btn-primary:hover          { background: var(--rose-light); }
[data-theme="dark"] .btn-outline                { border-color: var(--black); color: var(--black); }
[data-theme="dark"] .btn-outline:hover          { background: var(--black); color: var(--white); }
[data-theme="dark"] .size-btn.active,
[data-theme="dark"] .size-btn:hover             { background: var(--rose-gold); border-color: var(--rose-gold); color: #111; }
[data-theme="dark"] .view-btn.active            { background: var(--rose-gold); border-color: var(--rose-gold); color: #111; }
[data-theme="dark"] .profile-avatar            { background: var(--rose-gold); color: #111; }
[data-theme="dark"] .chat-fab                   { background: var(--rose-gold); color: #111; }
[data-theme="dark"] .cart-checkout-btn          { background: var(--rose-gold); color: #111; }
[data-theme="dark"] .qv-atc                     { background: var(--rose-gold); color: #111; }
[data-theme="dark"] .quick-add-btn              { background: var(--rose-gold); color: #111; }
[data-theme="dark"] .policy-content th          { background: var(--grey-light); color: var(--black); }

/* ── Pink ── */
[data-theme="pink"] {
  --black:       #3d1525;
  --black-soft:  #581e36;
  --rose-gold:   #c84b70;
  --rose-light:  #e07898;
  --rose-pale:   #fce0ea;
  --gold-accent: #b83860;
  --off-white:   #fff5f8;
  --white:       #fffafb;
  --grey-light:  #f8dde8;
  --grey-dark:   #7a3050;
  --grey-mid:    #b07090;
}

/* ── Blue ── */
[data-theme="blue"] {
  --black:       #1a2a45;
  --black-soft:  #25396a;
  --rose-gold:   #4480c0;
  --rose-light:  #70a8e4;
  --rose-pale:   #daeeff;
  --gold-accent: #3670b0;
  --off-white:   #f3f8ff;
  --white:       #f9fbff;
  --grey-light:  #d8eaf8;
  --grey-dark:   #3a5880;
  --grey-mid:    #6090b8;
}
/* ── Explicit body/header overrides per theme (belt-and-braces) ── */
[data-theme="dark"] body         { background: #111214 !important; color: #e8e5e0; }
[data-theme="dark"] .site-header { background: #1d1f22 !important; border-color: #333; }
[data-theme="dark"] .dropdown    { background: #1d1f22 !important; border-color: #333; }
[data-theme="dark"] .nav-link    { color: #e8e5e0; }
[data-theme="dark"] p            { color: #b8b8b8; }
[data-theme="dark"] h1,[data-theme="dark"] h2,[data-theme="dark"] h3,
[data-theme="dark"] h4,[data-theme="dark"] h5 { color: #e8e5e0; }
[data-theme="dark"] .product-card { background: #1d1f22 !important; border-color: #333; }

[data-theme="light"] body         { background: #ffffff !important; }
[data-theme="light"] .site-header { background: #ffffff !important; }

[data-theme="pink"] body          { background: #fff5f8 !important; }
[data-theme="pink"] .site-header  { background: #fffafb !important; }
[data-theme="pink"] .nav-link     { color: #3d1525; }
[data-theme="pink"] .nav-link:hover { color: #c84b70; }
[data-theme="pink"] .header-action-btn { color: #3d1525; }

[data-theme="blue"] body          { background: #f3f8ff !important; }
[data-theme="blue"] .site-header  { background: #f9fbff !important; }
[data-theme="blue"] .nav-link     { color: #1a2a45; }
[data-theme="blue"] .nav-link:hover { color: #4480c0; }
[data-theme="blue"] .header-action-btn { color: #1a2a45; }

/* ── Hero section overrides per theme ──────────────────────────────────── */
/* Hero has hardcoded dark gradient — must be overridden explicitly         */

/* LIGHT: cream/ivory hero, flip text to dark */
[data-theme="light"] .hero--fw {
  background: linear-gradient(135deg, #faf8f5 0%, #f0e8de 100%) !important;
}
[data-theme="light"] .hero-fw-images::before {
  background: linear-gradient(to right, #faf8f5 0%, rgba(250,248,245,0.55) 55%, transparent 100%) !important;
}
[data-theme="light"] .hero h1,
[data-theme="light"] .hero-fw-text h1 { color: #0d0d0d !important; }
[data-theme="light"] .hero-sub        { color: rgba(13,13,13,0.65) !important; }
[data-theme="light"] .hero-proof      { color: rgba(13,13,13,0.55) !important; }
[data-theme="light"] .btn-outline-white {
  color: #0d0d0d !important;
  border-color: rgba(13,13,13,0.45) !important;
}
[data-theme="light"] .btn-outline-white:hover {
  border-color: var(--rose-gold) !important;
  color: var(--rose-gold) !important;
}

/* DARK: hero already overridden above; fix text vars that flip in dark mode */
[data-theme="dark"] .hero h1,
[data-theme="dark"] .hero-fw-text h1 { color: #e8e5e0 !important; }
[data-theme="dark"] .hero-sub        { color: rgba(232,229,224,0.75) !important; }
[data-theme="dark"] .hero-proof      { color: rgba(232,229,224,0.70) !important; }

/* PINK: deep rose/burgundy gradient, keep white text */
[data-theme="pink"] .hero--fw {
  background: linear-gradient(135deg, #3d1525 0%, #5c1e38 100%) !important;
}
[data-theme="pink"] .hero-fw-images::before {
  background: linear-gradient(to right, #3d1525 0%, rgba(61,21,37,0.45) 55%, transparent 100%) !important;
}

/* BLUE: deep navy gradient, keep white text */
[data-theme="blue"] .hero--fw {
  background: linear-gradient(135deg, #1a2a45 0%, #1e3668 100%) !important;
}
[data-theme="blue"] .hero-fw-images::before {
  background: linear-gradient(to right, #1a2a45 0%, rgba(26,42,69,0.45) 55%, transparent 100%) !important;
}


/* ============================================================
   THEME SWITCHER UI
   ============================================================ */
.theme-menu {
  min-width: 176px !important;
  padding: 8px !important;
}
.theme-swatch {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 9px; border-radius: 7px; border: none; background: none;
  cursor: pointer; width: 100%; text-align: left;
  font-size: 0.82rem; color: var(--black); transition: background 0.15s;
}
.theme-swatch:hover  { background: var(--rose-pale); }
.theme-swatch.active { font-weight: 700; color: var(--rose-gold); }
.theme-swatch-preview {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  background: var(--sw-bg, #0d0d0d);
  border: 3px solid var(--sw-accent, #c9956c);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  transition: transform 0.15s;
}
.theme-swatch:hover  .theme-swatch-preview { transform: scale(1.1); }
.theme-swatch.active .theme-swatch-preview { outline: 2px solid var(--rose-gold); outline-offset: 2px; }
.theme-swatch-label { line-height: 1; }

/* ============================================================
   MOBILE HEADER — responsive fixes
   ============================================================ */

/* ≤900px: hide desktop icon buttons (lang/cur/theme live in drawer instead)
   Allow logo to shrink so hamburger is never pushed off-screen             */
@media (max-width: 900px) {
  .announcement-bar,
  .utility-bar        { display: none; }

  /* Hide wholesale promo link; keep shipping if bar ever shows */
  .announcement-bar a { display: none; }

  /* Trust bar: collapse spacing between items on mobile */
  .trust-bar-inner    { gap: 0; flex-direction: column; align-items: flex-start; }
  .trust-item         { padding: 4px 0; }

  /* Fully hide trust bar on mobile */
  .trust-bar          { display: none; }

  .hdr-icon-pair,
  #hdrThemeWrap       { display: none !important; }

  /* Compact header — no extra spacing, flush to edges */
  .site-header        { box-shadow: none; }
  .site-header .container { padding: 0 8px; }
  .header-inner       { height: 48px; gap: 0; padding: 0; margin: 0;
                        overflow: visible; flex-wrap: nowrap; }
  .header-actions     { gap: 0; flex-shrink: 0; padding: 0; margin: 0; }
  .header-action-btn  { padding: 6px 5px; margin: 0; }

  /* Logo shrinks to fit without pushing buttons off-screen */
  .header-logo        { flex-shrink: 1; min-width: 0; padding: 0; margin: 0; margin-right: 4px; }
  .logo-svg           { width: 150px !important; height: auto !important;
                        max-width: 100%; display: block; }
}

/* ≤640px: hide Search; shrink logo */
@media (max-width: 640px) {
  .header-action-btn[aria-label="Search"] { display: none !important; }
  .logo-svg { width: 128px !important; }
}

/* ≤420px: hide Account — only Cart + Hamburger remain */
@media (max-width: 420px) {
  .header-action-btn[aria-label="Account"] { display: none !important; }
  .logo-svg { width: 105px !important; }
}

/* ≤900px: flush header container — no side padding on mobile */
@media (max-width: 900px) {
  .site-header .container { padding: 0 10px; }
}

/* ============================================================
   HOME REDESIGN — Tashy Kollections (home decor & fragrances)
   ============================================================ */

/* ---------- HERO (image background) ---------- */
.hero-home {
  position: relative;
  min-height: clamp(540px, 80vh, 800px);
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 62%;
  background-repeat: no-repeat;
  color: #fff;
  isolation: isolate;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg,
    rgba(22,18,15,0.82) 0%,
    rgba(22,18,15,0.55) 42%,
    rgba(22,18,15,0.12) 100%);
}
.hero-home-text { max-width: 640px; }
.hero-home .hero-eyebrow {
  color: var(--rose-light);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-home h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-home h1 span { color: var(--rose-light); font-style: italic; }
.hero-home p {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-home-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-home-proofs {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-home-proof { display: flex; align-items: center; gap: 9px; font-size: 0.84rem; color: rgba(255,255,255,0.82); }
.hero-home-proof svg { color: var(--rose-light); flex-shrink: 0; }

/* ---------- COLLECTION CARDS ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 38px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.collection-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rose-gold), var(--rose-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.collection-card:hover::after { transform: scaleX(1); }
.collection-card .cc-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose-gold);
  font-size: 1.9rem;
}
.collection-card h3 { margin-bottom: 8px; color: var(--black); }
.collection-card p { font-size: 0.86rem; color: var(--grey-mid); margin-bottom: 18px; flex-grow: 1; }
.collection-card .cc-link {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--rose-gold);
  display: inline-flex; align-items: center; gap: 6px;
}
.collection-card:hover .cc-link { gap: 10px; }

/* ---------- BRAND STATEMENT STRIP ---------- */
.statement {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.statement .statement-mark {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--rose-gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.statement h2 { margin-bottom: 16px; }
.statement p { font-size: 1.05rem; line-height: 1.8; }

/* ---------- THEME SWITCHER ---------- */
.theme-switch { position: relative; display: inline-flex; }
.theme-switch-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: none;
  z-index: 1400;
}
.theme-switch.open .theme-switch-menu { display: block; }
.theme-switch-menu .ts-title {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-mid); font-weight: 700; padding: 6px 10px 8px;
}
.theme-opt {
  display: flex; align-items: center; gap: 11px;
  width: 100%; padding: 9px 10px; border-radius: 9px;
  font-size: 0.86rem; color: var(--black); text-align: left;
  transition: background var(--transition);
}
.theme-opt:hover { background: var(--rose-pale); }
.theme-opt.active { font-weight: 700; color: var(--rose-gold); }
.theme-opt.active::after { content: "✓"; margin-left: auto; color: var(--rose-gold); }
.theme-dot {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: inset 0 0 0 2px #fff;
}
/* Mobile drawer theme row */
.mobile-theme-row { display: flex; gap: 10px; flex-wrap: wrap; padding: 4px 0 2px; }
.mobile-theme-row .theme-dot { width: 26px; height: 26px; cursor: pointer; }
.mobile-theme-row .theme-dot.active { outline: 2px solid var(--rose-gold); outline-offset: 2px; }

@media (max-width: 700px) {
  /* Block layout (not flex) on phones so the container can't exceed the
     viewport and overflow the text/CTAs to the right. */
  .hero-home {
    display: block; min-height: 0;
    padding: 84px 0 56px;
    background-position: center;
    text-align: center;
  }
  .hero-home-text { max-width: 100%; margin: 0 auto; }
  .hero-home .hero-eyebrow { letter-spacing: 0.16em; }
  .hero-home h1 { font-size: clamp(1.9rem, 6.4vw, 2.6rem); }
  .hero-home p { max-width: 100%; margin-left: auto; margin-right: auto; }
  /* Stack the CTAs full-width so they never run off-screen */
  .hero-home-ctas { flex-direction: column; align-items: center; gap: 12px; }
  .hero-home-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-home-proofs { gap: 18px; justify-content: center; }

  /* Shop by Collection — center the tiles as a single column on phones */
  .collection-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
/* ============================================================
   MOBILE POLISH + PRODUCT SHARE  (responsive fixes)
   ============================================================ */
/* Product page share / copy-link buttons */
.pdp-share { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin: 18px 0 4px; }
.pdp-share .share-label { font-size: 0.8rem; font-weight: 600; color: var(--grey-mid); margin-right: 4px; }
.pdp-share a, .pdp-share button {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  padding: 8px 12px; border-radius: 999px;
  border: 1px solid var(--grey-light); background: var(--white); color: var(--black);
  text-decoration: none; transition: all var(--transition);
}
.pdp-share a:hover, .pdp-share button:hover { border-color: var(--rose-gold); color: var(--rose-gold); }

@media (max-width: 900px) {
  /* Bigger logo on mobile */
  .logo-svg { width: 200px !important; }
  /* Center the About story */
  .about-story { text-align: center; }
  .about-story .about-img { max-width: 460px; margin-left: auto; margin-right: auto; }
  /* Center the Contact page cards */
  .contact-grid { text-align: center; }
  .contact-info-card, .contact-form-card { margin-left: auto; margin-right: auto; width: 100%; max-width: 560px; }
  .contact-form-card form, .contact-form-card .form-grid { text-align: left; }
  .contact-info-card .contact-item { justify-content: center; }
  /* Center the Shop header + product area */
  .shop-page-header .container { text-align: center; }
  .shop-main { width: 100%; }
  .pdp-share { justify-content: center; }
}

@media (max-width: 640px) {
  .logo-svg { width: 175px !important; }
  /* Smaller price + centered, stacked add-to-cart on product cards */
  .product-price, .price-current { font-size: 0.92rem; }
  .price-compare { font-size: 0.78rem; }
  .product-footer { flex-direction: column; align-items: stretch; gap: 8px; padding-top: 10px; }
  .product-footer .product-price { text-align: center; }
  .quick-add-btn { width: 100%; text-align: center; justify-content: center; padding: 10px 12px; }
}

@media (max-width: 420px) {
  .logo-svg { width: 150px !important; }
}

/* Contact page — mobile centering polish */
@media (max-width: 640px) {
  .contact-form-card, .contact-info-card { padding: 24px; }
  .contact-form-card .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   SHOP PAGE — MOBILE (centered filters, no right-overflow)
   ============================================================ */
@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr !important; gap: 20px; }
  .shop-layout, .shop-main, .filter-sidebar { min-width: 0; }
  .filter-sidebar { position: static; }
  .filter-card { padding: 18px 16px; }
  .filter-panel-title { text-align: center; font-size: 1.2rem; padding-bottom: 12px; }
  /* Category / Sort links become a centered, wrapping chip cloud */
  .filter-sidebar .filter-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 18px; }
  .filter-sidebar .filter-title { flex: 0 0 100%; text-align: center; margin-bottom: 4px; }
  .filter-sidebar .filter-tag {
    display: inline-flex; width: auto; margin: 0; justify-content: center;
    font-size: 0.85rem; padding: 7px 14px; border-radius: 999px;
  }
  /* Search bar full width */
  .shop-search-bar { width: 100%; }
  /* Product grid: equal 2-up that fills/centres, cards can shrink */
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-grid > .product-card { min-width: 0; }
}

/* Shop search bar — keep the button on-screen on mobile */
@media (max-width: 900px) {
  .shop-search-bar { width: 100%; flex-wrap: nowrap; }
  .shop-search-bar input, .shop-search-bar .form-control { min-width: 0; flex: 1 1 auto; }
  .shop-search-bar .btn { flex: 0 0 auto; white-space: nowrap; }
}

/* ============================================================
   MOBILE CENTERING POLISH
   Centre page content site-wide, centre the contact form, and
   centre the shop / category product grid so it fits any screen.
   `.shop-main .product-grid` (two classes) outranks the earlier
   single-class `.product-grid` rules, so no !important needed.
   ============================================================ */

/* Shop & category: centre the items, always 2-up, never overflow.
   minmax(0,240px) lets each card shrink to fit small screens and
   caps its width so a pair (or a lone last card) centres instead of
   stretching edge-to-edge. Kicks in where the sidebar stacks (900px). */
@media (max-width: 900px) {
  .shop-main .product-grid {
    grid-template-columns: repeat(2, minmax(0, 240px));
    justify-content: center;
    gap: clamp(10px, 3vw, 18px);
  }
  .shop-main .product-grid > .product-card { min-width: 0; width: 100%; }
  .product-name { overflow-wrap: break-word; }
}

/* General + contact centring on phones */
@media (max-width: 640px) {
  /* 1) Centre every page's section intros */
  .section-title,
  .section-sub { text-align: center; }

  /* 2) Contact page — centre the form card and its heading */
  .contact-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .contact-info-card,
  .contact-form-card {
    width: 100%; max-width: 540px;
    margin-left: auto; margin-right: auto;
  }
  .contact-form-card > h3 { text-align: center; }
  /* …but keep the labels/fields left-aligned for normal form reading */
  .contact-form-card form,
  .contact-form-card .form-grid { text-align: left; }
}
