/* ==========================================================================
   TITAN FORCE / AlphaForceMD - Ultra-Creative Luxury Design System
   Monochrome High-Contrast Baseline + Subtle Logo Gold (#D4AF37)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

/* Dark Theme (Default) */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #121212;
  --bg-card: #171717;
  --bg-card-hover: #242424;
  --bg-input: #1a1a1a;
  
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-muted: #666666;
  
  --accent-primary: #ffffff;
  --accent-hover: #e5e5e5;
  --accent-gradient: linear-gradient(135deg, #ffffff 0%, #d4d4d4 100%);
  --accent-glow: rgba(255, 255, 255, 0.15);
  
  /* Subtle Logo Gold Accent */
  --gold-accent: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.25);
  --volt-accent: #ffffff;

  --border-color: #262626;
  --border-light: #404040;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1320px;
  --header-height: 85px;
  --announcement-height: 38px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.9);
  --shadow-glow: 0 0 25px rgba(255, 255, 255, 0.1);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme */
[data-theme="light"] {
  --bg-primary: #ffffff;
  --bg-secondary: #f8f8f8;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f0f0;
  --bg-input: #ffffff;
  
  --text-primary: #000000;
  --text-secondary: #525252;
  --text-muted: #8c8c8c;
  
  --accent-primary: #000000;
  --accent-hover: #262626;
  --accent-gradient: linear-gradient(135deg, #000000 0%, #262626 100%);
  --accent-glow: rgba(0, 0, 0, 0.1);
  
  --gold-accent: #c5a059;
  --gold-glow: rgba(197, 160, 89, 0.2);
  --volt-accent: #000000;

  --border-color: #e5e5e5;
  --border-light: #cccccc;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  line-height: 1.5;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Typography & Subtle Gold Text Accent */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
}

.text-gold {
  color: var(--gold-accent) !important;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-primary);
}

/* Professional Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: 1px solid var(--text-primary);
}

.btn-primary:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .btn-primary {
  background: #000000;
  color: #ffffff;
  border: 1px solid #000000;
}

[data-theme="light"] .btn-primary:hover {
  background: #ffffff;
  color: #000000;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-gold-accent {
  background: var(--gold-accent);
  color: #000000;
  border: 1px solid var(--gold-accent);
}

.btn-gold-accent:hover {
  background: transparent;
  color: var(--gold-accent);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.btn-outline:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.badge-accent {
  background: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.badge-gold {
  background: var(--bg-card);
  color: var(--gold-accent);
  border-color: var(--gold-accent);
}

.badge-dark {
  background: var(--bg-primary);
  color: var(--text-secondary);
  border-color: var(--border-color);
}

/* Live Stock Dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 var(--gold-glow);
  animation: pulse-ring-gold 1.5s infinite;
}

@keyframes pulse-ring-gold {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 var(--gold-glow);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

/* Announcement Bar */
.announcement-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  min-height: var(--announcement-height);
  padding: 0.35rem 0;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-secondary);
}

.announcement-highlight {
  color: var(--gold-accent);
  font-weight: 800;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
}

.brand-logo img {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

/* Theme Dependent Logo Switching */
.logo-dark-theme {
  display: block !important;
}

.logo-light-theme {
  display: none !important;
}

[data-theme="light"] .logo-dark-theme {
  display: none !important;
}

[data-theme="light"] .logo-light-theme {
  display: block !important;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-accent);
  transition: width var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.action-btn {
  background: var(--bg-card);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  position: relative;
  transition: all var(--transition-fast);
}

.action-btn:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.cart-count-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold-accent);
  color: #000000;
  font-size: 0.7rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-primary);
}

.mobile-nav-toggle {
  display: none;
}

/* Overlay & Drawers */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 450px;
  height: 100vh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-drawer-title {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-drawer-close {
  font-size: 1.5rem;
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-shipping-bar {
  background: var(--bg-card);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.shipping-progress-text {
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.shipping-progress-track {
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: var(--gold-accent);
  transition: width var(--transition-normal);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-item-row {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.cart-item-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.cart-item-info {
  flex: 1;
}

.cart-item-title {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.cart-item-variant {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-weight: 800;
  color: var(--text-primary);
  font-size: 1rem;
}

.cart-item-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
  background: var(--bg-primary);
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cart-qty-num {
  padding: 0 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-remove-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--text-muted);
  font-size: 1.2rem;
}

.cart-remove-btn:hover {
  color: var(--text-primary);
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-primary);
}

.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border-color);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-menu-links a {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* ==========================================================================
   ULTRA-CREATIVE LUXURY HERO SECTION
   ========================================================================== */
.hero-creative-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, rgba(10, 10, 10, 1) 60%),
              linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

[data-theme="light"] .hero-creative-section {
  background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.12) 0%, rgba(248, 248, 248, 1) 60%),
              linear-gradient(180deg, #ffffff 0%, #f5f5f5 100%);
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-left-col {
  position: relative;
  z-index: 2;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--gold-accent);
  margin-bottom: 1.5rem;
}

.hero-creative-title {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-creative-title .highlight-gold {
  color: var(--gold-accent);
  position: relative;
  display: inline-block;
}

.hero-creative-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2.2rem;
  max-width: 600px;
}

.hero-feature-tags {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-tag-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  background: var(--bg-card);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
}

.hero-actions-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.proof-avatars {
  display: flex;
}

.proof-avatar-item {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 900;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
}

.proof-avatar-item:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Professional Hero Background Product Display */
.hero-mobile-product-wrap {
  display: none;
}

.hero-right-col {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-display {
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-product-image {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  transition: transform 0.4s ease;
}

.hero-product-display:hover .hero-product-image {
  transform: scale(1.03);
}

.hero-product-meta {
  margin-top: 1.5rem;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.hero-product-name {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}

.hero-product-sub {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-accent);
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.hero-product-price-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.hero-product-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-primary);
}

.hero-product-link {
  color: var(--gold-accent);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: underline;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.hero-product-link:hover {
  color: #ffffff;
}

/* Category Cards */
.categories-section {
  padding: 5rem 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.category-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-accent);
  box-shadow: 0 4px 25px var(--gold-glow);
}

.category-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.5s ease;
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, var(--bg-primary) 100%);
}

.category-card-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-card-link {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition-fast);
}

.category-card:hover .category-card-link {
  color: var(--gold-accent);
}

/* Trust Strip */
.trust-strip {
  background: var(--bg-secondary);
  padding: 2.5rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.trust-title {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.7;
}

.trust-logo-item {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: var(--text-secondary);
}

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

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  border-color: var(--gold-accent);
  box-shadow: 0 4px 20px var(--gold-glow);
  transform: translateY(-4px);
}

.product-card-thumb-wrap {
  position: relative;
  padding-top: 100%;
  background: var(--bg-secondary);
  overflow: hidden;
}

.product-card-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-thumb {
  transform: scale(1.05);
}

.product-badge-group {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 5;
}

.product-card-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-accent);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
  margin-top: auto;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
}

.product-compare-price {
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.product-stock-alert {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.product-card-actions {
  display: flex;
  gap: 0.5rem;
}

/* Promo Banner Cards */
.promo-split-section {
  padding: 5rem 0;
}

.promo-split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.promo-banner-card {
  position: relative;
  min-height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.promo-banner-content {
  position: relative;
  z-index: 2;
  max-width: 480px;
}

.promo-banner-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

/* Brand Benefits Grid */
.benefits-section {
  background: var(--bg-secondary);
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  text-align: center;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  background: var(--bg-primary);
  color: var(--gold-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--gold-accent);
}

.benefit-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.benefit-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Reviews */
.reviews-section {
  padding: 5rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-md);
}

.review-stars {
  color: var(--gold-accent);
  margin-bottom: 1rem;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.6;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-accent);
  color: #000000;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-badge {
  font-size: 0.75rem;
  color: var(--gold-accent);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--bg-secondary);
  padding: 5rem 0;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.newsletter-box {
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.newsletter-input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

.newsletter-input:focus {
  border-color: var(--gold-accent);
}

/* Footer Section */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand-desc {
  color: var(--text-secondary);
  margin-top: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-accent);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.payment-badges {
  display: flex;
  gap: 0.75rem;
}

.payment-badge-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* Age Gate Modal */
.age-gate-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.age-gate-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-accent);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 0 30px var(--gold-glow);
}

.age-gate-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--gold-accent);
}

.age-gate-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.age-gate-desc {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
}

/* Search Modal Overlay */
.search-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  padding: 5rem 1.5rem 2rem;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  max-width: 720px;
  margin: 0 auto;
}

.search-input-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--gold-accent);
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  color: var(--text-primary);
}

.search-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-secondary);
  font-size: 2rem;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: 60vh;
  overflow-y: auto;
}

/* Toast Notifications */
.titan-toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-accent);
  color: var(--text-primary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px var(--gold-glow);
  z-index: 10000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
  font-weight: 700;
}

.titan-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* Dynamic Page Banner */
.page-banner {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 4rem 0;
  text-align: center;
}

.page-title {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.page-breadcrumb {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.page-breadcrumb a:hover {
  color: var(--gold-accent);
}

/* ==========================================================================
   ENHANCED USER-FRIENDLY PDP LAYOUT
   ========================================================================== */
.pdp-section {
  padding: 4rem 0 6rem;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.pdp-gallery {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 105px;
}

.pdp-main-image-wrap {
  flex: 1;
  width: 100%;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-top: 100%;
  cursor: zoom-in;
  transition: border-color var(--transition-fast);
}

.pdp-main-image-wrap:hover {
  border-color: var(--gold-accent);
}

.pdp-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0a0a;
}

.pdp-zoom-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
}

.pdp-thumbs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.pdp-thumb-item {
  width: 85px;
  height: 85px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-color);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-secondary);
  transition: all var(--transition-fast);
}

.pdp-thumb-item.active, .pdp-thumb-item:hover {
  border-color: var(--gold-accent);
  transform: translateY(-2px);
}

.pdp-details-col {
  display: flex;
  flex-direction: column;
}

.pdp-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.pdp-price-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pdp-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-primary);
}

.pdp-compare-price {
  font-size: 1.3rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pdp-save-badge {
  background: var(--gold-accent);
  color: #000000;
  font-weight: 900;
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.pdp-urgency-banner {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--gold-accent);
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pdp-options-block {
  margin-bottom: 1.75rem;
}

.pdp-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.pdp-label {
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pdp-size-guide-trigger {
  color: var(--gold-accent);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.variant-chips {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.chip-btn {
  padding: 0.75rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.chip-btn.active, .chip-btn:hover {
  border-color: var(--gold-accent);
  background: var(--gold-accent);
  color: #000000;
}

.qty-picker {
  display: inline-flex;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
}

.qty-input {
  width: 55px;
  text-align: center;
  font-weight: 800;
}

.pdp-action-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.pdp-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.pdp-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.pdp-trust-icon {
  font-size: 1.4rem;
  color: var(--gold-accent);
}

.pdp-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--gold-accent);
  padding: 1rem 1.5rem;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(100%);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-lg);
}

.pdp-sticky-bar.visible {
  transform: translateY(0);
}

/* Accordion */
.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.accordion-header {
  padding: 1.25rem;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-content {
  padding: 0 1.25rem 1.25rem;
  display: none;
  color: var(--text-secondary);
  line-height: 1.6;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-icon {
  transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

/* Shop Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2.5rem;
  padding: 3rem 0;
}

.filter-sidebar {
  background: var(--bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  height: fit-content;
}

.filter-group {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
}

.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-title {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.filter-options-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.filter-checkbox-label input {
  accent-color: var(--gold-accent);
  width: 16px;
  height: 16px;
}

.shop-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.sort-select {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-primary);
}

/* Quick View Modal */
.quickview-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.quickview-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-accent);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  padding: 2rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

/* Bundle Calculator */
.bundle-calculator-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-accent);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 4px 25px var(--gold-glow);
  margin-top: 3rem;
}

/* ==========================================================================
   THE DRAGON SPECIFIC PDP GALLERY & RESPONSIVE STYLES
   ========================================================================== */
.pdp-dragon-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.pdp-gallery-wrap {
  display: flex;
  gap: 1.25rem;
  position: sticky;
  top: 105px;
}

.pdp-thumbs-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 90px;
  flex-shrink: 0;
}

.pdp-thumbs-vertical .pdp-thumb-item {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.pdp-gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 10, 0.75);
  color: #ffffff;
  border: 1px solid var(--border-color);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
}

.pdp-gallery-nav-btn:hover {
  background: var(--gold-accent);
  color: #000000;
  border-color: var(--gold-accent);
}

.pdp-gallery-prev {
  left: 12px;
}

.pdp-gallery-next {
  right: 12px;
}

@media (max-width: 992px) {
  .pdp-dragon-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .pdp-gallery-wrap {
    flex-direction: column-reverse;
    position: static;
  }

  .pdp-thumbs-vertical {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
}

/* ==========================================================================
   DYNAMIC LUXURY UI ENHANCEMENTS (MICRO-INTERACTIONS & GLOW ACCENTS)
   ========================================================================== */

/* Floating Back To Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.back-to-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--gold-accent);
  color: #000000;
  border-color: var(--gold-accent);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

/* Glassmorphism Header Blur */
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Light Theme Pure White Header - Desktop & Mobile */
[data-theme="light"] .site-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Clean Professional Button Hover Feedback */
.btn-primary:hover, .btn-gold-accent:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.btn:active {
  transform: scale(0.97) !important;
}

/* Product Card Hover Micro-Interactions */
.product-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-accent);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.15);
}

.product-card-thumb-wrap {
  overflow: hidden;
  position: relative;
}

.product-card-thumb {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-thumb {
  transform: scale(1.06);
}

/* Stock Urgency Pulse Dot */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold-accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

/* PDP Image Slider Slide Indicators & Transitions */
.pdp-main-image {
  transition: opacity 0.3s ease-in-out, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-main-image.animating {
  opacity: 0.2;
  transform: scale(0.96);
}

.pdp-slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  pointer-events: auto;
}

.pdp-slide-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pdp-slide-dot.active, .pdp-slide-dot:hover {
  background: var(--gold-accent);
  width: 22px;
  border-radius: 6px;
}


