/** Shopify CDN: Minification failed

Line 353:1 Expected identifier but found whitespace
Line 353:6 Unexpected ";"

**/
/* ==========================================================================
   Mens Affair Luxury Timepieces - Master Stylesheet
   ========================================================================== */

:root {
  /* Dynamic Color Palette (Easily Customizable) */
  --bg-dark: #000000;
  --bg-surface: #0a0a0d;
  --bg-card: rgba(20, 20, 26, 0.85);
  --bg-input: rgba(10, 10, 14, 0.9);
  --text-main: #f5f5f7;
  --text-muted: #8e8e93;
  --text-dim: #636366;
  
  /* Accent Colors (Default: Electric Luxury Blue + Rolex Gold) */
  --accent-primary: #d4af37;
  --accent-primary-hover: #b89628;
  --accent-glow: rgba(212, 175, 55, 0.4);
  --accent-gold: #d4af37;
  --accent-green: #34c759;
  --accent-red: #ff453a;
  
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-hover: rgba(212, 175, 55, 0.5);
  --font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-family);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

/* Announcement Promo Bar */
.promo-top-bar {
  background: linear-gradient(90deg, #18181f 0%, #111116 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #d1d1d6;
  text-align: center;
  padding: 8px 14px;
  position: relative;
  z-index: 1001;
  line-height: 1.4;
}

/* Floating Navigation Header */
.apple-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Keep the navigation truly centered between the brand and actions. */
@media (min-width: 701px) {
  .nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .nav-brand { grid-column: 1; justify-self: start; }
  .desktop-nav-links { grid-column: 2; justify-self: center; }
  .nav-actions { grid-column: 3; justify-self: end; }
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s ease;
  text-decoration: none;
}

.nav-link:hover, .nav-link.active { color: var(--text-main); }

.nav-btn-highlight {
  background: #ffffff;
  color: #000000 !important;
  padding: 7px 18px;
  border-radius: 980px;
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform 0.2s ease;
}

.nav-btn-highlight:hover { transform: scale(1.04); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 980px;
  border: 1px solid var(--border-glass);
  font-size: 0.85rem;
  text-decoration: none;
}

.cart-count-badge {
  background: var(--accent-primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  justify-content: center;
}

/* Mobile Hamburger Menu */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 1002;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.active .hamburger-line:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 14, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.mobile-nav-drawer.open { max-height: 520px; opacity: 1; }

.mobile-drawer-inner {
  padding: 24px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-drawer-link {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* 3D Canvas Scroll Track */
.canvas-scroll-section {
  position: relative;
  width: 100%;
  height: 220vh;
  background: var(--bg-dark);
}

.canvas-pin-wrapper {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#apple-watch-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}

.canvas-poster {
  position: absolute;
  inset: 64px 0 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.canvas-poster.loaded { opacity: 0; }
.canvas-poster img { width: min(82vw, 920px); height: 82%; object-fit: contain; }

/* Shopify preview and storefront header share the first viewport. */
.apple-navbar {
  min-height: 64px;
}

.nav-brand,
.nav-brand span {
  color: #f5f5f7;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-brand span {
  color: var(--accent-primary);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 0.9;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.brand-lockup strong {
  color: #f5f5f7;
  font-size: 0.9rem;
}

.brand-lockup em {
  color: var(--accent-primary);
  font-size: 0.62rem;
  font-style: normal;
  letter-spacing: 0.2em;
  margin-top: 4px;
}

.canvas-pin-wrapper {
  padding-top: 64px;
}

.canvas-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

.canvas-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.canvas-loader.loaded {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  display: none !important;
}
: none; }

.loader-content { text-align: center; max-width: 320px; width: 90%; }

.loader-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent-primary);
  border-radius: 50%;
  margin: 0 auto 18px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.loader-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-primary), #70baff);
  transition: width 0.15s ease;
}

.loader-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

.callout-card {
  position: absolute;
  z-index: 15;
  max-width: 440px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(18, 18, 24, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-glass);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.callout-card.active { opacity: 1; transform: translateY(0); pointer-events: auto; }

#callout-1 { top: 22%; left: 8%; }
#callout-2 { top: 30%; right: 8%; }
#callout-3 { bottom: 18%; left: 8%; }
#callout-4 { top: 25%; left: 50%; transform: translateX(-50%) translateY(30px); text-align: center; }
#callout-4.active { transform: translateX(-50%) translateY(0); }

.callout-badge {
  display: inline-block;
  color: var(--accent-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.callout-title {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.callout-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* Buy Showcase Section */
.buy-showcase-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #000000 0%, #0a0a0d 100%);
  border-top: 1px solid var(--border-glass);
  scroll-margin-top: 60px;
}

.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.buy-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

.buy-visual { display: flex; justify-content: center; }

.product-highlight-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: radial-gradient(circle at center, rgba(41, 151, 255, 0.12) 0%, rgba(0,0,0,0) 70%);
}

.featured-product-img {
  width: 88%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.85));
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.rating-badge-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffb800;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
  line-height: 1.15;
}

.product-hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.price-container {
  display: flex;
  border: none !important;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.current-price { font-size: 2.2rem; font-weight: 800; color: #ffffff; }
.original-price { font-size: 1.25rem; color: var(--text-muted); text-decoration: line-through; }
.discount-tag {
  background: rgba(255, 69, 58, 0.15);
  color: var(--accent-red);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
}

/* 5% Advance Payment Discount Box */
.prepaid-discount-callout {
  background: linear-gradient(90deg, rgba(52, 199, 89, 0.12) 0%, rgba(41, 151, 255, 0.08) 100%);
  border: 1px solid rgba(52, 199, 89, 0.3);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.pd-tag {
  display: inline-block;
  background: var(--accent-green);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.prepaid-discount-callout strong { display: block; color: #fff; font-size: 0.92rem; margin-bottom: 2px; }
.prepaid-discount-callout p { margin: 0; font-size: 0.85rem; color: #d1d1d6; }
.discounted-calc-price { color: var(--accent-green); font-weight: 800; }

/* Swatches */
.option-block { margin-bottom: 20px; }
.option-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; }
.finish-swatches { display: flex; gap: 10px; flex-wrap: wrap; }

.swatch-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  min-height: 42px;
}

.swatch-btn.active, .swatch-btn:hover {
  border-color: var(--accent-primary);
  background: rgba(41, 151, 255, 0.15);
}

.swatch-circle { width: 12px; height: 12px; border-radius: 50%; }
.color-black { background: #1c1c1e; border: 1px solid #555; }
.color-silver { background: #d1d1d6; }
.color-gold { background: #e4a054; }

/* Trust List */
.trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 14px;
  border: 1px solid var(--border-glass);
  margin-bottom: 20px;
}

.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; line-height: 1.35; }
.trust-icon { font-size: 1.15rem; flex-shrink: 0; }

/* Description Accordion Drawer */
.product-description-container { margin-bottom: 24px; }

.desc-toggle-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  min-height: 46px;
}

.desc-toggle-btn:hover { background: rgba(255, 255, 255, 0.08); }
.desc-btn-text { display: flex; align-items: center; gap: 8px; text-align: left; }
.desc-arrow { font-size: 0.75rem; color: var(--text-muted); transition: transform 0.3s ease; }
.desc-toggle-btn.active .desc-arrow { transform: rotate(180deg); }

.desc-expandable-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
  background: rgba(18, 18, 24, 0.6);
  border-radius: 12px;
  margin-top: 8px;
  border: 1px solid transparent;
}

.desc-expandable-drawer.active { max-height: 450px; opacity: 1; border-color: var(--border-glass); }
.desc-drawer-body { padding: 18px; font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }
.desc-drawer-body h4 { font-size: 0.92rem; font-weight: 700; color: #fff; margin-top: 0; margin-bottom: 8px; }

.desc-bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.desc-bullet-item { font-size: 0.8rem; color: #d1d1d6; }

/* Action Buttons */
.cta-action-group { display: flex; flex-direction: column; gap: 12px; }

.btn-apple-primary {
  background: var(--accent-primary);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  box-shadow: 0 10px 30px var(--accent-glow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  min-height: 52px;
}

.btn-apple-primary:hover { background: var(--accent-primary-hover); transform: translateY(-2px); }

.btn-apple-discounted {
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.2) 0%, rgba(41, 151, 255, 0.15) 100%);
  border: 1px solid rgba(52, 199, 89, 0.5);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.25s ease;
  min-height: 52px;
}

.btn-apple-discounted:hover { background: rgba(52, 199, 89, 0.3); transform: translateY(-2px); }
.discount-badge-mini { background: var(--accent-green); color: #000; font-size: 0.65rem; font-weight: 800; padding: 2px 6px; border-radius: 4px; }
.sub-btn-text { font-size: 0.76rem; font-weight: 400; opacity: 0.85; }

.payment-method-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.pm-pill { font-size: 0.72rem; font-weight: 600; padding: 5px 8px; border-radius: 6px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--border-glass); color: var(--text-muted); }

/* Collections Grid */
.products-catalog-section { padding: 90px 20px; background: #060608; border-top: 1px solid var(--border-glass); }
.section-header { text-align: center; margin-bottom: 36px; }
.section-pill { display: inline-block; color: var(--accent-primary); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.04em; margin-bottom: 8px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 620px; margin: 0 auto 28px; line-height: 1.45; }

.catalog-tabs { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-glass); color: var(--text-muted); padding: 8px 18px; border-radius: 980px; font-size: 0.84rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; }
.tab-btn.active, .tab-btn:hover { background: #ffffff; color: #000000; border-color: #ffffff; }

.product-catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-5px); border-color: var(--accent-primary); box-shadow: 0 15px 35px rgba(41, 151, 255, 0.15); }

.pcard-badge { position: absolute; top: 14px; left: 14px; background: rgba(255, 255, 255, 0.1); border: 1px solid var(--border-glass); color: #fff; font-size: 0.65rem; font-weight: 700; padding: 3px 6px; border-radius: 5px; z-index: 5; }
.new-badge { background: rgba(52, 199, 89, 0.2); color: var(--accent-green); border-color: rgba(52, 199, 89, 0.4); }

.pcard-img-wrap { width: 100%; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.5); border-radius: 14px; margin-bottom: 14px; }
.pcard-img-wrap img { width: 80%; height: auto; object-fit: contain; transition: transform 0.4s ease; }
.product-card:hover .pcard-img-wrap img { transform: scale(1.08); }

.pcard-category { font-size: 0.7rem; color: var(--accent-primary); font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 3px; }
.pcard-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; line-height: 1.25; }
.pcard-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.p-current { font-size: 1.2rem; font-weight: 800; color: #fff; }
.p-old { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; }
.pcard-btn { width: 100%; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--border-glass); color: #ffffff; padding: 10px 14px; border-radius: 10px; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: all 0.2s ease; min-height: 40px; }
.product-card:hover .pcard-btn { background: var(--accent-primary); border-color: var(--accent-primary); }

/* Bento Grid */
.bento-section { padding: 90px 20px; background: var(--bg-dark); }
.bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bento-card { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 22px; padding: 32px 24px; }
.bento-wide { grid-column: span 2; }
.bento-tag { color: var(--accent-primary); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; display: block; }
.bento-title { font-size: 1.45rem; font-weight: 700; margin-bottom: 8px; line-height: 1.25; }
.bento-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

/* Reviews */
.reviews-section { padding: 90px 20px; background: #08080a; border-top: 1px solid var(--border-glass); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 20px; padding: 26px; display: flex; flex-direction: column; justify-content: space-between; }
.review-stars { color: #ffb800; font-size: 1.05rem; margin-bottom: 10px; }
.review-text { font-size: 0.9rem; color: #e5e5ea; line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.reviewer-meta { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar { width: 38px; height: 38px; background: rgba(41, 151, 255, 0.2); color: var(--accent-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.reviewer-name { font-size: 0.9rem; font-weight: 700; color: #ffffff; display: flex; align-items: center; gap: 6px; }
.verified-pill { font-size: 0.7rem; color: var(--accent-green); font-weight: 600; }
.reviewer-location { font-size: 0.76rem; color: var(--text-muted); }

/* ==========================================================================
   SECONDARY PAGES (Contact, About, Track Order, FAQ, Policies)
   ========================================================================== */

.page-container {
  max-width: 980px;
  margin: 40px auto 100px;
  padding-top: 20px;
  padding: 0 20px;
  min-height: 65vh;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-top: 6px;
  margin-bottom: 12px;
  color: #ffffff;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Track Order Card Box */
.tracking-card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 36px 32px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.tracking-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.tracking-input-group input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.95rem;
  outline: none;
}

.tracking-input-group input:focus {
  border-color: var(--accent-primary);
}

.tracking-result-box {
  border-top: 1px solid var(--border-glass);
  padding-top: 24px;
}

.tracking-timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.tracking-timeline-header h3 {
  font-size: 1.15rem;
  margin: 0 0 4px 0;
  color: #fff;
}

.tracking-courier-pill {
  font-size: 0.8rem;
  color: var(--accent-primary);
  font-weight: 600;
}

.status-badge-active {
  background: rgba(52, 199, 89, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(52, 199, 89, 0.3);
  padding: 6px 14px;
  border-radius: 980px;
  font-size: 0.82rem;
  font-weight: 700;
}

.timeline-stepper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.12);
}

.step-item {
  position: relative;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.step-item.completed { color: #ffffff; font-weight: 500; }
.step-item.active { color: var(--accent-primary); font-weight: 700; }

.step-dot {
  position: absolute;
  left: -32px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #1c1c24;
  border: 2px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.step-item.completed .step-dot { background: var(--accent-green); border-color: var(--accent-green); color: #000; font-weight: 800; }
.step-item.active .step-dot { background: var(--accent-primary); border-color: #fff; color: #fff; }

.tracking-details-table {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
}

.tr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Editorial Story & Policy Cards */
.content-editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.editorial-card, .policy-card-body {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 32px 36px;
  line-height: 1.7;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.editorial-card h3, .policy-card-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 12px;
}

.editorial-card p, .policy-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.policy-card-body h3:not(:first-child) {
  margin-top: 28px;
}

/* Contact Us Split Grid */
.contact-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.contact-info-card, .contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.contact-info-card h3, .contact-form-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-top: 0;
  margin-bottom: 16px;
}

.contact-point {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.cp-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-point strong {
  display: block;
  font-size: 0.92rem;
  color: #fff;
  margin-bottom: 2px;
}

.contact-point p {
  margin: 0 0 2px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-point small {
  color: var(--accent-green);
  font-size: 0.78rem;
}

/* FAQ Details Accordion */
.faq-accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 20px 24px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.faq-item:hover, .faq-item[open] {
  border-color: var(--border-glass-hover);
}

.faq-question {
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  outline: none;
}

.faq-answer {
  margin-top: 14px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Fast Order Modal Popup */
.cod-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cod-modal-overlay.active { opacity: 1; visibility: visible; }

.cod-modal-card {
  background: #15151c;
  border: 1px solid var(--border-glass-hover);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  padding: 26px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.cod-modal-overlay.active .cod-modal-card { transform: translateY(0) scale(1); }

.modal-close-btn {
  position: sticky;
  top: 0;
  float: right;
  margin-top: -6px;
  margin-right: -6px;
  margin-bottom: -28px;
  background: rgba(26, 26, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.3rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.7);
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: rotate(90deg);
}

.cod-card-header h3 { font-size: 1.25rem; font-weight: 700; margin-top: 8px; margin-bottom: 4px; color: #fff; }
.cod-card-header p { font-size: 0.86rem; color: var(--text-muted); margin-bottom: 16px; }

.modal-payment-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.modal-pay-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 10px;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.2s ease;
  min-height: 54px;
}

.modal-pay-tab.active {
  background: rgba(41, 151, 255, 0.15);
  border-color: var(--accent-primary);
  color: #fff;
}

.modal-pay-tab .save-tag {
  position: absolute;
  top: -8px;
  right: 6px;
  background: var(--accent-green);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
}

.prepaid-details-box {
  background: rgba(52, 199, 89, 0.08);
  border: 1px solid rgba(52, 199, 89, 0.3);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.acc-row { display: flex; justify-content: space-between; margin-top: 4px; flex-wrap: wrap; }

.cod-form-grid { display: flex; flex-direction: column; gap: 12px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #d1d1d6;
  margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  padding: 12px 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.92rem;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
}

.cod-status-message {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  display: none;
  padding: 12px;
  border-radius: 8px;
}

.cod-status-message.success {
  display: block;
  background: rgba(52, 199, 89, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(52, 199, 89, 0.3);
}

/* Footer */
.apple-footer {
  background: #08080a;
  border-top: 1px solid var(--border-glass);
  padding: 60px 20px 80px;
}

.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-logo-img { height: 34px; margin-bottom: 14px; }
.footer-text { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; margin-bottom: 16px; }
.footer-heading { font-size: 0.92rem; font-weight: 700; margin-bottom: 14px; color: #fff; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; margin: 0; }
.footer-list a { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; transition: color 0.2s ease; }
.footer-list a:hover { color: #fff; }

.payment-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.badge-pill { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border-glass); padding: 4px 8px; border-radius: 6px; font-size: 0.72rem; color: var(--text-muted); }
.badge-pill.highlight-pill { border-color: rgba(52, 199, 89, 0.4); color: var(--accent-green); }

.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.06); font-size: 0.78rem; color: var(--text-muted); text-align: center; }

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 18px;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover { transform: scale(1.08); }

.whatsapp-badge-ping {
  position: absolute;
  top: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background: var(--accent-red);
  border: 2px solid #fff;
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
  100% { transform: scale(0.9); opacity: 1; }
}

.mobile-sticky-order-bar { display: none; }

/* ==========================================================================
   MOBILE & TABLET RESPONSIVE RULES
   ========================================================================== */

@media (max-width: 1024px) {
  .buy-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-split-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .desktop-nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav-drawer { display: block; }

  .canvas-scroll-section { height: 240vh; }
  .callout-card { max-width: 90%; padding: 16px 18px; border-radius: 16px; background: rgba(14, 14, 18, 0.88); }
  #callout-1, #callout-2, #callout-3, #callout-4 { top: auto; bottom: 12%; left: 5%; right: 5%; }
  .callout-title { font-size: 1.35rem; margin-bottom: 6px; }
  .callout-desc { font-size: 0.84rem; }

  .page-container { margin: 40px auto 80px; padding: 0 16px; }
  .page-title { font-size: 2.1rem; }
  .tracking-card-box { padding: 24px 18px; }
  .tracking-input-group { flex-direction: column; }
  .tracking-input-group button { width: 100%; }
  .contact-info-card, .contact-form-card { padding: 24px 18px; }
  .editorial-card, .policy-card-body { padding: 24px 18px; }

  .buy-showcase-section { padding: 50px 16px; }
  .product-hero-title { font-size: 2rem; }
  .current-price { font-size: 1.85rem; }
  .desc-bullet-grid { grid-template-columns: 1fr; }

  .catalog-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 4px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .catalog-tabs::-webkit-scrollbar { display: none; }

  .products-catalog-section { padding: 60px 14px; }
  .section-title { font-size: 1.95rem; }
  .product-catalog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { padding: 12px; border-radius: 14px; }
  .pcard-title { font-size: 0.88rem; margin-bottom: 6px; }
  .p-current { font-size: 1rem; }
  .p-old { font-size: 0.74rem; }
  .pcard-btn { padding: 7px 8px; font-size: 0.76rem; min-height: 34px; }

  .bento-section { padding: 50px 16px; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .bento-card { padding: 22px 18px; }

  .reviews-section { padding: 50px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .apple-footer { padding: 50px 16px 86px; }

  .cod-modal-overlay { align-items: flex-end; padding: 0; }
  .cod-modal-card { border-radius: 24px 24px 0 0; max-height: 85vh; padding: 22px 18px 28px; transform: translateY(100%); }
  .cod-modal-overlay.active .cod-modal-card { transform: translateY(0); }

  .mobile-sticky-order-bar {
    display: none !important;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 16, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-glass);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 998;
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6);
  }

  .sticky-bar-left { display: flex; flex-direction: column; max-width: 58%; }
  .sticky-title { font-size: 0.82rem; font-weight: 700; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .sticky-price { font-size: 0.92rem; font-weight: 800; color: var(--accent-primary); }
  .sticky-btn { background: var(--accent-primary); color: #fff; padding: 11px 20px; border-radius: 980px; font-weight: 700; font-size: 0.86rem; border: none; cursor: pointer; box-shadow: 0 4px 15px var(--accent-glow); white-space: nowrap; }
}


/* ==========================================================================
   KINETIC ORBITAL ORDER HUB & SLOT CARD DESIGN
   ========================================================================== */
:root {
  --orbit-bg: #0a0a0f;
  --orbit-fg: #f1f4f4;
  --orbit-fg-success: #2ee59d;
  --orbit-dash-color: rgba(212, 175, 55, 0.45);
  --orbit-hub-glow: rgba(212, 175, 55, 0.6);
}

.orbital-order-card {
  position: relative;
  background: var(--orbit-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 22px 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbital-order-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15);
}

/* Orbit Track and Hub Structure */
.orbit-track-container {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  pointer-events: none;
  opacity: 0.65;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.orbital-order-card:hover .orbit-track-container {
  opacity: 1;
  transform: translateY(-50%) rotate(45deg);
}

.orbit-ring {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation: orbitRingSpin 24s linear infinite;
  transform-origin: center center;
}

.orbit_path {
  fill: none;
  stroke: var(--orbit-dash-color);
  stroke-dasharray: 2 8;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.orbit_path_inner {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-dasharray: 4 6;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.orbit_hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px var(--orbit-hub-glow), 0 0 32px var(--accent-primary);
  animation: hubPulse 2s ease-in-out infinite;
}

.orbit-satellite {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffffff;
  top: 50%;
  left: 50%;
  margin-top: -3px;
  margin-left: -3px;
}

@keyframes orbitRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes hubPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
  50% { transform: translate(-50%, -50%) scale(1.35); opacity: 1; box-shadow: 0 0 24px var(--accent-primary), 0 0 40px var(--orbit-fg-success); }
}

/* Kinetic Slot Input Group */
.kinetic-slot-wrapper {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.slot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.slot-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orbit-fg);
  display: flex;
  align-items: center;
  gap: 6px;
}

.slot-verdict {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--orbit-fg-success);
  display: flex;
  align-items: center;
  gap: 4px;
}

.slot-verdict::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orbit-fg-success);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orbit-fg-success);
}

.slot {
  display: flex;
  align-items: center;
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 4px 6px 4px 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.slot:focus-within {
  border-color: var(--accent-primary);
  background: rgba(24, 24, 32, 0.95);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slot-icon {
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.slot input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--orbit-fg);
  font-size: 0.96rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.02em;
}

.slot input::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.84rem;
  font-weight: 400;
}

.slot-action-btn {
  background: var(--accent-primary);
  color: #000000;
  border: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 9px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.slot-action-btn:hover {
  background: #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.slot-action-btn:active {
  transform: scale(0.96);
}

/* Button Upgrades inside Orbital Group */
.cta-action-group {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


/* ==========================================================================
   KINETIC FORM FIELDS WITH LIGHT VERDICT & FOCUS ANIMATIONS
   ========================================================================== */
.cod-form-grid .form-group {
  position: relative;
  margin-bottom: 16px;
}

.cod-form-grid .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orbit-fg);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.cod-form-grid .form-group:focus-within label {
  color: var(--accent-primary);
}

.cod-form-grid .form-group input,
.cod-form-grid .form-group textarea {
  width: 100%;
  background: #0a0a0f !important;
  color: #f1f4f4 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  padding: 13px 16px !important;
  font-size: 0.94rem !important;
  font-family: inherit;
  font-weight: 500;
  outline: none !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
}

.cod-form-grid .form-group input::placeholder,
.cod-form-grid .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
  font-size: 0.86rem;
  font-weight: 400;
}

/* Kinetic Glow Border on Focus */
.cod-form-grid .form-group input:focus,
.cod-form-grid .form-group textarea:focus {
  border-color: var(--accent-primary) !important;
  background: #0e0e14 !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25), 0 0 15px rgba(212, 175, 55, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
  transform: translateY(-1px);
}

/* Valid Input State with Light Verdict */
.cod-form-grid .form-group input:not(:placeholder-shown):valid,
.cod-form-grid .form-group textarea:not(:placeholder-shown):valid {
  border-color: rgba(46, 229, 157, 0.5) !important;
}

.cod-form-grid .form-group input:not(:placeholder-shown):valid:focus,
.cod-form-grid .form-group textarea:not(:placeholder-shown):valid:focus {
  border-color: #2ee59d !important;
  box-shadow: 0 0 0 3px rgba(46, 229, 157, 0.2), 0 0 16px rgba(46, 229, 157, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
}


/* ==========================================================================
   SETTIGATION COMPONENT 89 - ORBITAL KINETIC VERIFICATION & ORDER ENGINE
   ========================================================================== */
:root {
  --orbit-bg: #0a0a0f;
  --orbit-fg: #f1f4f4;
  --ice: #dceaff;
  --ok: #2ee6a8;
  --bad: #ff4d6a;
}

/* Modal Form Fields - Ultra Sleek */
.cod-form-grid .form-group {
  margin-bottom: 16px;
  position: relative;
}

.cod-form-grid .form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orbit-fg);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.cod-form-grid .form-group:focus-within label {
  color: var(--accent-primary);
}

.cod-form-grid .form-group input,
.cod-form-grid .form-group textarea {
  width: 100%;
  background: var(--orbit-bg) !important;
  color: var(--orbit-fg) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 14px !important;
  padding: 13px 16px !important;
  font-size: 0.95rem !important;
  font-family: inherit;
  font-weight: 500;
  outline: none !important;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease !important;
}

.cod-form-grid .form-group input::placeholder,
.cod-form-grid .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.28) !important;
  font-size: 0.86rem;
}

.cod-form-grid .form-group input:focus,
.cod-form-grid .form-group textarea:focus {
  border-color: var(--accent-primary) !important;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2), 0 0 15px rgba(212, 175, 55, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.6) !important;
  transform: translateY(-1px);
}

.cod-form-grid .form-group input:not(:placeholder-shown):valid,
.cod-form-grid .form-group textarea:not(:placeholder-shown):valid {
  border-color: rgba(46, 230, 168, 0.5) !important;
}

/* Orbital Verification Screen Stage */
.orbital-stage-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 20px 10px;
}

.orbital-stage-overlay.active {
  display: flex;
}

.orbit-stage-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orbit-fg);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}

.orbit-stage-subtitle {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}

/* Orbit Track and Center Hub */
.orbit-anim-arena {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.orbit {
  position: absolute;
  width: 180px;
  height: 180px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.orbit__ring {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orbit__path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-dasharray: 2 8;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.orbit__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--ice);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 14px var(--ice), 0 0 28px rgba(220, 234, 255, 0.6);
  transition: all 0.4s ease;
}

.orbit__hub.success {
  background: var(--ok);
  box-shadow: 0 0 20px var(--ok), 0 0 45px var(--ok);
  transform: translate(-50%, -50%) scale(1.6);
}

/* 4 Orbiting Slots */
.slots-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
}

.orbit-slot-node {
  position: absolute;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  margin-left: -26px;
  background: #111116;
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orbit-fg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  will-change: transform, opacity;
}

.orbit-slot-node span {
  pointer-events: none;
}

/* Success Verdict Result Box */
.verdict-box {
  display: none;
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.verdict-box.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

.verdict-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 230, 168, 0.12);
  border: 1px solid var(--ok);
  color: var(--ok);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(46, 230, 168, 0.2);
}

.verdict-order-id {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.verdict-action-btn {
  background: var(--ok);
  color: #000000;
  border: none;
  padding: 13px 24px;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 24px rgba(46, 230, 168, 0.35);
}

.verdict-action-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}



/* ==========================================================================
   SETTIGATION ORDER CONFIRM DELIVERY VAN - ULTRA-SMOOTH PHYSICS
   ========================================================================== */
.van-dispatch-track-box {
  width: 100%;
  max-width: 380px;
  height: 76px;
  background: #0a0a0f;
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 38px;
  position: relative;
  overflow: hidden;
  margin: 18px auto;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85), inset 0 2px 5px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s ease;
}

.van-scene-svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.road-line {
  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 2;
}

.road-ticks {
  stroke: rgba(212, 175, 55, 0.55);
  stroke-width: 2.5;
  stroke-dasharray: 14 18;
  animation: roadTicksMove 0.35s linear infinite;
}

@keyframes roadTicksMove {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -32; }
}

.van-group {
  will-change: transform;
  transform: translate(-150px, 16px);
  transform-origin: bottom center;
}

.van-shell {
  fill: #f5f5f7;
  transition: transform 0.2s ease;
}

.van-cab { fill: #e1e1e6; }
.van-window { fill: #111116; }
.van-gold-stripe { fill: var(--accent-primary); }

.van-headlight-beam {
  fill: url(#headlight-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.van-wheel {
  transform-origin: 0px 0px;
  will-change: transform;
}

.wheel-rim {
  fill: #1c1c1e;
  stroke: #48484a;
  stroke-width: 1.5;
}

.wheel-hub { fill: var(--accent-primary); }

.cargo-shutter {
  fill: #2c2c2e;
  stroke: #1c1c1e;
  stroke-width: 1;
  transform-origin: top center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dispatch-parcel {
  transform: translate(200px, 30px);
  will-change: transform, opacity;
  transform-origin: center center;
}

.parcel-box-body {
  fill: #d4af37;
  stroke: #a8841a;
  stroke-width: 1;
}

.parcel-tape { fill: #fff; }

.dispatch-status-ticker {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--orbit-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  transition: all 0.3s ease;
}


/* ==========================================================================
   SEAMLESS MORPHING TRANSITION BETWEEN ORBIT HUB & DELIVERY VAN
   ========================================================================== */
.orbit-anim-arena {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.orbit-anim-arena.fading-out {
  opacity: 0 !important;
  transform: scale(0.8) !important;
  pointer-events: none;
}

#van-dispatch-phase {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

#van-dispatch-phase.active {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Hide duplicate old status message */
.cod-status-message {
  display: none !important;
}


/* ==========================================================================
   PREPAID JAZZCASH / EASYPAISA / BANK DETAILS, TRX ID & SCREENSHOT UPLOAD
   ========================================================================== */

/* Custom Dark Luxury Scrollbar for Modal */
.cod-modal-card::-webkit-scrollbar {
  width: 6px;
}
.cod-modal-card::-webkit-scrollbar-track {
  background: #0a0a0f;
  border-radius: 8px;
}
.cod-modal-card::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 8px;
}
.cod-modal-card::-webkit-scrollbar-thumb:hover {
  background: var(--accent-primary);
}

/* Prepaid Bank Details Card */
.prepaid-details-box {
  background: rgba(18, 18, 24, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: fadeInDown 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.prepaid-instruction-header {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.acc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.acc-row:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.3);
}

.acc-info-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.acc-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.acc-val {
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.copy-btn {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--accent-primary);
  padding: 5px 10px;
  border-radius: 7px;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.copy-btn:hover {
  background: var(--accent-primary);
  color: #000000;
  box-shadow: 0 0 10px var(--accent-glow);
}

.copy-btn.copied {
  background: #2ee6a8;
  border-color: #2ee6a8;
  color: #000000;
}

/* Screenshot Upload Drag & Drop Zone */
.ss-upload-zone {
  position: relative;
  background: #0a0a0f;
  border: 1.5px dashed rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.ss-upload-zone:hover,
.ss-upload-zone.dragover {
  border-color: var(--accent-primary);
  background: rgba(212, 175, 55, 0.05);
}

.ss-upload-icon {
  font-size: 1.5rem;
  color: var(--accent-primary);
}

.ss-upload-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #f1f4f4;
}

.ss-upload-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}

.ss-preview-thumb {
  max-width: 100%;
  max-height: 120px;
  border-radius: 8px;
  border: 1px solid var(--accent-primary);
  margin-top: 8px;
  display: none;
}


/* ==========================================================================
   SETTIGATION VIDEO 3: LAYERED 3D PRODUCT CARDS (COMPACT & KINETIC)
   ========================================================================== */
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .product-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .product-catalog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Layered 3D Card Container */
.halo-card {
  position: relative;
  background: #0d0d12;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  padding: 32px 20px 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  perspective: 1200px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.4s ease;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.halo-card[data-accent="gold"] {
  --card-accent: #d4af37;
  --card-glow-color: rgba(212, 175, 55, 0.28);
}
.halo-card[data-accent="mint"] {
  --card-accent: #2ee6a8;
  --card-glow-color: rgba(46, 230, 168, 0.25);
}
.halo-card[data-accent="solar"] {
  --card-accent: #ff9f1c;
  --card-glow-color: rgba(255, 159, 28, 0.28);
}
.halo-card[data-accent="cyan"] {
  --card-accent: #2997ff;
  --card-glow-color: rgba(41, 151, 255, 0.25);
}

.halo-card:hover {
  transform: translateY(-7px);
  border-color: var(--card-accent);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.8), 0 0 28px var(--card-glow-color);
}

/* Background Circular Glow Aura */
.card-glow {
  position: absolute;
  top: 36%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--card-glow-color) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.halo-card:hover .card-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.25);
}

/* Background Ring */
.card-ring {
  position: absolute;
  top: 36%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.halo-card:hover .card-ring {
  border-color: var(--card-accent);
}

/* Sonic / Ripple Waves on Hover */
.card-waves {
  position: absolute;
  top: 36%;
  left: 50%;
  width: 160px;
  height: 160px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.card-waves span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--card-accent);
  opacity: 0;
  transform: scale(0.6);
}

.halo-card:hover .card-waves span:nth-child(1) {
  animation: haloWave 1.8s cubic-bezier(0.2, 0.8, 0.4, 1) infinite;
}
.halo-card:hover .card-waves span:nth-child(2) {
  animation: haloWave 1.8s cubic-bezier(0.2, 0.8, 0.4, 1) infinite 0.55s;
}
.halo-card:hover .card-waves span:nth-child(3) {
  animation: haloWave 1.8s cubic-bezier(0.2, 0.8, 0.4, 1) infinite 1.1s;
}

@keyframes haloWave {
  0% { transform: scale(0.6); opacity: 0.75; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* 3D Stage & Lift (Pops the watch in true 3D) */
.card-stage {
  position: relative;
  width: 100%;
  height: 225px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transform-style: preserve-3d;
}

.card-lift {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.halo-card:hover .card-lift {
  transform: translateZ(55px) scale(1.10) translateY(-6px);
}

.card-lift img {
  max-width: 82%;
  max-height: 205px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.85));
  transition: filter 0.4s ease;
}

.halo-card:hover .card-lift img {
  filter: drop-shadow(0 22px 32px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 18px var(--card-glow-color));
}

/* Top Meta & Bars */
.card-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.meta-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--card-accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-bars {
  display: flex;
  align-items: flex-end;
  gap: 2.5px;
  height: 11px;
}

.meta-bars span {
  width: 2.5px;
  background: var(--card-accent);
  border-radius: 2px;
  opacity: 0.6;
}

.meta-bars span:nth-child(1) { height: 5px; }
.meta-bars span:nth-child(2) { height: 11px; }
.meta-bars span:nth-child(3) { height: 7px; }
.meta-bars span:nth-child(4) { height: 9px; }

.halo-card:hover .meta-bars span {
  animation: barPulse 0.75s ease infinite alternate;
}
.halo-card:hover .meta-bars span:nth-child(2) { animation-delay: 0.2s; }
.halo-card:hover .meta-bars span:nth-child(3) { animation-delay: 0.4s; }
.halo-card:hover .meta-bars span:nth-child(4) { animation-delay: 0.1s; }

@keyframes barPulse {
  from { transform: scaleY(0.5); }
  to { transform: scaleY(1.25); }
}

/* Title & Price */
.card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.card-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #f1f4f4;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.card-price {
  font-size: 1.10rem;
  font-weight: 800;
  color: var(--card-accent);
  white-space: nowrap;
}

.card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 12px 0;
  line-height: 1.35;
}

/* Bottom Row */
.card-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-num {
  font-size: 0.80rem;
  font-weight: 700;
  color: #ffffff;
}

.rating-stars {
  font-size: 0.78rem;
  color: var(--card-accent);
  letter-spacing: 1px;
}

.card-action-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f1f4f4;
  padding: 7px 15px;
  border-radius: 980px;
  font-size: 0.80rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.halo-card:hover .card-action-btn {
  background: var(--card-accent);
  color: #000000;
  border-color: var(--card-accent);
  box-shadow: 0 4px 12px var(--card-glow-color);
  transform: translateY(-1px);
}


/* ==========================================================================
   SLIDE-OUT GLASSMORPHIC CART DRAWER & QUANTITY STEPPER
   ========================================================================== */

/* Buy Box Quantity & Add-to-Cart Row */
.buy-qty-cart-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  background: rgba(18, 18, 24, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 4px 6px;
  height: 48px;
  flex-shrink: 0;
}

.qty-btn {
  background: transparent;
  border: none;
  color: #ffffff;
  width: 34px;
  height: 34px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-primary);
}

.qty-input {
  width: 36px;
  text-align: center;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  outline: none;
  font-family: inherit;
}

.btn-add-to-cart {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(212, 175, 55, 0.5);
  color: #ffffff;
  height: 48px;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-add-to-cart:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  transform: translateY(-1px);
}

/* Slide-Out Cart Overlay & Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #0d0d12;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.9);
  z-index: 10001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer-overlay.active .cart-drawer-panel {
  transform: translateX(0);
}

/* Cart Header */
.cart-drawer-header {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f1f4f4;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-close-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.cart-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-primary);
  transform: rotate(90deg);
}

/* Free Shipping Progress Bar */
.cart-shipping-banner {
  padding: 12px 24px;
  background: rgba(46, 230, 168, 0.08);
  border-bottom: 1px solid rgba(46, 230, 168, 0.2);
}

.shipping-text {
  font-size: 0.80rem;
  font-weight: 700;
  color: #2ee6a8;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.shipping-bar-bg {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.shipping-bar-fill {
  width: 100%;
  height: 100%;
  background: #2ee6a8;
  border-radius: 4px;
}

/* Cart Items Body */
.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-drawer-body::-webkit-scrollbar { width: 5px; }
.cart-drawer-body::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.3); border-radius: 6px; }

.cart-item-row {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  margin-bottom: 12px;
  position: relative;
}

.cart-item-img {
  width: 72px;
  height: 72px;
  background: #111116;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 4px;
}

.cart-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cart-item-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 2px 0;
  line-height: 1.25;
}

.cart-item-finish {
  font-size: 0.74rem;
  color: var(--accent-primary);
  margin-bottom: 6px;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 0.80rem;
  transition: color 0.2s ease;
  padding: 4px;
}

.cart-item-remove:hover {
  color: #ff4d6a;
}

/* Empty Cart State */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 40px 20px;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  opacity: 0.7;
}

/* Cart Footer & Checkout Buttons */
.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #09090c;
}

.cart-totals-breakdown {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}

.cart-total-row.discount-row {
  color: #2ee6a8;
  font-weight: 600;
}

.cart-total-row.final-row {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-checkout-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* Modal Live Quantity & Order Summary Bar */
.modal-order-summary-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 14px;
  margin-bottom: 16px;
  gap: 10px;
}

.modal-summary-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.modal-edition-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.modal-summary-unit {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
}

.modal-summary-qty-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-qty-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}


/* ==========================================================================
   SETTIGATION VIDEO 4: ARC LIQUID LIGHT NAVIGATION & KINETIC HEADER ICONS
   ========================================================================== */

.promo-top-bar {
  background: linear-gradient(90deg, #18181f 0%, #111116 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: #d1d1d6;
  text-align: center;
  padding: 8px 14px;
  position: relative;
  z-index: 1001;
  line-height: 1.4;
}

.apple-navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 20px;
  background: rgba(6, 6, 8, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* ARC Nav Capsule Dock */
@media (min-width: 992px) {
  .nav-links.desktop-nav-links {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(18, 18, 24, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 980px;
    padding: 4px 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Settigation ARC Liquid Light Follower */
.arc-light-follower {
  position: absolute;
  top: 4px;
  left: 6px;
  height: 38px;
  border-radius: 980px;
  pointer-events: none;
  z-index: 1;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  background: radial-gradient(circle at center, rgba(110, 231, 255, 0.18) 0%, rgba(212, 175, 55, 0.1) 60%, transparent 100%);
  border: 1.5px solid rgba(110, 231, 255, 0.65);
  box-shadow: 0 0 18px rgba(110, 231, 255, 0.35), inset 0 0 12px rgba(110, 231, 255, 0.2);
  opacity: 0;
}

.arc-light-follower.active {
  opacity: 1;
}

/* Individual Arc Nav Links */
.nav-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 980px;
  transition: color 0.25s ease, transform 0.2s ease;
}

.nav-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.25s ease, filter 0.25s ease;
}

.nav-link-icon svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.6);
  transition: stroke 0.25s ease, filter 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link:hover .nav-link-icon,
.nav-link.active .nav-link-icon {
  transform: scale(1.18);
}

.nav-link:hover .nav-link-icon svg,
.nav-link.active .nav-link-icon svg {
  stroke: #6ee7ff;
  filter: drop-shadow(0 0 6px rgba(110, 231, 255, 0.8));
}

.nav-order-link { color: var(--accent-primary) !important; }
.nav-order-link .nav-link-icon svg { stroke: var(--accent-primary); }

/* Nav Action Buttons (Cart & Menu) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.cart-btn svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), stroke 0.25s ease;
}

.cart-btn:hover {
  border-color: #6ee7ff;
  background: rgba(110, 231, 255, 0.12);
  box-shadow: 0 0 20px rgba(110, 231, 255, 0.4);
  transform: translateY(-2px);
}

.cart-btn:hover svg {
  transform: scale(1.15);
  stroke: #6ee7ff;
  filter: drop-shadow(0 0 8px rgba(110, 231, 255, 0.8));
}

.cart-count-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: var(--accent-primary);
  color: #000000;
  font-size: 0.68rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 980px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-btn:hover .cart-count-badge {
  transform: scale(1.12);
  background: #6ee7ff;
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.8);
}

/* Final Shopify header action geometry. */
.nav-actions .cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 50%;
  overflow: visible;
}

/* Keep the navigation pill aligned to its own link box. */
.nav-links.desktop-nav-links {
  margin-left: auto;
  margin-right: auto;
}

.nav-links.desktop-nav-links .arc-light-follower {
  display: block !important;
}

.nav-links.desktop-nav-links .nav-link.active {
  color: #fff;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
}

.nav-actions .cart-btn svg {
  display: block;
  width: 19px;
  height: 19px;
}

.nav-actions .cart-count-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  width: auto;
  height: 18px;
  min-height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  line-height: 18px;
}

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.shopify-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  width: min(430px, 94vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: #101014;
  border-left: 1px solid var(--border-glass);
  box-shadow: -18px 0 60px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform 0.3s ease;
}

.shopify-cart-drawer.active { transform: translateX(0); }
.cart-drawer-overlay.active { opacity: 1; visibility: visible; }
.cart-drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 22px 18px; border-bottom: 1px solid var(--border-glass); }
.cart-drawer-header h2 { margin: 0; color: #fff; font-size: 1.2rem; }
.drawer-cart-count { color: var(--accent-primary); font-size: 0.85rem; }
.cart-drawer-close { border: 0; background: transparent; color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.cart-drawer-items { flex: 1; overflow-y: auto; padding: 18px; }
.shopify-cart-item { display: grid; grid-template-columns: 76px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.shopify-cart-item img { width: 76px; height: 76px; object-fit: contain; background: #fff; border-radius: 8px; }
.shopify-cart-item-title { display: block; color: #fff; text-decoration: none; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; }
.shopify-cart-item span { color: var(--accent-primary); font-size: 0.84rem; }
.drawer-qty { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.drawer-qty button { width: 26px; height: 26px; border: 1px solid var(--border-glass); border-radius: 6px; background: rgba(255,255,255,0.06); color: #fff; cursor: pointer; }
.drawer-qty span { color: #fff; min-width: 16px; text-align: center; }
.cart-drawer-footer { padding: 18px; border-top: 1px solid var(--border-glass); }
.drawer-subtotal { display: flex; justify-content: space-between; color: #fff; margin-bottom: 14px; }
.drawer-cod-button { width: 100%; }
.drawer-view-cart { display: block; text-align: center; color: var(--text-muted); font-size: 0.8rem; margin-top: 12px; }

.catalog-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.catalog-more-button {
  display: inline-flex;
  flex-direction: row;
  gap: 12px;
  width: auto;
  min-width: 220px;
}

.trusted-customers-section {
  padding: 90px 20px;
  background: linear-gradient(180deg, #060608 0%, #0b0b10 100%);
  border-top: 1px solid var(--border-glass);
}

.trusted-customer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trusted-customer-card {
  padding: 26px;
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.trusted-stars { color: var(--accent-primary); letter-spacing: 0.12em; margin-bottom: 14px; }
.trusted-customer-card p { min-height: 78px; color: #d1d1d6; line-height: 1.55; margin: 0 0 18px; }
.trusted-customer-card strong, .trusted-customer-card span { display: block; }
.trusted-customer-card strong { color: #fff; }
.trusted-customer-card span { color: var(--text-muted); font-size: 0.82rem; margin-top: 4px; }

@media (max-width: 768px) {
  .trusted-customer-grid { grid-template-columns: 1fr; }
  .trusted-customer-card p { min-height: 0; }
}


/* ==========================================================================
   PROMINENT ANIMATED SCROLL DOWN INDICATOR PILL (APPLE-GRADE)
   ========================================================================== */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14, 14, 20, 0.88);
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  padding: 8px 18px 8px 14px;
  border-radius: 980px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85), 0 0 20px rgba(212, 175, 55, 0.3);
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: scrollPillBounce 2.2s infinite ease-in-out;
}

.scroll-cue:hover {
  background: rgba(22, 22, 32, 0.95);
  border-color: var(--accent-primary);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.9), 0 0 28px rgba(212, 175, 55, 0.55);
}

@keyframes scrollPillBounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); box-shadow: 0 14px 34px rgba(0, 0, 0, 0.9), 0 0 28px rgba(212, 175, 55, 0.5); }
}

.scroll-mouse-icon {
  width: 16px;
  height: 24px;
  border: 2px solid var(--accent-primary);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.mouse-wheel-dot {
  width: 3px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 2px;
  position: absolute;
  top: 3px;
  animation: mouseWheel 1.6s infinite ease-in-out;
}

@keyframes mouseWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(9px); opacity: 0; }
}

.scroll-cue-text {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.scroll-arrow-chevron {
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: arrowPulse 1.6s infinite ease-in-out;
}

@keyframes arrowPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}


/* ==========================================================================
   DEDICATED LUXURY MOBILE MASTER STYLES (SCREEN WIDTH < 992px & < 768px)
   ========================================================================== */

@media (max-width: 991px) {
  .desktop-nav-links {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .mobile-nav-drawer {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    z-index: 999;
  }

  .mobile-nav-drawer.open {
    max-height: 580px;
    opacity: 1;
  }

  .mobile-drawer-inner {
    padding: 20px 20px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
  }

  .mobile-drawer-link:hover,
  .mobile-drawer-link.active {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
  }
}

@media (max-width: 767px) {
  /* Header & Logo */
  .apple-navbar {
    padding: 8px 14px;
  }
  .site-logo-img {
    height: 32px;
  }
  .cart-btn {
    width: 38px;
    height: 38px;
  }

  /* 3D Canvas & Track */
  .canvas-scroll-section {
    height: 240vh;
  }
  .canvas-pin-wrapper {
    height: 100vh;
  }

  
  /* Callout Cards on Mobile (Centered Floating Translucent Glass Capsule) */
  .callout-card {
    position: absolute !important;
    top: auto !important;
    bottom: 24px !important;
    left: 50% !important;
    right: auto !important;
    width: 92% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    background: rgba(12, 12, 18, 0.72) !important;
    backdrop-filter: blur(18px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 16px !important;
    padding: 10px 14px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85), 0 0 16px rgba(212, 175, 55, 0.15) !important;
    opacity: 0;
    transform: translate(-50%, 15px) !important;
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none;
    z-index: 30;
    text-align: left;
  }

  .callout-card.active {
    opacity: 1 !important;
    transform: translate(-50%, 0) !important;
  }

  .callout-badge {
    font-size: 0.62rem !important;
    padding: 2px 6px !important;
    margin-bottom: 3px !important;
    letter-spacing: 0.06em !important;
  }

  .callout-title {
    font-size: 1.02rem !important;
    line-height: 1.22 !important;
    margin-bottom: 3px !important;
    font-weight: 700 !important;
  }

  .callout-desc {
    font-size: 0.76rem !important;
    line-height: 1.3 !important;
    color: rgba(255, 255, 255, 0.72) !important;
  }

  /* Scroll Down Indicator on Mobile */
  .scroll-cue {
    bottom: 16px !important;
    padding: 6px 14px 6px 10px !important;
    gap: 8px !important;
  }
  .scroll-cue-text {
    font-size: 0.70rem !important;
  }
  .scroll-mouse-icon {
    width: 14px !important;
    height: 20px !important;
  }

  /* Catalog Grid on Mobile (Single Column Compact) */
  .products-catalog-section {
    padding: 50px 14px;
  }
  .product-catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    max-width: 440px !important;
    margin: 0 auto;
  }

  .halo-card {
    padding: 24px 18px 18px !important;
  }
  .card-stage {
    height: 190px !important;
  }
  .card-lift img {
    max-height: 175px !important;
  }

  /* Buy Showcase Section */
  .buy-showcase-section {
    padding: 40px 14px;
  }
  .product-hero-title {
    font-size: 1.85rem;
  }
  .current-price {
    font-size: 1.7rem;
  }

  /* Slide-Out Cart Drawer Full Width on Mobile */
  .cart-drawer-panel {
    max-width: 100% !important;
  }

  /* Modal Bottom Sheet */
  .cod-modal-card {
    max-height: 88vh;
    padding: 20px 16px 24px;
    border-radius: 22px;
  }
}

.mobile-sticky-order-bar.enabled { display: flex !important; }


/* ==========================================================================
   LUXURY ANIMATED ORDER BUTTONS (GOLD SHIMMER SWEEP & KINETIC PULSE)
   ========================================================================== */

.btn-apple-primary,
#cod-submit-btn,
#main-cod-trigger-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #d4af37 0%, #fae084 35%, #d4af37 70%, #b89628 100%) !important;
  background-size: 220% auto !important;
  color: #000000 !important;
  font-weight: 800 !important;
  border: none !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
  animation: luxuryGoldShimmer 3.2s infinite linear, luxuryBtnPulse 2.8s infinite ease-in-out !important;
}

@keyframes luxuryGoldShimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes luxuryBtnPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.65), 0 0 16px rgba(212, 175, 55, 0.4);
  }
}

/* Continuous Light Beam Sweep across the button */
.btn-apple-primary::after,
#cod-submit-btn::after,
#main-cod-trigger-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: buttonLightBeam 3.2s infinite ease-in-out;
  pointer-events: none;
}

@keyframes buttonLightBeam {
  0% { left: -100%; }
  35%, 100% { left: 200%; }
}

/* Prepaid Discount Button Glowing Pulse */
.btn-apple-discounted,
#main-prepaid-trigger-btn {
  position: relative;
  overflow: hidden;
  animation: prepaidBtnGlow 2.5s infinite ease-in-out !important;
}

@keyframes prepaidBtnGlow {
  0%, 100% {
    border-color: rgba(52, 199, 89, 0.4);
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.15);
  }
  50% {
    border-color: rgba(52, 199, 89, 0.85);
    box-shadow: 0 6px 25px rgba(52, 199, 89, 0.35), 0 0 12px rgba(52, 199, 89, 0.25);
  }
}

/* ==========================================================================
   MOBILE MODAL USER-FRIENDLY SCROLL & SAFE PADDING (NO BUTTON CROPPING)
   ========================================================================== */

.cod-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cod-modal-overlay.active {
  display: flex !important;
  opacity: 1;
}

.cod-modal-card {
  position: relative;
  background: rgba(14, 14, 20, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 22px 20px 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 25px rgba(212, 175, 55, 0.2);
}

@media (max-width: 767px) {
  .cod-modal-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  .cod-modal-card {
    border-radius: 24px 24px 0 0 !important;
    max-height: 92vh !important;
    padding: 20px 16px 70px !important;
  }

  #cod-submit-btn {
    margin-top: 14px !important;
    margin-bottom: 25px !important;
    min-height: 52px !important;
  }

  .finish-swatches {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr)) !important;
    gap: 8px !important;
  }
}



/* ==========================================================================
   UNIFIED SETTIGATION ANIMATIONS MASTER ENGINE (100% CENTER-ORIGIN)
   ========================================================================== */

/* 1. Settigation Video 3 Product Cards (Ambient Floating Glow & Equalizer) */
.halo-card .halo-aura {
  opacity: 0.65;
  animation: mobileHaloAuraPulse 3.5s infinite ease-in-out;
}

.halo-card .halo-ripple {
  opacity: 0.5;
  transform: scale(1.15);
  animation: mobileHaloWave 4s infinite ease-in-out;
}

.halo-card .eq-bar:nth-child(1) { animation-duration: 0.75s; }
.halo-card .eq-bar:nth-child(2) { animation-duration: 0.95s; }
.halo-card .eq-bar:nth-child(3) { animation-duration: 0.65s; }

@keyframes mobileHaloAuraPulse {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.1); opacity: 0.85; }
}

@keyframes mobileHaloWave {
  0%, 100% { transform: scale(1.05); opacity: 0.35; }
  50% { transform: scale(1.25); opacity: 0.75; }
}

/* 2. Settigation Verification & Dispatch Modal Overlay Stages */
.orbital-verification-stage {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.orbital-verification-stage.active {
  display: flex !important;
}

.orbit-stage-header {
  margin-bottom: 16px;
}

.orbit-dynamic-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.orbit-dynamic-subtitle {
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* Stage 1: Component 89 Orbital Arena */
.orbit-phase-arena {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto 20px;
  transition: opacity 0.4s ease;
}

.orbit-phase-arena.fading-out {
  opacity: 0;
  transform: scale(0.9);
}

.orbit-track-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 175, 55, 0.45);
  animation: orbitRingSpin 10s linear infinite;
}

@keyframes orbitRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.orbit-hub-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -11px;
  margin-top: -11px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid var(--accent-primary);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  transition: all 0.4s ease;
}

.orbit-hub-dot.success {
  background: #34c759;
  border-color: #34c759;
  box-shadow: 0 0 25px rgba(52, 199, 89, 0.85);
  transform: scale(1.3);
}

.orbit-slot-node {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(20, 20, 28, 0.95);
  border: 1.5px solid var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

/* Stage 2: Settigation Delivery Van Dispatch Arena */
.van-dispatch-phase {
  display: none;
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 130px;
  margin: 10px auto 15px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.van-dispatch-phase.active {
  display: flex !important;
}

.express-delivery-van {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 135px;
  height: 75px;
  margin-left: -67px;
  margin-top: -37px;
  z-index: 20;
  transform: translateX(-240px);
}

.van-headlight-beam {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: 52px;
  margin-top: -8px;
  width: 70px;
  height: 40px;
  background: radial-gradient(ellipse at left, rgba(255, 235, 150, 0.6) 0%, rgba(255, 235, 150, 0) 70%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 19;
}

.dispatch-parcel-box {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  background: #d4a373;
  border: 1.5px solid #bc6c25;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  z-index: 25;
  transform: translateX(160px);
}

.van-cargo-shutter {
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.van-dispatch-ticker {
  font-size: 0.82rem;
  font-weight: 700;
  color: #34c759;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 6px;
  min-height: 20px;
}

/* Verdict Confirmation Box */
.orbit-verdict-box {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 16px 14px;
  margin-top: 10px;
}

.orbit-verdict-box.active {
  display: flex !important;
}

.verdict-ref-badge {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--accent-primary);
  color: var(--accent-primary);
  padding: 4px 12px;
  border-radius: 980px;
  font-size: 0.88rem;
  font-weight: 700;
}

.verdict-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}


/* ==========================================================================
   MOBILE FLOATING QUICK SCROLL ARROW BUTTON (JUMP DIRECTLY TO PRODUCTS)
   ========================================================================== */

.mobile-jump-btn {
  position: absolute;
  bottom: 22px;
  right: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 14, 20, 0.9);
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  padding: 8px 16px 8px 14px;
  border-radius: 980px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.85), 0 0 18px rgba(212, 175, 55, 0.35);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: jumpBtnBounce 2.2s infinite ease-in-out;
}

.mobile-jump-btn:hover, .mobile-jump-btn:active {
  background: rgba(24, 24, 34, 0.98);
  border-color: var(--accent-primary);
  transform: translateY(2px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.9), 0 0 25px rgba(212, 175, 55, 0.55);
}

.jump-arrow-icon {
  width: 20px;
  height: 20px;
  background: var(--accent-primary);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  animation: jumpArrowPulse 1.8s infinite ease-in-out;
}

@keyframes jumpBtnBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

@keyframes jumpArrowPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@media (min-width: 768px) {
  .mobile-jump-btn {
    bottom: 28px;
    right: 28px;
    font-size: 0.82rem;
    padding: 10px 18px 10px 16px;
  }
}

/* ==========================================================================
   LUXURY GLOWING LIGHT DOTS & TRAILING RIBBON CURSOR TRAIL
   ========================================================================== */

.luxury-cursor-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 999999;
}

/* Leading Gold Dot & Halo Cursor */
.luxury-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fae084, 0 0 20px #d4af37, 0 0 35px rgba(212, 175, 55, 0.8);
  pointer-events: none;
  z-index: 1000000;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  will-change: transform;
}

.luxury-cursor-halo {
  position: fixed;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(212, 175, 55, 0.65);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              background 0.3s ease, 
              opacity 0.25s ease;
  will-change: transform;
}

/* Hovering over clickable links and interactive cards */
.luxury-cursor-halo.hovering {
  width: 54px;
  height: 54px;
  border-color: #ffd700;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.6), inset 0 0 14px rgba(212, 175, 55, 0.2);
}

.luxury-cursor-dot.hovering {
  width: 12px;
  height: 12px;
  background: #fae084;
}

@media (max-width: 768px) {
  .luxury-cursor-canvas,
  .luxury-cursor-dot,
  .luxury-cursor-halo {
    display: none !important;
  }
}


/* ==========================================================================
   MOBILE LUXURY ENHANCEMENTS (TOUCH LIGHT TRAIL, GYRO 3D SHIMMER & 360 DRAG)
   ========================================================================== */

/* Gyroscope 3D Parallax & Specular Glare */
.gyro-specular-flare {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(250, 224, 132, 0.18) 0%, rgba(212, 175, 55, 0) 65%);
  mix-blend-mode: screen;
  z-index: 15;
  opacity: 0.8;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

/* Touch Light & Sparkle Canvas for Mobile */
.mobile-touch-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99999;
}

/* ==========================================================================
   COMPACT & STREAMLINED PRODUCT BUY SECTION (MOBILE LUXURY CLEANUP)
   ========================================================================== */

/* Rating Badge Compact */
.rating-badge-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px !important;
}

.rating-badge-top .stars {
  color: #d4af37;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.rating-badge-top span {
  color: #a1a1aa;
  font-size: 0.78rem !important;
  font-weight: 500;
}

/* Hero Title & Tagline Compact */
.product-hero-title {
  font-size: 1.65rem !important;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px !important;
  line-height: 1.15;
}

.product-hero-tagline {
  font-size: 0.82rem !important;
  color: #8e8e93 !important;
  margin-bottom: 12px !important;
}

/* Price Container Compact */
.price-container {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px !important;
  border: none !important;
}

.price-container .current-price {
  font-size: 1.8rem !important;
  font-weight: 800;
}

.price-container .original-price {
  font-size: 1.05rem !important;
}

.price-container .discount-tag {
  font-size: 0.72rem !important;
  padding: 2px 8px !important;
}

/* Prepaid Callout Compact */
.prepaid-discount-callout {
  padding: 8px 12px !important;
  margin-bottom: 12px !important;
  border-radius: 12px !important;
}

.prepaid-discount-callout strong {
  font-size: 0.8rem !important;
}

.prepaid-discount-callout p {
  font-size: 0.75rem !important;
  margin-top: 2px !important;
}

/* Edition Swatches Compact & Sleek (No 2-line text breaks) */
.option-block {
  margin-bottom: 12px !important;
}

.option-label {
  font-size: 0.76rem !important;
  font-weight: 700;
  color: #a1a1aa;
  margin-bottom: 6px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.finish-swatches {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
}

.swatch-btn {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #e4e4e7 !important;
  padding: 5px 11px !important;
  border-radius: 980px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
  min-height: 32px !important;
  height: 32px !important;
  transition: all 0.2s ease !important;
}

.swatch-btn.active, .swatch-btn:hover {
  border-color: var(--accent-primary) !important;
  background: rgba(212, 175, 55, 0.15) !important;
  color: #ffffff !important;
}

.swatch-circle {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Trust Perks Compact */
.trust-list {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  border-radius: 14px !important;
  padding: 10px 12px !important;
  margin-bottom: 12px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.trust-item {
  font-size: 0.76rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.trust-icon {
  font-size: 0.95rem !important;
}

/* Specifications Accordion Button Compact */
.desc-toggle-btn {
  padding: 9px 14px !important;
  font-size: 0.8rem !important;
  border-radius: 12px !important;
}


/* ==========================================================================
   FLOATING RIGHT-ARROW QUICK SCROLL BUTTON & STANDALONE PRODUCT LAYOUT
   ========================================================================== */

/* Floating Right Arrow Jump Button */
.floating-jump-arrow {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 14, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #f5f5f7;
  padding: 10px 18px;
  border-radius: 980px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulseGoldGlow 3s infinite ease-in-out;
}

.floating-jump-arrow:hover {
  transform: translateY(-3px) scale(1.04);
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.2);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.5);
  color: #ffffff;
}

.jump-arrow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #d4af37;
  color: #000000;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 900;
  transition: transform 0.2s ease;
}

.floating-jump-arrow:hover .jump-arrow-icon {
  transform: translateY(2px);
}

@keyframes pulseGoldGlow {
  0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.2); }
  50% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 28px rgba(212, 175, 55, 0.45); }
}

@media (max-width: 768px) {
  .floating-jump-arrow {
    bottom: 20px;
    right: 18px;
    padding: 8px 14px;
    font-size: 0.78rem;
  }
}

/* Standalone Product Page Layout */
.standalone-buy-section {
  padding-top: 130px !important;
  min-height: 85vh;
}

.product-thumb-gallery {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  justify-content: center;
}

.thumb-btn {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-btn.active, .thumb-btn:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
}

/* Catalog Card Order Button */
.btn-card-order {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 980px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
  transition: all 0.2s ease;
}

.btn-card-order:hover {
  background: #d4af37;
  color: #000000;
  border-color: #d4af37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}


/* ==========================================================================
   MENS AFFAIR - SWISS LUXURY DESIGN SYSTEM & PERFECT SIZING (ROLEX/OMEGA GRADE)
   ========================================================================== */

:root {
  --bg-obsidian: #060608;
  --bg-surface: #0c0c10;
  --bg-card: rgba(18, 18, 24, 0.85);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --border-gold-subtle: rgba(212, 175, 55, 0.18);
  --border-gold-active: rgba(212, 175, 55, 0.6);
  --gold-primary: #d4af37;
  --gold-light: #f3cf7a;
  --gold-dark: #aa8010;
  --gold-gradient: linear-gradient(135deg, #e5c158 0%, #d4af37 50%, #aa8010 100%);
  --gold-gradient-hover: linear-gradient(135deg, #f5d47a 0%, #e0bd4f 50%, #c49622 100%);
  --text-pure: #ffffff;
  --text-platinum: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 980px;
}

body {
  background-color: var(--bg-obsidian) !important;
  color: var(--text-platinum);
  font-family: -apple-system, BlinkMacSystemFont, "Outfit", "Inter", "Segoe UI", Roboto, sans-serif;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   PRODUCT IMAGE SIZING & LUXURY BACKDROP FRAMING (MOBILE & DESKTOP)
   ========================================================================== */

/* Featured Buy Section Image Frame */
.buy-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-highlight-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 0%, rgba(18, 18, 24, 0.4) 50%, transparent 75%);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-highlight-frame:hover {
  border-color: var(--border-gold-active);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

.featured-product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 15px rgba(212, 175, 55, 0.15));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-highlight-frame:hover .featured-product-img {
  transform: scale(1.04) translateY(-4px);
}

/* Mobile Image Sizing Optimization */
@media (max-width: 768px) {
  .product-highlight-frame {
    max-width: 320px;
    height: 300px;
    padding: 16px;
    margin: 0 auto 20px;
  }
}

/* ==========================================================================
   LUXURY COLLECTION PRODUCT CARDS (PERFECT PROPORTIONS & AMBIENT LIGHT)
   ========================================================================== */

.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.halo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.halo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.halo-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-active);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.2);
}

.halo-card:hover::before {
  opacity: 1;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.card-img-wrap {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 14px;
  position: relative;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
}

.card-product-img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.8));
  transition: transform 0.4s ease;
}

.halo-card:hover .card-product-img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .product-catalog-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
  }
  .card-img-wrap {
    height: 180px;
  }
}

.card-rating {
  color: var(--gold-primary);
  font-size: 0.82rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.card-rating span {
  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 500;
}

.card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure);
  margin-bottom: 4px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.4;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
  margin-top: auto;
}

.card-sale-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-pure);
}

.card-regular-price {
  font-size: 0.88rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.btn-card-order {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-platinum);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-card-order:hover {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: #000000;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   ULTRA-LUXURY BUTTONS & CTAS
   ========================================================================== */

.btn-apple-primary {
  background: var(--gold-gradient) !important;
  color: #000000 !important;
  border: none !important;
  font-weight: 800 !important;
  font-size: 0.92rem !important;
  padding: 14px 24px !important;
  border-radius: var(--radius-pill) !important;
  letter-spacing: -0.01em;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35) !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.btn-apple-primary:hover {
  background: var(--gold-gradient-hover) !important;
  transform: translateY(-2px) scale(1.01) !important;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.55) !important;
  color: #000000 !important;
}

.btn-apple-discounted {
  background: rgba(18, 18, 24, 0.9) !important;
  border: 1px solid var(--border-gold-subtle) !important;
  color: var(--text-pure) !important;
  padding: 12px 20px !important;
  border-radius: var(--radius-pill) !important;
  transition: all 0.3s ease !important;
}

.btn-apple-discounted:hover {
  border-color: var(--border-gold-active) !important;
  background: rgba(212, 175, 55, 0.12) !important;
  transform: translateY(-2px) !important;
}

/* ==========================================================================
   STANDALONE PRODUCT DETAIL PAGE (CLEAN E-COMMERCE - ZERO 3D HERO CANVAS)
   ========================================================================== */

.standalone-product-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 28px;
}

.product-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.product-breadcrumb a:hover {
  color: var(--gold-primary);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Gallery Thumbnails */
.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
}

.gallery-thumb-btn {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-gold-subtle);
  background: var(--bg-card);
  padding: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumb-btn.active, .gallery-thumb-btn:hover {
  border-color: var(--gold-primary);
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Sticky Buy Box on Right */
.sticky-buy-box {
  position: sticky;
  top: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .sticky-buy-box {
    padding: 20px 16px;
  }
}


/* ==========================================================================
   SWISS LUXURY MINIMALIST PRECISION CURSOR (ROLEX / APPLE GRADE)
   ========================================================================== */

.luxury-cursor-canvas {
  display: none !important; /* Removed heavy multi-node ribbon lines */
}

.luxury-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  background: #d4af37;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  opacity: 0;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.8), 0 0 16px rgba(212, 175, 55, 0.4);
  transition: width 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              margin 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              background 0.25s ease, 
              opacity 0.25s ease;
  will-change: transform;
}

.luxury-cursor-halo {
  position: fixed;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 1.2px solid rgba(212, 175, 55, 0.45);
  background: transparent;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  opacity: 0;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              margin 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              background 0.3s ease, 
              box-shadow 0.3s ease, 
              opacity 0.25s ease;
  will-change: transform;
}

/* Elegant Magnetic Hover Expansion */
.luxury-cursor-halo.hovering {
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border-color: rgba(212, 175, 55, 0.85);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.4), inset 0 0 10px rgba(212, 175, 55, 0.15);
}

.luxury-cursor-dot.hovering {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  background: #ffffff;
  box-shadow: 0 0 10px #ffffff;
}

@media (max-width: 768px), (pointer: coarse) {
  .luxury-cursor-dot,
  .luxury-cursor-halo,
  .luxury-cursor-canvas {
    display: none !important;
  }
}


/* ==========================================================================
   HEADER LOGO CLAMP & WOOCOMMERCE PRODUCT PAGE LUXURY DARK THEME
   ========================================================================== */

/* Strict Logo Sizing - Prevent Giant Logo Overflow */
.nav-brand {
  display: flex !important;
  align-items: center !important;
  max-height: 48px !important;
  overflow: hidden !important;
  text-decoration: none !important;
}

.custom-logo,
.custom-logo-link,
.custom-logo-link img,
.nav-brand img,
.site-logo-img {
  max-height: 42px !important;
  height: 42px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}

@media (max-width: 768px) {
  .custom-logo,
  .custom-logo-link img,
  .nav-brand img,
  .site-logo-img {
    max-height: 34px !important;
    height: 34px !important;
    max-width: 140px !important;
  }
}

/* Standalone Product Page Styling */
.standalone-product-page {
  padding-top: 32px !important;
  padding-bottom: 0px !important;
  min-height: auto !important;
  background-color: var(--bg-obsidian, #060608) !important;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.product-gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.gallery-thumb-btn {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(18, 18, 24, 0.85);
  padding: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-thumb-btn.active, .gallery-thumb-btn:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.15);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.sticky-buy-box {
  background: rgba(18, 18, 24, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .standalone-product-page {
    padding-top: 20px !important;
  }

  .product-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .sticky-buy-box {
    padding: 20px 16px;
  }
}


/* ==========================================================================
   STRICT PRODUCT IMAGE CONTAINMENT & NO OVERFLOW (DESKTOP & MOBILE)
   ========================================================================== */

/* 1. Collection Product Cards Image Frame */
.halo-card {
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

.card-img-wrap {
  width: 100% !important;
  height: 220px !important;
  max-height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 12px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, rgba(18, 18, 24, 0.5) 70%) !important;
}

.card-img-wrap a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
}

.card-product-img,
.card-img-wrap img,
.halo-card img {
  max-width: 88% !important;
  max-height: 88% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  border-radius: 8px !important;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.8)) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.halo-card:hover .card-product-img,
.halo-card:hover .card-img-wrap img {
  transform: scale(1.04) !important;
}

/* 2. Standalone Product Page & Featured Buy Frame */
.product-highlight-frame {
  position: relative !important;
  width: 100% !important;
  max-width: 500px !important;
  height: 480px !important;
  max-height: 480px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.12) 0%, rgba(18, 18, 24, 0.6) 65%, transparent 100%) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 20px !important;
  padding: 20px !important;
  box-sizing: border-box !important;
  margin: 0 auto !important;
}

.featured-product-img,
.product-highlight-frame img,
#main-product-gallery-img {
  max-width: 96% !important;
  max-height: 96% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  margin: 0 auto !important;
  border-radius: 10px !important;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.9)) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease !important;
}

/* 3. Mobile Strict Responsive Containment */
@media (max-width: 768px) {
  .product-highlight-frame {
    max-width: 340px !important;
    height: 330px !important;
    max-height: 330px !important;
    padding: 14px !important;
    margin: 0 auto 18px !important;
  }
  
  .card-img-wrap {
    height: 180px !important;
    max-height: 180px !important;
  }
  
  .card-product-img,
  .card-img-wrap img {
    max-width: 85% !important;
    max-height: 85% !important;
  }
}

/* ==========================================================================
   GLOBAL PAGE PREVIOUS / BACK BUTTON
   ========================================================================== */
.theme-global-back-bar {
  padding: 24px 0 12px;
  position: relative;
  z-index: 15;
}

.btn-theme-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.28);
  color: #f3f4f6;
  padding: 10px 22px;
  border-radius: 9999px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-theme-back:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: #d4af37;
  color: #d4af37;
  transform: translateX(-4px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
}

.btn-theme-back svg {
  stroke: currentColor;
  transition: transform 0.25s ease;
}

.btn-theme-back:hover svg {
  transform: translateX(-3px);
}

@media (max-width: 768px) {
  .theme-global-back-bar {
    padding: 16px 0 8px;
  }
  .btn-theme-back {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   COLLECTIONS DIRECTORY LISTING
   ========================================================================== */
.collections-list-section {
  padding: 40px 0 80px;
}

.collection-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.15) !important;
}

/* ==========================================================================
   PERFECT ARC LIGHT FOLLOWER ALIGNMENT (TEXT 100% CENTERED)
   ========================================================================== */
.arc-light-follower {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  border-radius: 980px !important;
  pointer-events: none !important;
  z-index: 1 !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), width 0.35s cubic-bezier(0.16, 1, 0.3, 1), height 0.35s ease, opacity 0.25s ease !important;
  background: radial-gradient(circle at center, rgba(110, 231, 255, 0.18) 0%, rgba(212, 175, 55, 0.1) 60%, transparent 100%) !important;
  border: 1.5px solid rgba(110, 231, 255, 0.75) !important;
  box-shadow: 0 0 20px rgba(110, 231, 255, 0.4), inset 0 0 12px rgba(110, 231, 255, 0.25) !important;
  box-sizing: border-box !important;
}

.nav-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

.nav-link span {
  display: inline-block !important;
  vertical-align: middle !important;
}

/* ==========================================================================
   PRODUCT PAGE TOP PADDING & MODULAR BLOCKS STYLING
   ========================================================================== */
.standalone-product-page {
  padding-top: 16px !important;
  padding-bottom: 0px !important;
  min-height: auto !important;
}

.theme-global-back-bar {
  padding: 12px 0 0px !important;
}

.product-qty-block {
  margin: 18px 0;
}

.qty-stepper-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 4px 8px;
  gap: 6px;
}

.qty-btn {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
}

.qty-input-modern {
  width: 44px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: center;
}

.product-actions-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.btn-product-add-cart {
  width: 100%;
  padding: 16px 28px;
  background: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 980px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
}

.btn-product-add-cart:hover {
  background: #d4af37;
  color: #000;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

.btn-product-buy-now {
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #b89628 100%);
  color: #0b0b0e;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 980px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-product-buy-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(212, 175, 55, 0.55);
}

.checkout-note-pill {
  text-align: center;
  font-size: 0.82rem;
  color: #9ca3af;
  margin-top: 4px;
}

.product-trust-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px;
}

.trust-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  color: #e5e7eb;
  font-weight: 500;
}

/* ==========================================================================
   ONE-CLICK LIGHT THEME (CLEAN WHITE / LUXURY LIGHT)
   ========================================================================== */
body.theme-mode-light {
  --bg-dark: #ffffff !important;
  --bg-surface: #f8f9fa !important;
  --bg-card: #ffffff !important;
  --bg-input: #f3f4f6 !important;
  --text-main: #111827 !important;
  --text-muted: #4b5563 !important;
  --text-dim: #6b7280 !important;
  --border-glass: rgba(0, 0, 0, 0.08) !important;
  --border-glass-hover: rgba(212, 175, 55, 0.6) !important;
  background-color: #ffffff !important;
  color: #111827 !important;
}

body.theme-mode-light .apple-navbar {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
}

body.theme-mode-light .nav-links.desktop-nav-links {
  background: rgba(243, 244, 246, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

body.theme-mode-light .nav-link {
  color: #4b5563 !important;
}

body.theme-mode-light .nav-link svg {
  stroke: #4b5563 !important;
}

body.theme-mode-light .nav-link.active,
body.theme-mode-light .nav-link:hover {
  color: #111827 !important;
}

body.theme-mode-light .nav-link.active svg,
body.theme-mode-light .nav-link:hover svg {
  stroke: #111827 !important;
}

body.theme-mode-light .halo-card,
body.theme-mode-light .select-product-card,
body.theme-mode-light .collection-card,
body.theme-mode-light .editorial-card,
body.theme-mode-light .luxury-page-card,
body.theme-mode-light .sticky-buy-box,
body.theme-mode-light .product-highlight-frame {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
  color: #111827 !important;
}

body.theme-mode-light .card-title,
body.theme-mode-light .card-title a,
body.theme-mode-light .product-hero-title,
body.theme-mode-light .section-title,
body.theme-mode-light .page-title,
body.theme-mode-light .footer-heading,
body.theme-mode-light h1,
body.theme-mode-light h2,
body.theme-mode-light h3,
body.theme-mode-light h4 {
  color: #111827 !important;
}

body.theme-mode-light .card-desc,
body.theme-mode-light .section-subtitle,
body.theme-mode-light .page-subtitle,
body.theme-mode-light .footer-text,
body.theme-mode-light p {
  color: #4b5563 !important;
}

body.theme-mode-light .brand-lockup strong {
  color: #111827 !important;
}

body.theme-mode-light .site-footer {
  background: #f8f9fa !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.theme-mode-light .footer-list a {
  color: #4b5563 !important;
}

body.theme-mode-light .footer-list a:hover {
  color: #111827 !important;
}

body.theme-mode-light .btn-theme-back {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  color: #111827 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}

body.theme-mode-light .btn-theme-back:hover {
  border-color: #d4af37 !important;
  color: #d4af37 !important;
}

body.theme-mode-light .btn-product-add-cart {
  background: #ffffff !important;
  border: 2px solid #111827 !important;
  color: #111827 !important;
}

body.theme-mode-light .btn-product-add-cart:hover {
  background: #111827 !important;
  color: #ffffff !important;
}

body.theme-mode-light .qty-stepper-wrap {
  background: #f3f4f6 !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

body.theme-mode-light .qty-btn {
  color: #111827 !important;
}

body.theme-mode-light .qty-input-modern {
  color: #111827 !important;
}

body.theme-mode-light .tab-btn {
  background: #f3f4f6 !important;
  color: #4b5563 !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body.theme-mode-light .tab-btn.active {
  background: #111827 !important;
  color: #ffffff !important;
  border-color: #111827 !important;
}

body.theme-mode-light .trust-badge-pill {
  background: #f3f4f6 !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #374151 !important;
}






/* ==========================================================================
   PERFECT PRODUCT GALLERY, TWO-WAY SYNC & RESPONSIVE POLISH
   ========================================================================== */

/* Grid container */
.product-detail-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.08fr !important;
  gap: 48px !important;
  align-items: start !important;
}

/* Gallery Column: Sticky on desktop so no empty void when scrolling */
@media (min-width: 901px) {
  .product-gallery-column {
    position: sticky !important;
    top: 90px !important;
    align-self: start !important;
  }
}

/* Left: Clean Image Frame (NO AWKWARD WHITE PADDING BORDER) */
.product-highlight-frame {
  position: relative !important;
  width: 100% !important;
  max-width: 490px !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  max-height: 490px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
  background: #ffffff !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding: 0 !important; /* Zero padding ensures photo fills frame cleanly */
  margin: 0 auto !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45) !important;
}

.featured-product-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 auto !important;
  border-radius: 16px !important;
  transition: opacity 0.18s ease !important;
}

/* Gallery Thumbnails */
.product-gallery-thumbs {
  display: flex !important;
  gap: 10px !important;
  margin-top: 14px !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}

.gallery-thumb-btn {
  width: 58px !important;
  height: 58px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: #0e0e12 !important;
  padding: 4px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
}

.gallery-thumb-btn img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 6px !important;
}

.gallery-thumb-btn.active, .gallery-thumb-btn:hover {
  border-color: #d4af37 !important;
  background: rgba(212, 175, 55, 0.12) !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4) !important;
}

/* Right Column: Seamless (NO CARD BORDER OR HEAVY GLASS BOX) */
.product-buy-column {
  padding: 0 !important;
}

.sticky-buy-box, .product-info-seamless {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Product Hero Title */
.product-hero-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(1.65rem, 2.5vw, 2.25rem) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  color: #ffffff !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: 0.01em !important;
}

/* Price */
.price-container {
  display: flex !important;
  align-items: baseline !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
  flex-wrap: wrap !important;
}

.current-price {
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  color: #d4af37 !important;
  letter-spacing: -0.01em !important;
}

.original-price {
  font-size: 1.15rem !important;
  color: #71717a !important;
  text-decoration: line-through !important;
  font-weight: 500 !important;
}

.savings-badge-pill {
  display: inline-block !important;
  padding: 3px 10px !important;
  border-radius: 9999px !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  background: rgba(212, 175, 55, 0.15) !important;
  color: #d4af37 !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
}

/* Variant Picker (Boxed chips matching mensaffair.store) */
.variant-picker-wrap {
  margin: 16px 0 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

.variant-group-header {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-bottom: 8px !important;
  font-size: 0.88rem !important;
}

.variant-group-label {
  color: #a1a1aa !important;
  font-weight: 500 !important;
}

.variant-selected-val {
  color: #d4af37 !important;
  font-weight: 700 !important;
}

.variant-chips-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.variant-chip-label {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 7px 16px !important;
  border-radius: 8px !important;
  background: #0d0d12 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #e4e4e7 !important;
  font-size: 0.84rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  user-select: none !important;
}

.variant-chip-label input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.variant-chip-label:hover {
  border-color: rgba(212, 175, 55, 0.6) !important;
  color: #ffffff !important;
}

.variant-chip-label.is-selected {
  border-color: #d4af37 !important;
  background: rgba(212, 175, 55, 0.12) !important;
  color: #d4af37 !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25) !important;
}

/* Quantity Stepper */
.product-qty-block {
  margin: 16px 0 !important;
}

.product-qty-block .option-label {
  display: block !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  color: #a1a1aa !important;
  margin-bottom: 8px !important;
  text-transform: uppercase !important;
}

.qty-stepper-wrap {
  display: inline-flex !important;
  align-items: center !important;
  background: #0d0d12 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 9999px !important;
  padding: 3px 6px !important;
  gap: 4px !important;
  height: 38px !important;
  box-sizing: border-box !important;
}

.qty-btn {
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 1.15rem !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}

.qty-btn:hover {
  background: rgba(212, 175, 55, 0.2) !important;
  color: #d4af37 !important;
}

.qty-input-modern {
  width: 38px !important;
  background: transparent !important;
  border: none !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  text-align: center !important;
}

/* Buy Buttons (Matching Reference Site) */
.product-actions-block {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  margin: 18px 0 !important;
}

/* 1. Add to Cart Outline Pill */
.btn-product-add-cart {
  width: 100% !important;
  height: 48px !important;
  padding: 0 20px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1.5px solid #d4af37 !important;
  color: #d4af37 !important;
  font-family: inherit !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border-radius: 9999px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.25s ease !important;
}

.btn-product-add-cart:hover {
  background: #d4af37 !important;
  color: #000000 !important;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35) !important;
}

/* 2. Order Now Luxury Gold Pill */
.btn-product-buy-now {
  width: 100% !important;
  height: 48px !important;
  padding: 0 20px !important;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5c2 40%, #c9a962 100%) !important;
  color: #000000 !important;
  border: none !important;
  font-family: inherit !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 9999px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.32) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-product-buy-now:hover {
  transform: translateY(-1.5px) !important;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.45) !important;
}

.checkout-note-pill {
  text-align: center !important;
  font-size: 0.76rem !important;
  color: #a1a1aa !important;
  margin-top: 4px !important;
}

/* Shipping Timeline Widget */
.shipping-timeline-wrapper {
  width: 100% !important;
  margin: 20px 0 !important;
  padding: 8px 0 !important;
  clear: both !important;
}

.timeline-container {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  max-width: 440px !important;
  margin: 0 auto !important;
  position: relative !important;
}

.timeline-step {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  position: relative !important;
  z-index: 2 !important;
  width: 74px !important;
  text-align: center !important;
}

.step-icon {
  width: 36px !important;
  height: 36px !important;
  background: #000000 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 8px !important;
  border: 1.5px solid #c9a962 !important;
}

.step-icon svg {
  width: 17px !important;
  height: 17px !important;
  color: #ffffff !important;
  stroke: #ffffff !important;
}

.step-label {
  font-size: 9.5px !important;
  font-weight: 800 !important;
  margin: 0 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
}

.step-date {
  font-size: 9.5px !important;
  color: #a1a1aa !important;
  margin: 3px 0 0 0 !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

.scrolling-dot-line {
  flex-grow: 1 !important;
  height: 2px !important;
  margin-top: 17px !important;
  background-image: linear-gradient(to right, #c9a962 40%, transparent 0%) !important;
  background-size: 8px 2px !important;
  background-repeat: repeat-x !important;
  animation: dotScroll 1s infinite linear !important;
  opacity: 0.7 !important;
}

/* Special Offer Block */
.product-offer-block {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  margin: 18px 0 !important;
}

.offer-block-title {
  margin: 0 0 8px 0 !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #d4af37 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

.offer-block-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.offer-block-item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.84rem !important;
  color: #e4e4e7 !important;
  font-weight: 500 !important;
}

.offer-icon {
  width: 14px !important;
  height: 14px !important;
  color: #d4af37 !important;
  stroke: #d4af37 !important;
  flex-shrink: 0 !important;
}

/* Collapsible Description */
.product-accordion-wrapper {
  margin: 16px 0 !important;
}

.luxury-desc-accordion {
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.02) !important;
  overflow: hidden !important;
  transition: all 0.2s ease !important;
}

.luxury-desc-accordion[open] {
  border-color: rgba(212, 175, 55, 0.45) !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

.luxury-desc-summary {
  padding: 14px 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer !important;
  list-style: none !important;
  user-select: none !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
}

.luxury-desc-summary::-webkit-details-marker {
  display: none !important;
}

.chevron-arrow {
  width: 18px !important;
  height: 18px !important;
  stroke: #d4af37 !important;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.luxury-desc-accordion[open] .chevron-arrow {
  transform: rotate(180deg) !important;
}

.luxury-desc-content {
  padding: 0 18px 18px !important;
  color: #d1d5db !important;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  border-top: 1px solid rgba(212, 175, 55, 0.1) !important;
  padding-top: 14px !important;
}

/* Related Products Section */
.related-products-section {
  padding: 20px 0 60px !important;
  margin-top: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.related-title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(1.5rem, 2.2vw, 2rem) !important;
  color: #ffffff !important;
  margin-top: 0 !important;
  margin-bottom: 4px !important;
  font-weight: 700 !important;
}

.related-subtitle {
  color: #a1a1aa !important;
  font-size: 0.86rem !important;
  margin-bottom: 18px !important;
}

.related-products-section .product-catalog-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}

.related-products-section .card-img-wrap {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  max-height: none !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

.related-products-section .card-product-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
}

/* ==========================================================================
   4-COLUMN EDITABLE FOOTER (MATCHING SCREENSHOT 1 & 2)
   ========================================================================== */
.footer-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
  gap: 36px !important;
  margin-bottom: 40px !important;
  align-items: start !important;
}

.footer-brand-title {
  display: flex !important;
  flex-direction: column !important;
  line-height: 1.05 !important;
  margin-bottom: 14px !important;
  font-family: 'Playfair Display', Georgia, serif !important;
}

.footer-brand-mens {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  color: #ffffff !important;
}

.footer-brand-affair {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em !important;
  color: #d4af37 !important;
  margin-top: 2px !important;
}

.footer-text {
  font-size: 0.84rem !important;
  color: #9ca3af !important;
  line-height: 1.6 !important;
  margin-bottom: 10px !important;
}

.footer-heading {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  margin-bottom: 14px !important;
  color: #ffffff !important;
  letter-spacing: 0.02em !important;
}

.footer-list {
  list-style: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 9px !important;
  padding: 0 !important;
  margin: 0 !important;
}

.footer-list a {
  color: #9ca3af !important;
  font-size: 0.84rem !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.footer-list a:hover {
  color: #ffffff !important;
}

.badge-pill.highlight-pill {
  border-color: rgba(34, 197, 94, 0.4) !important;
  color: #22c55e !important;
  background: rgba(34, 197, 94, 0.08) !important;
  padding: 4px 10px !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
}

/* ==========================================================================
   MOBILE FIRST RESPONSIVENESS
   ========================================================================== */
@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .product-gallery-column {
    position: static !important;
  }

  .product-highlight-frame {
    max-width: 100% !important;
    height: auto !important;
    max-height: 380px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }

  .related-products-section .product-catalog-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

@media (max-width: 540px) {
  .standalone-product-page {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .product-highlight-frame {
    max-height: 320px !important;
    border-radius: 14px !important;
  }

  .gallery-thumb-btn {
    width: 50px !important;
    height: 50px !important;
  }

  .product-hero-title {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }

  .current-price {
    font-size: 1.55rem !important;
  }

  .variant-chips-grid {
    gap: 6px !important;
  }

  .variant-chip-label {
    padding: 6px 12px !important;
    font-size: 0.8rem !important;
  }

  .btn-product-add-cart, .btn-product-buy-now {
    height: 46px !important;
    font-size: 0.84rem !important;
  }

  .timeline-container {
    gap: 2px !important;
  }

  .timeline-step {
    width: 62px !important;
  }

  .step-icon {
    width: 30px !important;
    height: 30px !important;
  }

  .step-icon svg {
    width: 14px !important;
    height: 14px !important;
  }

  .step-label, .step-date {
    font-size: 8.5px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: left !important;
  }
}


/* ==========================================================================
   BUTTON LIGHT BEAM ANIMATION & SHIPPING TIMELINE DOT SCROLL ANIMATION
   ========================================================================== */

/* Order Now Button with Luxury Light Beam Sweep Animation */
.btn-product-buy-now {
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 48px !important;
  padding: 0 20px !important;
  background: linear-gradient(135deg, #d4af37 0%, #f4e5c2 40%, #c9a962 100%) !important;
  color: #000000 !important;
  border: none !important;
  font-family: inherit !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 9999px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.32) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.btn-product-buy-now::after {
  content: '' !important;
  position: absolute !important;
  top: -50% !important;
  left: -100% !important;
  width: 65px !important;
  height: 200% !important;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0) 100%
  ) !important;
  transform: rotate(25deg) !important;
  animation: buttonLightBeam 3.2s infinite ease-in-out !important;
  pointer-events: none !important;
}

@keyframes buttonLightBeam {
  0% { left: -100%; }
  35%, 100% { left: 200%; }
}

/* Shipping Timeline Scrolling Dot Line Animation (Guaranteed Active) */
.scrolling-dot-line {
  flex-grow: 1 !important;
  height: 2px !important;
  margin-top: 17px !important;
  background-image: linear-gradient(to right, #c9a962 40%, transparent 0%) !important;
  background-size: 10px 2px !important;
  background-repeat: repeat-x !important;
  animation: dotScroll 1s infinite linear !important;
  opacity: 0.75 !important;
}

@keyframes dotScroll {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 20px 0;
  }
}


/* ==========================================================================
   MOBILE & LUXURY CARD POLISH (WHITE LINKS, 2-LINE CLAMP, EDGE SPACING)
   ========================================================================== */

/* 1. Global Container Padding: Ensure NOTHING touches screen edges */
.section-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
}

/* 2. Product Card Title Links: Eliminate blue/purple visited/unvisited defaults */
.halo-card .card-title,
.halo-card .card-title a,
.halo-card .pcard-title,
.halo-card .pcard-title a,
.select-product-card .card-title,
.select-product-card .card-title a,
.product-card .pcard-title,
.product-card .pcard-title a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  transition: color 0.2s ease !important;
}

.halo-card .card-title a:link,
.halo-card .card-title a:visited,
.halo-card .pcard-title a:link,
.halo-card .pcard-title a:visited,
.select-product-card .card-title a:link,
.select-product-card .card-title a:visited,
.product-card .pcard-title a:link,
.product-card .pcard-title a:visited {
  color: #ffffff !important;
  text-decoration: none !important;
}

.halo-card .card-title a:hover,
.halo-card .pcard-title a:hover,
.select-product-card .card-title a:hover,
.product-card .pcard-title a:hover,
.halo-card:hover .card-title a,
.halo-card:hover .pcard-title a {
  color: #d4af37 !important;
}

body.theme-mode-light .halo-card .card-title,
body.theme-mode-light .halo-card .card-title a,
body.theme-mode-light .halo-card .card-title a:link,
body.theme-mode-light .halo-card .card-title a:visited,
body.theme-mode-light .select-product-card .card-title a,
body.theme-mode-light .select-product-card .card-title a:link,
body.theme-mode-light .select-product-card .card-title a:visited {
  color: #111827 !important;
}

body.theme-mode-light .halo-card .card-title a:hover,
body.theme-mode-light .select-product-card .card-title a:hover {
  color: #d4af37 !important;
}

.btn-card-order .btn-text-mobile {
  display: none;
}

/* 3. Mobile Strict Optimization (Screens <= 768px) */
@media (max-width: 768px) {
  /* Container Side Padding */
  .section-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Standalone Product Page Mobile Formatting */
  .standalone-product-page {
    padding-top: 14px !important;
    padding-bottom: 24px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .product-buy-column,
  .product-info-seamless {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .product-hero-title {
    font-size: clamp(1.24rem, 4.2vw, 1.45rem) !important;
    line-height: 1.28 !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.01em !important;
  }

  .current-price {
    font-size: 1.42rem !important;
    font-weight: 800 !important;
  }

  .price-container {
    margin-bottom: 12px !important;
    gap: 8px !important;
  }

  .variant-picker-wrap {
    margin-bottom: 14px !important;
  }

  .variant-option-group {
    margin-bottom: 12px !important;
  }

  .variant-group-header {
    margin-bottom: 6px !important;
  }

  .variant-group-label {
    font-size: 0.80rem !important;
  }

  .variant-selected-value {
    font-size: 0.80rem !important;
  }

  .variant-chips-grid {
    gap: 6px !important;
  }

  .variant-chip-label {
    padding: 6px 12px !important;
    font-size: 0.78rem !important;
    border-radius: 8px !important;
  }

  .product-qty-block {
    margin: 14px 0 !important;
  }

  .product-actions-block {
    margin: 16px 0 !important;
    gap: 10px !important;
  }

  .btn-product-add-cart,
  .btn-product-buy-now {
    height: 48px !important;
    font-size: 0.86rem !important;
    padding: 0 16px !important;
    border-radius: 9999px !important;
  }

  .checkout-note-pill {
    margin-top: 6px !important;
    font-size: 0.80rem !important;
  }

  .shipping-timeline-wrapper {
    margin: 16px 0 !important;
  }

  .timeline-container {
    padding: 10px 4px !important;
  }

  .product-offer-block {
    margin: 14px 0 !important;
    padding: 12px 14px !important;
  }

  .product-accordion-wrapper {
    margin: 14px 0 !important;
  }

  /* Home Page Collection Grid: Compact Luxury 2-Column Cards */
  .products-catalog-section {
    padding: 34px 0 !important;
  }

  .section-header {
    margin-bottom: 22px !important;
    padding: 0 4px !important;
  }

  .section-title {
    font-size: 1.62rem !important;
    line-height: 1.25 !important;
    margin-bottom: 6px !important;
  }

  .section-subtitle {
    font-size: 0.82rem !important;
    line-height: 1.45 !important;
  }

  .product-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .halo-card,
  .select-product-card,
  .product-card {
    padding: 12px 10px 14px !important;
    border-radius: 16px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    min-height: auto !important;
  }

  .halo-card .card-badge {
    font-size: 0.62rem !important;
    padding: 3px 7px !important;
    margin-bottom: 4px !important;
    letter-spacing: 0.04em !important;
    border-radius: 6px !important;
    align-self: flex-start !important;
  }

  .halo-card .card-img-wrap {
    height: 135px !important;
    max-height: 135px !important;
    margin: 4px 0 8px !important;
    border-radius: 10px !important;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08) 0%, rgba(18, 18, 24, 0.6) 70%) !important;
  }

  .halo-card .card-img-wrap img,
  .halo-card .card-product-img {
    max-width: 86% !important;
    max-height: 86% !important;
    object-fit: contain !important;
  }

  .halo-card .card-rating {
    font-size: 0.68rem !important;
    margin-bottom: 4px !important;
    line-height: 1 !important;
  }

  .halo-card .card-title,
  .halo-card .card-title a,
  .halo-card .pcard-title,
  .halo-card .pcard-title a {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    height: 2.5em !important; /* Uniform height ensures side-by-side alignment */
    margin-bottom: 4px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: #ffffff !important;
  }

  /* Hide description on mobile cards for sleek, compact look */
  .halo-card .card-desc,
  .select-product-card .card-desc {
    display: none !important;
  }

  .halo-card .card-price-row,
  .halo-card .pcard-price-row {
    margin-top: 4px !important;
    margin-bottom: 8px !important;
    gap: 4px !important;
    display: flex !important;
    align-items: baseline !important;
  }

  .halo-card .card-sale-price,
  .halo-card .p-current {
    font-size: 0.94rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
  }

  .halo-card .card-regular-price,
  .halo-card .p-old {
    font-size: 0.72rem !important;
  }

  .halo-card .btn-card-order,
  .halo-card .pcard-btn {
    margin-top: auto !important;
    padding: 7px 8px !important;
    font-size: 0.70rem !important;
    font-weight: 700 !important;
    border-radius: 9999px !important;
    text-align: center !important;
    white-space: nowrap !important;
  }

  .btn-card-order .btn-text-full {
    display: none !important;
  }

  .btn-card-order .btn-text-mobile {
    display: inline !important;
  }
}


/* ==========================================================================
   PERMANENT REMOVAL OF FLOATING "PRODUCT SECTION ↓" JUMP ARROW BUTTON
   ========================================================================== */
.floating-jump-arrow,
#floating-jump-arrow,
a[href="#products-catalog-section"].floating-jump-arrow {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ==========================================================================
   ULTRA-LUXURY MOBILE DOCK MENU (EXACT MATCH TO DESKTOP NAVBAR ICONS & GLOW)
   ========================================================================== */
.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(10, 10, 15, 0.98) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.12) !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease !important;
  opacity: 0;
  z-index: 9999 !important;
}

.mobile-nav-drawer.open {
  max-height: 640px !important;
  opacity: 1 !important;
}

.mobile-drawer-inner {
  padding: 18px 18px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

/* Drawer Brand Header */
.mobile-drawer-top-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-bottom: 4px !important;
}

.mobile-drawer-badge {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  color: #d4af37 !important;
  text-transform: uppercase !important;
  background: rgba(212, 175, 55, 0.1) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  padding: 3px 8px !important;
  border-radius: 9999px !important;
}

/* Dock Menu Items List */
.mobile-dock-menu {
  display: flex !important;
  flex-direction: column !important;
  gap: 9px !important;
}

.mobile-dock-link {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 10px 16px !important;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  text-decoration: none !important;
  color: #e5e7eb !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-sizing: border-box !important;
}

.mobile-dock-link:active {
  transform: scale(0.98) !important;
}

/* Active Pill Item (Exact Arc Light Follower Glow) */
.mobile-dock-link.active {
  background: radial-gradient(circle at center, rgba(110, 231, 255, 0.16) 0%, rgba(212, 175, 55, 0.08) 60%, rgba(18, 18, 24, 0.9) 100%) !important;
  border: 1.5px solid rgba(110, 231, 255, 0.75) !important;
  box-shadow: 0 0 18px rgba(110, 231, 255, 0.35), inset 0 0 10px rgba(110, 231, 255, 0.18) !important;
  color: #ffffff !important;
}

.mobile-dock-link.active .mobile-dock-icon {
  background: rgba(110, 231, 255, 0.18) !important;
  border-color: rgba(110, 231, 255, 0.7) !important;
  color: #6ee7ff !important;
  box-shadow: 0 0 12px rgba(110, 231, 255, 0.5) !important;
}

.mobile-dock-link.active .mobile-dock-label {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.mobile-dock-link.active .mobile-dock-chevron {
  color: #6ee7ff !important;
  transform: translateX(2px) !important;
}

/* Icon Box */
.mobile-dock-icon {
  width: 34px !important;
  height: 34px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(212, 175, 55, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.25) !important;
  color: #d4af37 !important;
  flex-shrink: 0 !important;
  transition: all 0.25s ease !important;
}

.mobile-dock-icon svg {
  width: 17px !important;
  height: 17px !important;
  stroke: currentColor !important;
  display: block !important;
}

/* Label */
.mobile-dock-label {
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  color: #f3f4f6 !important;
  flex-grow: 1 !important;
}

/* Chevron */
.mobile-dock-chevron {
  font-size: 1.25rem !important;
  color: rgba(255, 255, 255, 0.35) !important;
  font-weight: 300 !important;
  transition: transform 0.2s ease, color 0.2s ease !important;
}

.mobile-dock-link:hover .mobile-dock-chevron {
  color: #d4af37 !important;
  transform: translateX(3px) !important;
}

.mobile-dock-link:hover {
  border-color: rgba(212, 175, 55, 0.5) !important;
  background: rgba(212, 175, 55, 0.08) !important;
  color: #ffffff !important;
}

/* Slide-in Staggered Animation */
@keyframes mobileDockSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mobile-nav-drawer.open .mobile-dock-link {
  animation: mobileDockSlideIn 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}
.mobile-nav-drawer.open .mobile-dock-link:nth-child(1) { animation-delay: 0.03s !important; }
.mobile-nav-drawer.open .mobile-dock-link:nth-child(2) { animation-delay: 0.07s !important; }
.mobile-nav-drawer.open .mobile-dock-link:nth-child(3) { animation-delay: 0.11s !important; }
.mobile-nav-drawer.open .mobile-dock-link:nth-child(4) { animation-delay: 0.15s !important; }
.mobile-nav-drawer.open .mobile-dock-link:nth-child(5) { animation-delay: 0.19s !important; }
.mobile-nav-drawer.open .mobile-dock-link:nth-child(6) { animation-delay: 0.23s !important; }

/* Bottom Drawer Actions */
.mobile-drawer-bottom {
  margin-top: 6px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding-top: 14px !important;
}

.mobile-explore-btn {
  width: 100% !important;
  height: 44px !important;
  padding: 0 18px !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  border-radius: 9999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
}

.mobile-trust-badge-row {
  text-align: center !important;
  font-size: 0.75rem !important;
  color: #9ca3af !important;
  letter-spacing: 0.02em !important;
}

/* Light Mode Mobile Drawer */
body.theme-mode-light .mobile-nav-drawer {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

body.theme-mode-light .mobile-dock-link {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: rgba(0, 0, 0, 0.08) !important;
  color: #1f2937 !important;
}

body.theme-mode-light .mobile-dock-label {
  color: #111827 !important;
}

body.theme-mode-light .mobile-dock-link.active {
  background: rgba(212, 175, 55, 0.12) !important;
  border-color: #d4af37 !important;
  color: #000000 !important;
}

body.theme-mode-light .mobile-dock-link.active .mobile-dock-icon {
  background: #d4af37 !important;
  color: #ffffff !important;
}

body.theme-mode-light .mobile-dock-chevron {
  color: rgba(0, 0, 0, 0.35) !important;
}

body.theme-mode-light .mobile-drawer-top-row,
body.theme-mode-light .mobile-drawer-bottom {
  border-color: rgba(0, 0, 0, 0.08) !important;
}


/* ==========================================================================
   HAMBURGER BUTTON VISIBLE & MOBILE DRAWER OPENING FIX
   ========================================================================== */
.mobile-menu-toggle {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 4px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.35) !important;
  cursor: pointer !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  z-index: 10001 !important;
  transition: all 0.25s ease !important;
}

.mobile-menu-toggle span,
.mobile-menu-toggle .hamburger-line {
  display: block !important;
  width: 19px !important;
  height: 2px !important;
  background: #ffffff !important;
  border-radius: 2px !important;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease !important;
  margin: 0 auto !important;
}

.mobile-menu-toggle.active {
  border-color: #d4af37 !important;
  background: rgba(212, 175, 55, 0.15) !important;
}

.mobile-menu-toggle.active span:nth-child(1),
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg) !important;
  background: #d4af37 !important;
}
.mobile-menu-toggle.active span:nth-child(2),
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0 !important;
}
.mobile-menu-toggle.active span:nth-child(3),
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg) !important;
  background: #d4af37 !important;
}

/* Ensure Drawer Displays Immediately on .open */
.mobile-nav-drawer {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  width: 100% !important;
  background: rgba(10, 10, 15, 0.98) !important;
  backdrop-filter: blur(28px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
  border-bottom: 1.5px solid rgba(212, 175, 55, 0.35) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.12) !important;
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease !important;
  z-index: 99999 !important;
}

.mobile-nav-drawer.open {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  max-height: 85vh !important;
  overflow-y: auto !important;
}

/* ==========================================================================
   PRODUCT IMAGE FRAME, MOBILE ARROWS & FULLSCREEN LIGHTBOX
   ========================================================================== */

/* 1. Main Product Image Frame */
.product-highlight-frame {
  cursor: zoom-in !important;
  position: relative !important;
}

.gallery-zoom-badge {
  position: absolute !important;
  bottom: 12px !important;
  right: 12px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.65) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #d4af37 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  pointer-events: none !important;
  opacity: 0.85 !important;
  transition: opacity 0.2s ease !important;
}

.gallery-zoom-badge svg {
  width: 16px !important;
  height: 16px !important;
}

/* 2. Mobile Prev / Next Arrows on Main Image */
.gallery-nav-btn {
  display: none;
}

@media (max-width: 768px) {
  .gallery-nav-btn {
    display: flex !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(10, 10, 14, 0.75) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1.5px solid rgba(212, 175, 55, 0.6) !important;
    color: #ffffff !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    z-index: 15 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.8), 0 0 10px rgba(212, 175, 55, 0.2) !important;
    transition: all 0.2s ease !important;
    padding: 0 !important;
  }

  .gallery-nav-btn:active {
    transform: translateY(-50%) scale(0.92) !important;
    background: rgba(212, 175, 55, 0.25) !important;
  }

  .gallery-nav-btn svg {
    width: 18px !important;
    height: 18px !important;
    stroke: currentColor !important;
  }

  .gallery-nav-prev {
    left: 10px !important;
  }

  .gallery-nav-next {
    right: 10px !important;
  }
}

/* 3. Product Thumbnails Single Line on Mobile */
@media (max-width: 768px) {
  .product-gallery-thumbs {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 8px 4px 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .product-gallery-thumbs::-webkit-scrollbar {
    display: none !important;
  }

  .gallery-thumb-btn {
    flex: 0 0 54px !important;
    width: 54px !important;
    height: 54px !important;
  }
}

/* 4. Fullscreen Luxury Lightbox Modal */
.product-lightbox-modal {
  display: none;
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  align-items: center !important;
  justify-content: center !important;
}

.product-lightbox-modal.is-open {
  display: flex !important;
}

.lightbox-backdrop {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.94) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}

.lightbox-content-box {
  position: relative !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}

.lightbox-close-btn {
  position: absolute !important;
  top: 18px !important;
  right: 20px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  color: #ffffff !important;
  font-size: 26px !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: all 0.2s ease !important;
}

.lightbox-close-btn:hover {
  background: rgba(212, 175, 55, 0.25) !important;
  color: #d4af37 !important;
  transform: scale(1.05) !important;
}

.lightbox-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 50% !important;
  background: rgba(20, 20, 26, 0.8) !important;
  border: 1.5px solid rgba(212, 175, 55, 0.5) !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: all 0.2s ease !important;
}

.lightbox-arrow:hover {
  background: rgba(212, 175, 55, 0.3) !important;
  border-color: #d4af37 !important;
  transform: translateY(-50%) scale(1.08) !important;
}

.lightbox-arrow svg {
  width: 22px !important;
  height: 22px !important;
  stroke: currentColor !important;
}

.lightbox-arrow-prev {
  left: 20px !important;
}

.lightbox-arrow-next {
  right: 20px !important;
}

.lightbox-img-stage {
  max-width: 90vw !important;
  max-height: 85vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.lightbox-img-stage img {
  max-width: 100% !important;
  max-height: 85vh !important;
  object-fit: contain !important;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.95)) !important;
  border-radius: 12px !important;
  animation: lightboxPop 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

@keyframes lightboxPop {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-counter {
  position: absolute !important;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  padding: 6px 16px !important;
  border-radius: 9999px !important;
  background: rgba(20, 20, 26, 0.85) !important;
  border: 1px solid rgba(212, 175, 55, 0.3) !important;
  color: #d4af37 !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
}

body.lightbox-locked {
  overflow: hidden !important;
}
