/* ============================================================
   APEX GLOW — Traditional Premium Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --bg:           #f7f5f0;
  --bg-card:      #ffffff;
  --bg-section:   #f0ede7;
  --bg-dark:      #0f1c3f;
  --bg-dark-2:    #162252;

  --navy:         #0f1c3f;
  --navy-mid:     #1e3163;
  --gold:         #b8922a;
  --gold-light:   #d4aa46;
  --gold-pale:    #f5ecd4;
  --steel:        #2e5fa3;
  --steel-light:  #4a7fcb;

  --text-primary:   #111827;
  --text-secondary: #4b5563;
  --text-muted:     #9ca3af;
  --text-on-dark:   #e8e4d9;
  --text-on-dark-2: #94a3b8;

  --border:       #ddd8ce;
  --border-dark:  #c5bfb2;
  --divider:      #ede9e2;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   14px;
  --radius-xl:   20px;
  --radius-full: 9999px;

  --shadow-xs:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --shadow-card: 0 2px 12px rgba(15,28,63,0.08);

  --transition: 0.18s ease;
  --transition-slow: 0.35s ease;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Georgia, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-dark); border-radius: 3px; }

/* ─── Layout ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ─── Typography ─────────────────────────────────────────── */
.heading-xl {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.heading-lg {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
}
.heading-md {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--navy);
}
.heading-sm {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.text-gold {
  color: var(--gold);
}
.text-navy { color: var(--navy); }

/* ─── NAVBAR ─────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  padding: 0 24px;
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.brand-logo {
  width: 34px; height: 34px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold-light);
}
.brand-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.navbar-links {
  display: flex; align-items: center; gap: 0;
  flex: 1; justify-content: center;
}
.nav-link {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--navy); font-weight: 600; }
.navbar-actions {
  display: flex; align-items: center; gap: 12px;
}
.cart-btn {
  position: relative;
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: var(--transition);
  background: white;
}
.cart-btn:hover { border-color: var(--navy); color: var(--navy); }
.cart-badge {
  position: absolute; top: -5px; right: -5px;
  width: 17px; height: 17px;
  background: var(--navy);
  border-radius: 50%;
  font-size: 0.62rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: white; border: 2px solid white;
}
.btn-nav-cta {
  padding: 9px 20px;
  background: var(--navy);
  border-radius: var(--radius-md);
  font-size: 0.85rem; font-weight: 600;
  color: white;
  transition: var(--transition);
}
.btn-nav-cta:hover { background: var(--navy-mid); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-secondary); border-radius: 2px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  padding: 110px 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f1c3f 0%, #162252 55%, #1a2b66 100%);
  pointer-events: none;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(184,146,42,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; width: 100%;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 20px;
  border: 1px solid rgba(184,146,42,0.35);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: rgba(184,146,42,0.08);
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1rem;
  color: var(--text-on-dark-2);
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 36px;
  margin-top: 48px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-size: 1.7rem; font-weight: 800;
  color: #fff; letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.73rem; color: var(--text-on-dark-2);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Hero visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-img-frame {
  position: relative;
  width: 320px; height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.hero-img-ring {
  position: absolute;
  width: 360px; height: 360px;
  border: 1px solid rgba(184,146,42,0.15);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-img-ring-2 {
  width: 280px; height: 280px;
  border-color: rgba(184,146,42,0.1);
}
.hero-phone-img {
  width: 220px;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
  animation: float 6s ease-in-out infinite;
  position: relative; z-index: 2;
}
.hero-float-badge {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  backdrop-filter: blur(10px);
  color: white;
  z-index: 3;
}
.hero-float-badge-1 { top: 18%; left: -30px; }
.hero-float-badge-2 { bottom: 22%; right: -20px; }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  font-size: 0.9rem; font-weight: 600;
  transition: var(--transition);
  cursor: pointer; border: none; font-family: inherit;
}
.btn-primary {
  background: var(--navy); color: white;
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-gold {
  background: var(--gold); color: white;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-secondary {
  background: white; color: var(--navy);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--navy); transform: translateY(-1px); }
.btn-outline-light {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.btn-sm  { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg  { padding: 15px 32px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ─── TRUST STRIP ───────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 24px;
}
.trust-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(184,146,42,0.15);
  border: 1px solid rgba(184,146,42,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.trust-label   { font-size: 0.82rem; font-weight: 600; color: #fff; }
.trust-sublabel{ font-size: 0.72rem; color: var(--text-on-dark-2); }

/* ─── SECTION HEADER ─────────────────────────────────────── */
.section-header { margin-bottom: 44px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-eyebrow::before {
  content: ''; display: block; width: 24px; height: 2px;
  background: var(--gold); border-radius: 1px;
}
.section-title  { margin-bottom: 10px; }
.section-subtitle { font-size: 0.95rem; color: var(--text-secondary); max-width: 520px; }

/* ─── PRODUCT CARDS ─────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 20px;
}
.product-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-card);
}
.product-card:hover {
  border-color: var(--border-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.product-card-img {
  aspect-ratio: 1;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  padding: 28px; position: relative;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: var(--transition-slow);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
  position: relative;
  z-index: 1;
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 8px; border-radius: var(--radius-sm);
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  z-index: 10;
}
.badge-new  { background: var(--navy); color: white; }
.badge-sale { background: #c53030; color: white; }
.badge-cpo  { background: var(--gold-pale); color: var(--gold); border: 1px solid rgba(184,146,42,0.3); }
.product-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-vendor {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); margin-bottom: 5px;
}
.product-card-title {
  font-size: 1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 6px; line-height: 1.3;
}
.product-card-meta {
  font-size: 0.77rem; color: var(--text-muted);
  margin-bottom: auto; padding-bottom: 14px;
}
.product-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid var(--divider);
}
.product-price-group { display: flex; flex-direction: column; }
.product-price {
  font-size: 1.15rem; font-weight: 800; color: var(--navy);
}
.product-price-original {
  font-size: 0.78rem; color: var(--text-muted); text-decoration: line-through;
}
.product-savings { font-size: 0.7rem; color: #16a34a; font-weight: 600; }
.product-card-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-muted);
  transition: var(--transition);
}
.product-card:hover .product-card-btn {
  background: var(--navy); border-color: var(--navy); color: white;
}

/* ─── FILTER BAR ─────────────────────────────────────────── */
.filter-bar { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-btn {
  padding: 7px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem; font-weight: 500;
  color: var(--text-secondary);
  background: white; border: 1px solid var(--border);
  transition: var(--transition); cursor: pointer;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active {
  background: var(--navy); border-color: var(--navy);
  color: white; font-weight: 600;
}

/* ─── FEATURE CARDS ─────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  border: 1px solid rgba(184,146,42,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px;
}
.feature-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.feature-text  { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }

/* ─── PRODUCT DETAIL PAGE ─────────────────────────────────── */
.product-page { padding-top: 108px; padding-bottom: 72px; }
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.product-gallery-col { position: sticky; top: 88px; }
.product-main-img-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px;
}
#main-product-img {
  max-width: 260px; max-height: 340px; object-fit: contain;
  filter: drop-shadow(0 12px 36px rgba(0,0,0,0.18));
  transition: var(--transition-slow);
}
.product-thumbnails { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.product-thumb {
  width: 68px; height: 68px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 6px; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.product-thumb.active, .product-thumb:hover { border-color: var(--navy); background: white; }
.product-thumb img { object-fit: contain; max-height: 52px; }

.product-details-col {}
.product-crumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 16px;
}
.product-crumb a { color: var(--text-muted); transition: var(--transition); }
.product-crumb a:hover { color: var(--navy); }
.product-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 10px; line-height: 1.15;
}
.product-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.stars { color: var(--gold); font-size: 0.88rem; }
.rating-count { font-size: 0.8rem; color: var(--text-muted); }
.product-price-block {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 24px; padding: 18px 20px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--navy);
}
.product-current-price { font-size: 2rem; font-weight: 800; color: var(--navy); }
.product-was-price { font-size: 0.95rem; color: var(--text-muted); text-decoration: line-through; }
.product-savings-badge {
  padding: 3px 8px;
  background: #dcfce7; border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm); font-size: 0.75rem; font-weight: 700; color: #15803d;
}
.product-options { margin-bottom: 22px; }
.option-label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.option-label-val { color: var(--navy); text-transform: none; letter-spacing: 0; font-weight: 700; }
.option-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.option-chip {
  padding: 7px 14px; border-radius: var(--radius-md);
  font-size: 0.82rem; font-weight: 500;
  background: white; border: 1px solid var(--border);
  color: var(--text-secondary); cursor: pointer; transition: var(--transition);
}
.option-chip:hover { border-color: var(--navy); color: var(--navy); }
.option-chip.selected {
  background: var(--navy); border-color: var(--navy); color: white; font-weight: 600;
}
.option-chip.unavailable { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.color-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.color-chip {
  padding: 7px 12px; border-radius: var(--radius-md);
  font-size: 0.8rem; font-weight: 500;
  background: white; border: 2px solid var(--border);
  color: var(--text-secondary); cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.color-dot { width: 11px; height: 11px; border-radius: 50%; }
.color-chip:hover, .color-chip.selected { border-color: var(--navy); color: var(--navy); }
.condition-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.condition-chip {
  padding: 9px 16px; border-radius: var(--radius-md);
  font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--transition);
  border: 1px solid var(--border); background: white; color: var(--text-secondary);
}
.condition-chip:hover, .condition-chip.selected { border-color: var(--navy); color: var(--navy); font-weight: 600; }
.condition-premium.selected  { background: var(--gold-pale); border-color: var(--gold); color: var(--gold); }
.condition-excellent.selected{ background: #eff6ff; border-color: var(--steel); color: var(--steel); }
.condition-good.selected     { background: #f0fdf4; border-color: #16a34a; color: #15803d; }

.product-actions { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.btn-add-cart {
  background: var(--navy); color: white;
  font-size: 0.95rem; font-weight: 700;
}
.btn-add-cart:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-wishlist { background: white; border: 1px solid var(--border); color: var(--text-secondary); }
.btn-wishlist:hover { border-color: var(--navy); color: var(--navy); }

.product-guarantees {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 8px; margin-bottom: 24px;
}
.guarantee-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-md);
}
.guarantee-icon { font-size: 1.1rem; flex-shrink: 0; }
.guarantee-title { font-size: 0.8rem; font-weight: 700; color: var(--navy); }
.guarantee-text  { font-size: 0.72rem; color: var(--text-muted); }

/* Product Tabs */
.product-tabs {
  max-width: 1200px; margin: 44px auto 0; padding: 0 24px;
  border-top: 1px solid var(--border); padding-top: 40px;
}
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.tab-btn {
  padding: 10px 22px; font-size: 0.87rem; font-weight: 600;
  color: var(--text-muted); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: var(--transition);
  background: none; border-top: none; border-left: none; border-right: none;
  cursor: pointer; font-family: inherit;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--navy); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.product-description-html { color: var(--text-secondary); line-height: 1.8; }
.product-description-html h3, .product-description-html h4 {
  color: var(--navy); font-family: 'Playfair Display', serif;
  margin-top: 22px; margin-bottom: 10px;
}
.product-description-html p { margin-bottom: 12px; }
.product-description-html ul { padding-left: 20px; margin-bottom: 12px; list-style: disc; }
.product-description-html li { margin-bottom: 5px; }
.product-description-html strong { color: var(--text-primary); }

/* ─── CERTIFIED BANNER ───────────────────────────────────── */
.certified-banner {
  background: var(--gold-pale);
  border: 1px solid rgba(184,146,42,0.3);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.certified-icon { font-size: 1.8rem; }
.certified-title { font-size: 0.88rem; font-weight: 700; color: var(--gold); margin-bottom: 2px; }
.certified-text  { font-size: 0.77rem; color: #92720c; }

/* ─── CONDITION INFO ─────────────────────────────────────── */
.condition-info {
  margin-top: 8px; padding: 10px 14px;
  background: #f0f9ff; border-radius: var(--radius-md);
  border-left: 3px solid var(--steel);
  font-size: 0.8rem; color: var(--text-secondary);
}

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-hero {
  padding: 130px 24px 72px;
  background: var(--navy);
  text-align: center; position: relative; overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(184,146,42,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.about-hero .heading-xl { color: white; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.about-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-visual-card {
  background: var(--navy); color: white;
  border-radius: var(--radius-xl); padding: 36px;
  position: relative; overflow: hidden;
}
.about-stat-big {
  font-size: 3.2rem; font-weight: 900;
  letter-spacing: -0.04em; color: var(--gold-light);
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-page { padding: 108px 24px 72px; }
.contact-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start;
}
.contact-form-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px;
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 11px 14px;
  color: var(--text-primary); font-family: inherit;
  font-size: 0.9rem; transition: var(--transition); outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--navy); background: white;
  box-shadow: 0 0 0 3px rgba(15,28,63,0.08);
}
.form-textarea { resize: vertical; min-height: 130px; }
.form-select option { background: white; }
.contact-info-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 28px;
  margin-bottom: 16px; box-shadow: var(--shadow-xs);
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--divider);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: var(--gold-pale); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* ─── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  padding: 108px 24px 48px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero .section-eyebrow { color: var(--gold-light); }
.page-hero .section-eyebrow::before { background: var(--gold-light); }
.page-hero h1 { color: white; }
.page-hero p  { color: var(--text-on-dark-2); }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 56px 24px 28px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px; margin-bottom: 44px;
}
.footer-brand-name {
  font-size: 1.2rem; font-weight: 700; color: white;
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.footer-tagline { font-size: 0.83rem; color: var(--text-on-dark-2); line-height: 1.6; max-width: 260px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 34px; height: 34px;
  border-radius: var(--radius-md); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--text-on-dark-2); transition: var(--transition);
}
.social-btn:hover { background: rgba(184,146,42,0.15); border-color: rgba(184,146,42,0.3); color: var(--gold-light); }
.footer-col-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-on-dark-2); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }

/* ─── TRUST SEALS & LEGAL BADGES ────────────────────────── */
.footer-trust-seals {
  padding-top: 24px; margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px;
}
.footer-anpc-group { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.anpc-badge-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  font-size: 0.75rem; font-weight: 600; color: #e2e8f0; text-decoration: none;
  transition: var(--transition);
}
.anpc-badge-link:hover {
  background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); color: white;
}
.anpc-badge-icon {
  width: 22px; height: 22px; border-radius: 4px; background: #0284c7; color: white;
  font-size: 0.65rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}
.partner-logos-group { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.partner-badge {
  font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.05); padding: 5px 10px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08); display: inline-flex; align-items: center; gap: 6px;
}

/* ─── HERITAGE COUNTER SECTION ──────────────────────────── */
.heritage-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1738 100%);
  color: white; padding: 64px 24px; position: relative; overflow: hidden;
  border-top: 1px solid rgba(184,146,42,0.2); border-bottom: 1px solid rgba(184,146,42,0.2);
}
.heritage-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.heritage-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl); padding: 28px 24px;
  text-align: center; backdrop-filter: blur(10px);
  transition: var(--transition);
}
.heritage-card:hover {
  transform: translateY(-3px); background: rgba(255,255,255,0.07);
  border-color: rgba(184,146,42,0.4);
}
.heritage-number {
  font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 800;
  color: var(--gold-light); margin-bottom: 6px; letter-spacing: -0.02em;
}
.heritage-title { font-size: 0.92rem; font-weight: 700; color: white; margin-bottom: 4px; }
.heritage-subtitle { font-size: 0.78rem; color: var(--text-on-dark-2); line-height: 1.5; }
.footer-link { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-link:hover { color: white; }
.newsletter-input-wrap { display: flex; gap: 6px; margin-top: 8px; }
.newsletter-input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 9px 12px;
  color: white; font-family: inherit; font-size: 0.85rem; outline: none; transition: var(--transition);
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-btn {
  padding: 9px 14px; background: var(--gold);
  border-radius: var(--radius-md); color: white;
  font-weight: 600; font-size: 0.82rem; white-space: nowrap; transition: var(--transition);
}
.newsletter-btn:hover { background: var(--gold-light); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-link { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-link:hover { color: rgba(255,255,255,0.7); }

/* ─── CART SIDEBAR ───────────────────────────────────────── */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000; opacity: 0; pointer-events: none; transition: var(--transition);
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed; top: 0; right: -440px;
  width: 420px; max-width: 100vw; height: 100vh;
  background: white; border-left: 1px solid var(--border);
  z-index: 2001; display: flex; flex-direction: column;
  transition: right 0.3s ease;
}
.cart-sidebar.open { right: 0; }
.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--border);
}
.cart-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.cart-close {
  width: 32px; height: 32px; border-radius: var(--radius-md);
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.cart-close:hover { color: var(--navy); border-color: var(--navy); }
.cart-items { flex: 1; overflow-y: auto; padding: 14px; }
.cart-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 8px;
}
.cart-item-img {
  width: 68px; height: 68px; background: white;
  border-radius: var(--radius-sm); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; padding: 6px; flex-shrink: 0;
}
.cart-item-img img { object-fit: contain; max-height: 54px; }
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.cart-item-meta { font-size: 0.74rem; color: var(--text-muted); }
.cart-item-price { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-top: 4px; }
.cart-item-remove { font-size: 0.9rem; color: var(--text-muted); cursor: pointer; transition: var(--transition); padding: 2px; }
.cart-item-remove:hover { color: #c53030; }
.cart-footer { padding: 18px 22px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; margin-bottom: 14px; }
.cart-total-label { font-size: 0.88rem; color: var(--text-secondary); }
.cart-total-value { font-size: 1.35rem; font-weight: 800; color: var(--navy); }
.cart-empty { text-align: center; padding: 56px 20px; color: var(--text-muted); }
.cart-empty-icon { font-size: 2.5rem; margin-bottom: 14px; }

/* ─── TOAST ──────────────────────────────────────────────── */
.toast-container {
  position: fixed; bottom: 20px; right: 20px;
  z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none;
}
.toast {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 13px 18px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.87rem; color: var(--text-primary);
  box-shadow: var(--shadow-md);
  animation: slideIn 0.25s ease forwards;
  pointer-events: all; max-width: 340px;
  border-left: 3px solid var(--navy);
}
.toast-icon { font-size: 1.1rem; }

/* ─── STICKY ATC ─────────────────────────────────────────── */
.sticky-atc {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: white; border-top: 1px solid var(--border);
  padding: 14px 24px; box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  transform: translateY(100%); transition: transform 0.3s ease;
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.sticky-atc-name  { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.sticky-atc-price { font-size: 0.85rem; color: var(--text-secondary); }

/* ─── MOBILE MENU ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; top: 68px;
  background: white; z-index: 999;
  flex-direction: column; padding: 24px;
  gap: 4px; border-top: 1px solid var(--border);
}
.mobile-menu .nav-link { padding: 12px 16px; font-size: 1rem; border-radius: var(--radius-md); }
.mobile-menu .btn-nav-cta { display: block; margin-top: 12px; text-align: center; }

/* ─── MISC UTILITIES ─────────────────────────────────────── */
.divider { height: 1px; background: var(--divider); }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }

/* Shimmer */
.shimmer {
  background: linear-gradient(90deg, var(--bg) 0%, var(--divider) 50%, var(--bg) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}
@keyframes shimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up-delay-2 { transition-delay: 0.16s; }
.fade-up-delay-3 { transition-delay: 0.24s; }
.fade-up-delay-4 { transition-delay: 0.32s; }

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { margin-top: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-layout { grid-template-columns: 1fr; gap: 36px; }
  .product-gallery-col { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .product-guarantees { grid-template-columns: 1fr; }
  .trust-strip-inner { gap: 24px; }
}
@media (max-width: 480px) {
  .hero { padding: 96px 16px 56px; }
  .hero-img-frame { width: 240px; height: 360px; }
  .hero-phone-img { width: 180px; }
  .cart-sidebar { width: 100%; }
  .hero-float-badge { display: none; }
}
