/* SPJ Silver — Fine 925 Sterling Silver Jewellery — Main Stylesheet */

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

/* -------------------------------------------------------
   CSS Variables — 925 Sterling Silver Luxury Palette
   Charcoal + pure white surfaces, sterling silver accents
   and champagne gold reserved for premium CTAs & highlights.
   Variable NAMES are preserved from the previous theme so
   every existing component/markup keeps working — only the
   VALUES change (light luxury re-theme in place).
------------------------------------------------------- */
:root {
  /* Surfaces — clean premium white */
  --bg: #FFFFFF;
  --bg-2: #FAF9F7;         /* warm off-white */
  --bg-card: #FFFFFF;
  --bg-elevated: #F5F4F1;
  --border: #ECEAE6;
  --border-light: #E2DFDA;
  --border-gold: rgba(192,192,192,0.55);   /* sterling silver hairline */

  /* Text */
  --text-primary: #222222;
  --text-secondary: #666666;
  --text-muted: #999999;

  /* Accents */
  --gold: #D4AF37;         /* champagne gold — premium CTA / highlight */
  --gold-soft: #E8D48B;
  --saffron: #C9A227;      /* antique gold (was orange) — small accents/gradients */
  --silver: #C0C0C0;       /* sterling silver */
  --silver-deep: #9AA0A6;
  --charcoal: #1A1A1A;     /* deep charcoal black — header/footer/primary */
  --maroon: #2A2A2A;       /* repurposed → charcoal button base */
  --maroon-deep: #1A1A1A;
  --brown: #3A3A3A;
  --purple: #6E6E76;   /* neutralised (was mystical accent) */
  --royal: #4A4A50;    /* neutralised */
  --cream: #1A1A1A;    /* was bright heading text → now charcoal for light theme */

  --accent: #D4AF37;
  --accent-dark: #b9962c;

  --danger: #d64545;
  --success: #2f9e5f;
  --warning: #C9A227;

  --grid-color: rgba(192,192,192,0.08);
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --radius: 14px;
  --shadow-gold: 0 18px 50px -20px rgba(26,26,26,0.22);
  --shadow-soft: 0 24px 60px -28px rgba(26,26,26,0.18);
}

/* -------------------------------------------------------
   Reset & Base
------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 70% 50% at 8% -8%, rgba(212,175,55,0.05), transparent 60%),
    radial-gradient(ellipse 65% 55% at 100% 0%, rgba(192,192,192,0.10), transparent 58%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(192,192,192,0.06), transparent 60%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .section-title, .hero-title { letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

h1, h2, h3, .section-title, .hero-title { font-family: var(--font-display); }

/* -------------------------------------------------------
   Decorative Background Pattern (subtle temple grid + stars)
------------------------------------------------------- */
.grid-bg {
  background-image:
    linear-gradient(var(--grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Twinkling starfield overlay — apply to a positioned container */
.starfield { position: relative; overflow: hidden; }
.starfield::before,
.starfield::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(255,248,231,0.9), transparent),
    radial-gradient(1.5px 1.5px at 70% 20%, rgba(212,175,55,0.9), transparent),
    radial-gradient(1px 1px at 40% 70%, rgba(255,248,231,0.7), transparent),
    radial-gradient(1.5px 1.5px at 85% 60%, rgba(255,248,231,0.8), transparent),
    radial-gradient(1px 1px at 55% 45%, rgba(212,175,55,0.7), transparent),
    radial-gradient(1px 1px at 12% 80%, rgba(255,248,231,0.6), transparent),
    radial-gradient(1.5px 1.5px at 90% 90%, rgba(212,175,55,0.8), transparent);
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  animation: twinkle 4s ease-in-out infinite;
}
.starfield::after { animation-delay: 2s; opacity: 0.6; transform: translateY(6px); }

@keyframes twinkle {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

/* Floating golden particles container */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.particles span {
  position: absolute;
  bottom: -12px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft), rgba(212,175,55,0));
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(0.6); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-105vh) scale(1.1); opacity: 0; }
}

/* Diya / moon glow — soft pulsing halo */
.diya-glow { position: relative; }
.diya-glow::after {
  content: '';
  position: absolute;
  inset: -20%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,0,0.35), rgba(212,175,55,0.12) 45%, transparent 70%);
  filter: blur(6px);
  z-index: -1;
  animation: glowPulse 3.4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.96); }
  50%      { opacity: 1; transform: scale(1.06); }
}

/* Incense smoke wisp */
@keyframes smokeRise {
  0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  15%  { opacity: 0.5; }
  50%  { transform: translateY(-40px) translateX(6px) scale(1.3); opacity: 0.35; }
  100% { transform: translateY(-90px) translateX(-6px) scale(1.7); opacity: 0; }
}

/* Gentle float for icons */
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.floaty { animation: floaty 5s ease-in-out infinite; }

/* Slow rotating mandala */
@keyframes spinSlow { to { transform: rotate(360deg); } }
.spin-slow { animation: spinSlow 60s linear infinite; }

/* Fade-up entrance (used alongside AOS as a fallback) */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerText {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.text-gold {
  background: linear-gradient(100deg, var(--gold) 0%, #f6e27a 25%, var(--saffron) 50%, #f6e27a 75%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerText 6s linear infinite;
}

/* Divider ornament */
.om-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  margin: 8px 0 28px;
}
.om-divider::before, .om-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.om-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* -------------------------------------------------------
   Navigation — Premium Sticky Header
------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(236,234,230,0.9);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 8px 30px -14px rgba(26,26,26,0.16);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--charcoal);
  background: radial-gradient(circle at 50% 35%, #2c2c2c, #1A1A1A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 6px 18px -8px rgba(26,26,26,0.5);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.14em;
  color: var(--cream);
}
.nav-logo-text b { color: var(--gold); font-weight: 700; }

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
  padding: 0 24px;
  flex-shrink: 1;
  min-width: 0;
}
.nav-links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  padding: 9px 14px;
  border-radius: 999px;
  position: relative;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a {
  color: var(--text-secondary);
}
.nav-links a:hover {
  color: var(--charcoal);
  background: rgba(26,26,26,0.05);
}
.nav-links a.active {
  color: var(--charcoal);
  background: transparent;
  font-weight: 700;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--silver));
}

@media (min-width: 1240px) {
  .nav-links { display: flex; }
}
/* Slightly denser between 1240–1340px so eight items never crowd the logo/icons */
@media (min-width: 1240px) and (max-width: 1339px) {
  .nav-links { gap: 0; padding: 0 12px; }
  .nav-links a { padding: 9px 10px; font-size: 11.5px; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.nav-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  color: var(--text-primary);
  position: relative;
  transition: background var(--transition), color var(--transition);
  z-index: 1001;
}
.nav-btn:hover { background: rgba(26,26,26,0.06); color: var(--gold); }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #1A1A1A;
  font-size: 9px;
  font-weight: 800;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Hamburger only below desktop nav breakpoint */
#hamburger { display: flex; }
@media (min-width: 1240px) { #hamburger { display: none; } }

/* -------------------------------------------------------
   Mobile Menu Overlay
------------------------------------------------------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.10), transparent 55%),
    linear-gradient(180deg, #FFFFFF, #FAF9F7);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 88px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76,0,0.24,1);
  overflow-y: auto;
}
.menu-overlay.open { transform: translateX(0); }

.menu-nav-links { list-style: none; margin-top: 8px; }
.menu-nav-links li { border-bottom: 1px solid var(--border); }
.menu-nav-links a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  transition: color var(--transition), padding-left var(--transition);
}
.menu-nav-links a:hover { color: var(--gold); padding-left: 8px; }

.menu-warranty-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #1A1A1A;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-warranty-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* -------------------------------------------------------
   Hero Section
------------------------------------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 82px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--cream);
}
.hero-title-fade { color: var(--gold); display: block; }

.hero-desc {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.hero-label,
.hero-title,
.hero-desc,
.hero-actions,
.hero-stats {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  position: relative;
  z-index: 2;
}

/* -------------------------------------------------------
   Buttons
------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: none;
  gap: 8px;
  white-space: nowrap;
}

.btn-primary {
  background: var(--charcoal);
  color: #FFFFFF;
  box-shadow: 0 10px 24px -12px rgba(26,26,26,0.5);
}
.btn-primary:hover { transform: translateY(-2px); background: #000000; box-shadow: 0 16px 34px -14px rgba(26,26,26,0.55); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  border-color: var(--charcoal);
  background: var(--charcoal);
  color: #FFFFFF;
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.btn-ghost:hover { color: var(--charcoal); border-color: var(--silver); }

/* Champagne-gold premium CTA (reserved / used sparingly) */
.btn-maroon {
  background: linear-gradient(135deg, #E6C766 0%, var(--gold) 55%, #b9962c 100%);
  color: #1A1A1A;
}
.btn-maroon:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -12px rgba(212,175,55,0.6); }

/* Gold accent CTA helper (opt-in) */
.btn-gold {
  background: linear-gradient(135deg, #E6C766 0%, var(--gold) 55%, #b9962c 100%);
  color: #1A1A1A;
  box-shadow: 0 10px 26px -12px rgba(212,175,55,0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(212,175,55,0.6); }

.btn-sm { padding: 10px 20px; font-size: 11px; }
.btn-lg { padding: 17px 38px; font-size: 13px; }
.btn-full { width: 100%; }
.btn-icon { width: 44px; height: 44px; padding: 0; }

/* -------------------------------------------------------
   Stats Bar
------------------------------------------------------- */
.stats-bar {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-size: 24px;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  color: var(--gold);
}
.stat-label {
  font-size: 10px;
  color: var(--text-secondary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* -------------------------------------------------------
   Section Headers
------------------------------------------------------- */
.section {
  padding: 80px 24px;
  max-width: 1440px;
  margin: 0 auto;
}
.section-full { padding: 80px 24px; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '✦';
  color: var(--saffron);
  font-size: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin-bottom: 40px;
  color: var(--cream);
}
.section-title .accent { color: var(--gold); }

.section-subtitle {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: -24px 0 40px;
  line-height: 1.6;
}

/* -------------------------------------------------------
   Product Cards
------------------------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px -16px rgba(26,26,26,0.35);
}
.product-card:hover {
  border-color: var(--silver);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.product-card-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-elevated);
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }

.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: #1A1A1A;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}

.product-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  opacity: 0;
  box-shadow: 0 4px 12px -6px rgba(26,26,26,0.25);
}
.product-card:hover .product-card-wishlist { opacity: 1; }
.product-card-wishlist:hover { background: var(--charcoal); color: #FFFFFF; }
.product-card-wishlist.active { opacity: 1; color: #d64545; }

.product-card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-category {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 6px;
}
.product-card-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  flex: 1;
  color: var(--cream);
}
.product-card-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.price-sale {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--gold);
}
.price-original {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-discount {
  font-size: 11px;
  background: rgba(34,197,94,0.15);
  color: #4ade80;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}
.product-card-actions { display: flex; gap: 8px; }
.product-card-actions .btn { flex: 1; }

/* -------------------------------------------------------
   Category Cards
------------------------------------------------------- */
.category-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.07); }
.category-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--cream);
}
.category-count {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* -------------------------------------------------------
   Product Detail
------------------------------------------------------- */
.product-gallery { position: static !important; top: auto !important; }
@media (min-width: 1024px) {
  .pd-layout .product-gallery { position: sticky !important; top: 92px; align-self: start; }
}
.gallery-main {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  width: 72px; height: 72px; flex-shrink: 0; overflow: hidden;
  border: 1px solid var(--border); border-radius: 6px; cursor: pointer;
  transition: border-color var(--transition);
}
.gallery-thumb.active { border-color: var(--gold); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb-video { position: relative; }
.gallery-thumb-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: #fff; background: rgba(0,0,0,0.35); pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.gallery-main-video { cursor: default !important; }

/* -------------------------------------------------------
   Cart
------------------------------------------------------- */
.cart-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.cart-item-image {
  width: 80px; height: 80px; flex-shrink: 0; overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 6px;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.qty-control { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; height: 38px; overflow: hidden; }
.qty-btn {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; color: var(--gold); font-size: 16px; transition: background var(--transition);
}
.qty-btn:hover { background: var(--bg-elevated); }
.qty-input {
  width: 44px; height: 38px; text-align: center; background: none; border: none;
  color: var(--text-primary); font-size: 14px; font-weight: 600;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
}
.qty-input:focus { outline: none; }

/* -------------------------------------------------------
   Forms
------------------------------------------------------- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px;
}
.form-input {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border-light);
  color: var(--text-primary); padding: 13px 16px; font-size: 14px; border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition); outline: none; -webkit-appearance: none;
}
.form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,0.12); }
.form-input::placeholder { color: var(--text-muted); }
.form-input.error { border-color: var(--danger); }
.form-error { font-size: 11px; color: var(--danger); margin-top: 4px; }
.form-select {
  width: 100%; background: var(--bg-card); border: 1px solid var(--border-light);
  color: var(--text-primary); padding: 13px 16px; font-size: 14px; border-radius: 8px;
  transition: border-color var(--transition); outline: none; cursor: pointer;
}
.form-select:focus { border-color: var(--gold); }
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.form-checkbox input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0;
}

/* File Upload */
.upload-area {
  border: 1.5px dashed var(--border-light); padding: 32px; text-align: center;
  cursor: pointer; border-radius: 8px; transition: border-color var(--transition); position: relative;
}
.upload-area:hover, .upload-area.dragover { border-color: var(--gold); }
.upload-area input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

/* -------------------------------------------------------
   Order Summary Box
------------------------------------------------------- */
.summary-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.summary-row {
  display: flex; justify-content: space-between; align-items: center; padding: 10px 0;
  font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border);
}
.summary-row:last-child { border-bottom: none; }
.summary-row.total { color: var(--gold); font-weight: 700; font-size: 18px; font-family: var(--font-display); }

/* -------------------------------------------------------
   Badges & Tags
------------------------------------------------------- */
.badge {
  display: inline-flex; align-items: center; padding: 3px 9px; font-size: 10px;
  font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; border-radius: 999px;
}
.badge-success { background: rgba(34,197,94,0.15); color: #4ade80; }
.badge-warning { background: rgba(255,140,0,0.16); color: #fbbf24; }
.badge-danger  { background: rgba(239,68,68,0.15); color: #f87171; }
.badge-info    { background: rgba(106,27,154,0.25); color: #c4a2e6; }
.badge-muted   { background: rgba(255,248,231,0.08); color: var(--text-secondary); }

/* -------------------------------------------------------
   Toast Notifications
------------------------------------------------------- */
#toast-container {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px; max-width: 360px;
}
.toast {
  background: var(--bg-elevated); border: 1px solid var(--border-light); border-radius: 10px;
  padding: 14px 18px; font-size: 13px; display: flex; align-items: flex-start; gap: 12px;
  animation: toastIn 0.3s ease; box-shadow: var(--shadow-soft);
}
.toast.success { border-color: rgba(34,197,94,0.4); }
.toast.error   { border-color: rgba(239,68,68,0.4); }
.toast.warning { border-color: rgba(255,140,0,0.4); }
.toast-icon { font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.toast.success .toast-icon { color: #4ade80; }
.toast.error .toast-icon   { color: #f87171; }
.toast.warning .toast-icon { color: var(--saffron); }
.toast-msg { flex: 1; line-height: 1.5; }
.toast-close { background: none; border: none; color: var(--text-muted); font-size: 14px; cursor: pointer; padding: 0; line-height: 1; }
.toast-close:hover { color: var(--text-primary); }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

/* -------------------------------------------------------
   Loading Skeletons
------------------------------------------------------- */
@keyframes shimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }
.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-elevated) 37%, var(--bg-card) 63%);
  background-size: 400px 100%; animation: shimmer 1.4s ease infinite;
}

/* -------------------------------------------------------
   Footer
------------------------------------------------------- */
.footer {
  background: linear-gradient(180deg, #1F1F1F, #141414);
  border-top: 2px solid var(--gold);
  padding: 72px 24px 32px;
  position: relative;
  color: #cfcfcf;
}
/* Footer sits on charcoal — keep base text light; override inline theme-var text */
.footer .nav-logo-text > span:first-child { color: #FFFFFF !important; }
.footer p[style], .footer .footer-contact { color: #b7b7b7 !important; }
.footer-grid { max-width: 1440px; margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; } }
.footer-section-title {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li + li { margin-top: 12px; }
.footer-links a { font-size: 14px; color: #bdbdbd; transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.footer-bottom {
  max-width: 1440px; margin: 48px auto 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-direction: column; gap: 12px;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer-copyright { font-size: 12px; color: #9a9a9a; letter-spacing: 0.05em; text-transform: uppercase; }
.footer-legal-links { display: flex; gap: 24px; }
.footer-legal-links a { font-size: 11px; color: #9a9a9a; letter-spacing: 0.08em; text-transform: uppercase; transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--gold); }
.footer .om-divider { color: var(--gold); }
.footer .om-divider::before { background: linear-gradient(90deg, transparent, var(--gold)); }
.footer .om-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* Compliance Box */
.compliance-item { margin-bottom: 16px; }
.compliance-label { font-family: monospace; font-size: 11px; font-weight: 600; color: #cfcfcf; margin-bottom: 2px; }
.compliance-value { font-size: 12px; color: #9a9a9a; font-family: monospace; }

/* -------------------------------------------------------
   Feature / Why-Choose Cards
------------------------------------------------------- */
.feature-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  box-shadow: 0 6px 20px -16px rgba(26,26,26,0.3);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { border-color: var(--silver); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.feature-icon {
  font-size: 28px; margin-bottom: 18px; width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 40% 35%, rgba(212,175,55,0.16), rgba(192,192,192,0.14));
  border: 1px solid var(--border-gold);
}
.feature-title { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 10px; line-height: 1.3; color: var(--cream); }
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* -------------------------------------------------------
   Breadcrumb
------------------------------------------------------- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 32px; flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--text-secondary); }

/* -------------------------------------------------------
   Tabs
------------------------------------------------------- */
.tabs { display: flex; border-bottom: 1px solid var(--border); gap: 0; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto;
  padding: 12px 24px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 2px solid transparent; white-space: nowrap; cursor: pointer;
  transition: all var(--transition); background: none; border-top: none; border-left: none; border-right: none;
}
.tab:hover { color: var(--text-secondary); }
.tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; padding: 32px 0; }
.tab-content.active { display: block; }

/* -------------------------------------------------------
   Testimonials
------------------------------------------------------- */
.testimonial-card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 30px;
  position: relative; height: 100%;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 10px; right: 22px;
  font-family: var(--font-display); font-size: 70px; line-height: 1; color: rgba(212,175,55,0.22);
}
.testimonial-stars { color: var(--saffron); font-size: 14px; letter-spacing: 3px; margin-bottom: 16px; }
.testimonial-text { font-family: var(--font-serif); font-size: 17px; color: var(--text-primary); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--gold); }
.testimonial-role { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }

/* -------------------------------------------------------
   Newsletter
------------------------------------------------------- */
.newsletter-section {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.14), transparent 60%),
    linear-gradient(180deg, var(--bg-card), var(--bg-2));
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 24px; text-align: center; position: relative; overflow: hidden;
}
.newsletter-input-wrap { display: flex; max-width: 480px; margin: 0 auto; border: 1px solid var(--border-gold); border-radius: 999px; overflow: hidden; background: var(--bg); }
.newsletter-input { flex: 1; background: transparent; border: none; color: var(--text-primary); padding: 15px 22px; font-size: 14px; outline: none; }
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn {
  background: linear-gradient(135deg, var(--saffron), var(--gold)); color: #1A1A1A; border: none;
  padding: 15px 26px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap; transition: opacity var(--transition);
}
.newsletter-btn:hover { opacity: 0.9; }

/* -------------------------------------------------------
   Coupon Input
------------------------------------------------------- */
.coupon-wrap { display: flex; gap: 0; border: 1px solid var(--border-light); border-radius: 999px; overflow: hidden; }
.coupon-input { flex: 1; background: var(--bg); border: none; color: var(--text-primary); padding: 12px 18px; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; outline: none; }
.coupon-btn {
  background: var(--bg-elevated); border: none; border-left: 1px solid var(--border-light);
  color: var(--gold); padding: 12px 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; transition: all var(--transition);
}
.coupon-btn:hover { background: var(--gold); color: #1A1A1A; }

/* -------------------------------------------------------
   Warranty / Generic Form Page
------------------------------------------------------- */
.warranty-form-container { max-width: 640px; margin: 0 auto; padding: 80px 24px; }
.warranty-success-box { text-align: center; padding: 48px 32px; border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius); background: rgba(34,197,94,0.05); }
.warranty-id-badge {
  display: inline-block; background: var(--bg-elevated); border: 1px solid var(--border-gold); border-radius: 8px;
  padding: 12px 24px; font-family: monospace; font-size: 20px; font-weight: 700; letter-spacing: 0.1em; margin: 16px 0; color: var(--gold);
}

/* -------------------------------------------------------
   Account Pages
------------------------------------------------------- */
.account-sidebar { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.account-nav-link {
  display: flex; align-items: center; gap: 12px; padding: 16px 20px; font-size: 13px; font-weight: 500;
  color: var(--text-secondary); border-bottom: 1px solid var(--border); transition: all var(--transition);
}
.account-nav-link:hover { color: var(--gold); background: var(--bg-elevated); }
.account-nav-link.active { color: var(--gold); background: var(--bg-elevated); }

/* -------------------------------------------------------
   Payment Options
------------------------------------------------------- */
.payment-option {
  border: 1.5px solid var(--border); border-radius: 10px; padding: 16px 20px; cursor: pointer;
  transition: border-color var(--transition), background var(--transition); display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.payment-option:hover { border-color: var(--border-gold); }
.payment-option.selected { border-color: var(--gold); background: rgba(212,175,55,0.06); }
.payment-radio {
  width: 18px; height: 18px; border: 1.5px solid var(--text-muted); border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; transition: border-color var(--transition);
}
.payment-option.selected .payment-radio { border-color: var(--gold); }
.payment-radio::after { content: ''; width: 9px; height: 9px; background: var(--gold); border-radius: 50%; opacity: 0; transition: opacity var(--transition); }
.payment-option.selected .payment-radio::after { opacity: 1; }

/* -------------------------------------------------------
   Filter Sidebar
------------------------------------------------------- */
.filter-section { border-bottom: 1px solid var(--border); padding: 20px 0; }
.filter-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; cursor: pointer;
}
.filter-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.filter-item { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 13px; color: var(--text-secondary); transition: color var(--transition); }
.filter-item:hover { color: var(--gold); }
.filter-checkbox {
  width: 16px; height: 16px; border: 1px solid var(--border-light); border-radius: 4px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 10px; color: #1A1A1A; transition: all var(--transition);
}
.filter-item.active .filter-checkbox { background: var(--gold); border-color: var(--gold); }
.price-range { margin-top: 12px; }
.range-input { width: 100%; accent-color: var(--gold); }
.price-display { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-secondary); margin-top: 8px; }

/* Search dropdown result item */
.search-result-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.search-result-item:hover { background: var(--bg-elevated); }

/* -------------------------------------------------------
   Misc
------------------------------------------------------- */
.divider { border: none; border-top: 1px solid var(--border); margin: 32px 0; }
.text-label { font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.page-header { padding: 130px 24px 50px; max-width: 1440px; margin: 0 auto; }
.page-header-title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 72px); font-weight: 700; letter-spacing: -0.01em; color: var(--cream); }

/* Glass card */
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(250,249,247,0.7));
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-soft);
}

/* AOS */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Swiper */
.swiper-pagination-bullet { background: var(--text-muted) !important; opacity: 1 !important; width: 8px !important; height: 8px !important; }
.swiper-pagination-bullet-active { background: var(--gold) !important; width: 26px !important; border-radius: 4px !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* -------------------------------------------------------
   Responsive Utilities
------------------------------------------------------- */
@media (min-width: 640px) { .hero { padding: 140px 48px 100px; } .section { padding: 100px 48px; } }
@media (min-width: 1024px) { .hero { padding: 160px 80px 120px; } .section { padding: 120px 80px; } }
@media (max-width: 640px) {
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

*, *::before, *::after { min-width: 0; }
html, body { max-width: 100%; overflow-x: hidden; }

/* Hero responsive */
@media (max-width: 767px) {
  .hero { padding: 96px 20px 60px !important; min-height: auto !important; }
  .hero-title { font-size: clamp(34px, 10vw, 60px) !important; line-height: 1.05 !important; margin-bottom: 20px !important; }
  .hero-desc { font-size: 16px !important; margin-bottom: 28px !important; max-width: 100% !important; }
  .hero-actions { gap: 8px !important; }
  .hero-actions .btn { padding: 12px 20px !important; font-size: 11px !important; }
  .hero-stats { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 16px !important; padding-top: 24px !important; margin-top: 32px !important; }
}

@media (max-width: 1023px) {
  .checkout-grid { grid-template-columns: 1fr !important; }
  .summary-box { position: static !important; top: auto !important; }
}
@media (max-width: 600px) {
  .address-grid { grid-template-columns: 1fr !important; }
  .address-grid > [style*="grid-column:1/-1"], .address-grid > div { grid-column: 1 !important; }
}
@media (max-width: 1023px) { .lg-two-col { grid-template-columns: 1fr !important; gap: 32px !important; } }

@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .product-card-body { padding: 10px 12px 14px !important; }
  .product-card-name { font-size: 13px !important; line-height: 1.4 !important; }
  .product-card-name a { -webkit-line-clamp: 2; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
  .price-sale { font-size: 14px !important; font-weight: 800 !important; }
  .price-original { font-size: 11px !important; }
  .price-discount { display: none !important; }
  .product-card-actions { display: none !important; }
  .product-card-category { font-size: 9px !important; letter-spacing: 0.08em !important; }
  .product-card-image { cursor: pointer; }
}
@media (max-width: 480px) { .cart-item { gap: 10px !important; } .cart-item-image { width: 64px !important; height: 64px !important; } }
@media (max-width: 640px) {
  .stats-bar { display: grid !important; grid-template-columns: 1fr 1fr !important; }
  .stat-item { border-right: 1px solid var(--border) !important; border-bottom: 1px solid var(--border) !important; }
}
@media (max-width: 640px) {
  .section { padding: 60px 16px !important; }
  .section-full { padding: 60px 16px !important; }
  .page-header { padding: 96px 16px 40px !important; }
  .section-title { margin-bottom: 32px !important; }
}
@media (max-width: 640px) {
  .footer { padding: 48px 16px 24px !important; }
  .footer-bottom { margin-top: 24px !important; }
  .footer-legal-links { gap: 16px !important; }
  .footer-copyright { font-size: 11px !important; }
}
@media (max-width: 360px) {
  .nav-inner { padding: 0 12px !important; }
  .nav-logo-text { font-size: 16px !important; letter-spacing: 0.08em !important; }
  .nav-btn { width: 38px !important; height: 38px !important; }
}
img { max-width: 100%; height: auto; }
@media (max-width: 480px) { .category-card { min-height: 200px !important; } }
@media (max-width: 480px) {
  .newsletter-input-wrap { flex-direction: column !important; border-radius: 16px !important; }
  .newsletter-btn { width: 100% !important; padding: 14px !important; }
}
@media (max-width: 480px) { #toast-container { left: 16px !important; right: 16px !important; max-width: none !important; } }
@media (max-width: 480px) { .payment-option { flex-wrap: wrap !important; } }
@media (max-width: 480px) { .qty-btn { width: 40px !important; height: 40px !important; } .qty-input { width: 48px !important; height: 40px !important; } }
@media (max-width: 1023px) { .summary-box[style] { position: static !important; top: auto !important; } }

/* =======================================================
   PRODUCT DETAIL PAGE
   ======================================================= */
.pd-page { padding-top: 68px; max-width: 1440px; margin: 0 auto; padding-left: 24px; padding-right: 24px; padding-bottom: 40px; }
.pd-breadcrumb-wrap { padding: 20px 0 12px; }
.pd-layout { display: grid; grid-template-columns: minmax(0, 500px) 1fr; gap: 48px; align-items: start; margin-bottom: 64px; }
.pd-swiper .gallery-main { aspect-ratio: 1; max-height: 500px; overflow: hidden; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); cursor: zoom-in; }
.pd-swiper .gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.pd-dots { display: none; }
.pd-img-counter {
  display: none; position: absolute; bottom: 12px; right: 12px; background: rgba(26,26,26,0.6);
  backdrop-filter: blur(4px); color: #FFFFFF; font-size: 11px; font-weight: 600; padding: 4px 9px;
  border-radius: 20px; letter-spacing: 0.04em; z-index: 10; pointer-events: none;
}
.pd-thumbs { margin-top: 10px; }
.pd-category-line { display: flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--saffron); margin-bottom: 10px; }
.pd-category-line a { color: var(--saffron); transition: color .2s; }
.pd-category-line a:hover { color: var(--gold); }
.pd-sku { color: var(--text-muted); }
.pd-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 40px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.14; margin-bottom: 14px; color: var(--cream); }
.pd-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.pd-stars { display: flex; gap: 2px; align-items: center; }
.pd-rating-val { font-size: 14px; font-weight: 700; color: var(--saffron); }
.pd-rating-count { font-size: 13px; color: var(--text-secondary); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.pd-rating-count:hover { color: var(--gold); }
.pd-price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.pd-price-sale { font-size: 32px; font-weight: 800; font-family: var(--font-display); line-height: 1; color: var(--gold); }
.pd-price-original { font-size: 16px; color: var(--text-muted); text-decoration: line-through; font-weight: 400; }
.pd-discount-badge { background: rgba(34,197,94,0.15); color: #4ade80; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: 0.04em; }
.pd-stock-row { display: flex; align-items: center; gap: 7px; margin-bottom: 16px; }
.pd-stock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; display: inline-block; }
.pd-stock-text { font-size: 12px; text-transform: uppercase; letter-spacing: 0.07em; font-weight: 600; }
.pd-offers-strip { display: none; }
.pd-short-desc { font-family: var(--font-serif); font-size: 16px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
.pd-spec-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.pd-spec-chip { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; min-width: 80px; }
.pd-spec-chip-key { font-size: 9px; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.pd-spec-chip-val { font-size: 13px; font-weight: 700; color: var(--cream); }
.pd-actions-desktop { margin-bottom: 24px; }
.pd-qty-row { margin-bottom: 14px; }
.pd-qty-label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 8px; }
.pd-btn-row { display: flex; gap: 10px; flex-wrap: wrap; }
.pd-trust-desktop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 20px; text-align: center; }
.pd-trust-icon { font-size: 18px; margin-bottom: 4px; }
.pd-trust-text { font-size: 10px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.5; }
.pd-share-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pd-share-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.pd-share-link { font-size: 12px; color: var(--text-secondary); transition: color .2s; }
.pd-share-link:hover { color: var(--gold); }
.pd-tabs-section { margin-bottom: 60px; }
.pd-tab-body { max-width: 800px; color: var(--text-secondary); font-size: 15px; line-height: 2; padding: 24px 0; font-family: var(--font-serif); }
.pd-specs-table { max-width: 560px; padding: 8px 0; }
.pd-spec-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.pd-spec-key { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; flex-shrink: 0; max-width: 44%; }
.pd-spec-val { font-size: 13px; font-weight: 700; text-align: right; color: var(--cream); }
.pd-related { padding-top: 48px; border-top: 1px solid var(--border); margin-bottom: 48px; }
.pd-sticky-bar { display: none; }

@media (max-width: 1023px) {
  .pd-page { padding-left: 0; padding-right: 0; padding-bottom: 90px; }
  .pd-breadcrumb-wrap { padding: 14px 16px 8px; }
  .pd-layout { grid-template-columns: 1fr; gap: 0; margin-bottom: 32px; }
  .product-gallery, .pd-layout .product-gallery { position: static !important; top: auto !important; width: 100%; }
  .pd-swiper .gallery-main { height: 320px; max-height: 320px; aspect-ratio: auto; border: none; border-radius: 0; margin-bottom: 0; cursor: default; }
  .pd-swiper .gallery-main img { object-position: center; transform: none !important; }
  .pd-dots { display: flex !important; padding: 10px 0 6px; justify-content: center; }
  .pd-dots .swiper-pagination-bullet { width: 6px; height: 6px; background: var(--border-light); opacity: 1; margin: 0 3px; }
  .pd-dots .swiper-pagination-bullet-active { background: var(--gold); transform: scale(1.3); }
  .pd-img-counter { display: block; }
  .pd-thumbs { display: none !important; }
  .pd-info { padding: 14px 16px 0; display: flex; flex-direction: column; }
  /* Mobile ordering: show variations above the short description */
  .pd-variations { order: 1; }
  .pd-short-desc { order: 2; }
  .pd-spec-chips { order: 3; }
  .pd-share-row  { order: 4; }
  .pd-category-line { margin-bottom: 6px; }
  .pd-title { font-size: clamp(19px, 5vw, 26px); margin-bottom: 8px; }
  .pd-rating-row { margin-bottom: 10px; }
  .pd-price-row { margin-bottom: 10px; padding-bottom: 12px; }
  .pd-price-sale { font-size: 26px; }
  .pd-price-original { font-size: 14px; }
  .pd-discount-badge { font-size: 11px; padding: 2px 8px; }
  .pd-stock-row { margin-bottom: 10px; }
  .pd-short-desc { font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
  .pd-offers-strip { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding: 12px 0 4px; margin-bottom: 12px; -webkit-overflow-scrolling: touch; }
  .pd-offers-strip::-webkit-scrollbar { display: none; }
  .pd-offer-pill { flex-shrink: 0; background: rgba(212,175,55,0.06); border: 1px solid var(--border); padding: 7px 12px; font-size: 11px; color: var(--text-secondary); white-space: nowrap; border-radius: 20px; }
  .pd-actions-desktop { display: none !important; }
  .pd-trust-desktop { display: none !important; }
  .pd-spec-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .pd-spec-chip { min-width: 0; }
  .pd-tabs-section { padding: 0 16px; margin-bottom: 40px; }
  .pd-tab-body { font-size: 14px; line-height: 1.9; }
  .pd-spec-row { gap: 12px; }
  .pd-spec-key { font-size: 11px; }
  .pd-related { padding: 32px 16px 0; }
  .pd-sticky-bar {
    display: flex !important; position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px -16px rgba(26,26,26,0.35);
    padding: 10px 14px; gap: 8px; align-items: center; opacity: 1 !important; pointer-events: auto !important;
  }
  .pd-sticky-price-col { flex-shrink: 0; min-width: 0; }
  .pd-sticky-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
  .pd-sticky-price { font-size: 17px; font-weight: 800; line-height: 1.1; white-space: nowrap; color: var(--gold); }
  .pd-sticky-off { font-size: 10px; color: #4ade80; font-weight: 600; }
  .pd-sticky-btn { flex: 1; padding: 12px 8px !important; font-size: 11px !important; letter-spacing: 0.06em !important; min-width: 0; }
}
@media (max-width: 400px) {
  .pd-sticky-price { font-size: 14px; }
  .pd-sticky-btn { font-size: 10px !important; padding: 11px 6px !important; }
  .pd-title { font-size: 19px; }
}
