/* ============================================================ */
/* ================= ULTIMATE MOBILE-FIRST SYSTEM ============== */
/* ============================================================ */
/* 
   PHILOSOPHY:
   1. MOBILE AS FOUNDATION: Every style is mobile-optimized by default.
   2. DESKTOP AS ENHANCEMENT: Side-by-side grids activated at >= 1024px.
   3. PREMIUM AESTHETICS: Glassmorphism, Nebula gradients, and high-fidelity micro-interactions.
   4. ZERO HORIZONTAL SCROLL: Content strictly adheres to viewport width.
*/

/* ============================================================ */
/* ================= 1. ROOT & GLOBAL RESET =================== */
/* ============================================================ */

:root {
  /* Core Color Palette - Matching Website Ruby Red */
  --red: #e11d2e;
  --red-hover: #ff1f32;
  --red-glow: rgba(225, 29, 46, 0.4);
  --red-light: #ff4d5a;
  --black: #050505;
  --dark: #0b0b0b;
  --card: #0f141c;
  --text: #ffffff;
  --muted: #9aa3af;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);

  /* Dimensions */
  --nav-h: 80px;
  /* Purposed-built taller mobile nav */
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;

  /* Luxury Effects */
  --neon-glow: 0 0 20px rgba(225, 29, 46, 0.5);
  --glass-blur: blur(10px);
}

@media (min-width: 1024px) {
  :root {
    --nav-h: 72px;
    /* Stable desktop height */
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* Announcement Bar - Premium Slide-Away Effect (Noise/boAt Style) */
.announcement-bar {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 10px 0;
  letter-spacing: 1.2px;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  will-change: transform;
}

/* When scrolled - slide announcement bar up */
.announcement-bar.hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: calc(var(--nav-h) + 36px);
  transition: padding 0.3s ease;
}

/* Base Animations (Premium Polish) */
@keyframes nebulaDrift {
  from {
    transform: translate(-5%, -5%) rotate(0deg);
  }

  to {
    transform: translate(5%, 5%) rotate(5deg);
  }
}

@keyframes badgePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(225, 29, 46, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 4px 25px rgba(225, 29, 46, 0.5);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(225, 29, 46, 0.3);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  from {
    transform: translateX(-150%) skewX(-25deg);
  }

  to {
    transform: translateX(250%) skewX(-25deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes liquidLogo {
  0% {
    filter: drop-shadow(0 0 5px rgba(225, 29, 46, 0.5));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 15px rgba(225, 29, 46, 0.8));
    transform: scale(1.02);
  }

  100% {
    filter: drop-shadow(0 0 5px rgba(225, 29, 46, 0.5));
    transform: scale(1);
  }
}

/* ============================================================ */
/* ================= 2. MOBILE NAVBAR (CLEAN) ================= */
/* ============================================================ */

.navbar {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 9999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s, border 0.4s;
  will-change: transform;
}

.navbar.scrolled {
  top: 0;
  background: rgba(0, 0, 0, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
}

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
}

.nav-left {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 0.3s ease;
  z-index: 5;
  background: transparent;
}

.main-logo {
  height: 20px;
  /* Sharp mobile size for tech brand */
  width: auto;
  display: block;
  opacity: 1;
  filter: none;
  /* Clean floating look */
}

/* 🛠️ CRITICAL FIX: ISOLATE MOBILE NAVBAR */
/* Hide desktop nav links globally (Mobile-First Foundation) */
.nav-links {
  display: none !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
  /* Spacing between icons */
}

.nav-icon {
  display: none;
  /* Hide secondary icons on mobile for clarity */
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .nav-icon {
    display: flex;
    /* Show only on desktop as requested */
  }
}

.nav-icon:hover {
  opacity: 1;
  color: var(--red);
}

.cart-btn {
  color: #fff;
  text-decoration: none;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-btn:hover {
  transform: translateY(-2px);
}

.cart-btn:active {
  transform: scale(0.92);
}

/* Custom GOAT Bag Icon Styles */
.bag-icon-svg {
  width: 30px;
  /* Increased size like Noise */
  height: 30px;
  stroke-width: 2.2;
  /* Thicker for hierarchy */
  transition: 0.3s;
}

.cart-btn:hover .bag-icon-svg {
  color: var(--red);
}

.cart-btn #navCartCount {
  position: absolute;
  top: 0;
  right: -4px;
  background: var(--red);
  color: #fff;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  border-radius: 50%;
  /* Perfect circle */
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #000;
  box-shadow: 0 4px 10px rgba(225, 29, 46, 0.3);
}

/* ============================================================ */
/* ================= 3. MOBILE DRAWER MENU ==================== */
/* ============================================================ */

.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background: #080808;
  z-index: 100000;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  box-shadow: 20px 0 60px rgba(0, 0, 0, 0.9);
  border-right: 1px solid var(--border);
}

.menu-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.drawer-header .main-logo {
  height: 24px;
  /* Slightly larger in drawer for clarity */
}

.close-drawer {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.drawer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateX(-20px);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.drawer-links a:active {
  background: rgba(225, 29, 46, 0.1);
  border-color: rgba(225, 29, 46, 0.2);
  transform: scale(0.98);
}

.menu-drawer.active .drawer-links a {
  opacity: 1;
  transform: translateX(0);
}

.drawer-links a::after {
  content: '→';
  font-size: 20px;
  color: var(--red);
  opacity: 0.5;
}

/* Staggered entry */
.menu-drawer.active .drawer-links a:nth-child(1) {
  transition-delay: 0.1s;
}

.menu-drawer.active .drawer-links a:nth-child(2) {
  transition-delay: 0.15s;
}

.menu-drawer.active .drawer-links a:nth-child(5) {
  transition-delay: 0.3s;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.drawer-socials a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
  opacity: 1 !important;
  transform: none !important;
}

.drawer-socials a:active {
  background: var(--red);
  transform: translateY(-5px);
}

.drawer-footer p {
  font-size: 11px;
  color: #444;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Dots (Cinematic Progress System) */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 2px solid transparent;
}

.hero-dot.active {
  width: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  border-color: rgba(225, 29, 46, 0.3);
}

.hero-dot.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red);
  animation: dotSlide 4s linear infinite;
}

@keyframes dotSlide {
  0% {
    left: 4px;
    opacity: 0.5;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 12px);
    opacity: 0.5;
  }
}

/* ============================================================ */
/* ================= 4. HERO SLIDER (MOBILE) ================== */
/* ============================================================ */

.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: 550px;
  overflow: hidden;
  background: #000;
}

/* Luxury Nebula Background (Premium Polish) */
.hero-slider::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%,
      rgba(225, 29, 46, 0.08) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 80, 0.05) 100%);
  animation: nebulaDrift 30s infinite alternate linear;
  z-index: 1;
  pointer-events: none;
}

.hero-slider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, var(--black) 0%, transparent 40%, transparent 60%, var(--black) 100%);
  z-index: 2;
  pointer-events: none;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 24px 80px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-image img,
.slide-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(1.1);
  transform: scale(1.05);
  transition: transform 8s linear;
}

.slide.active .slide-image img,
.slide.active .slide-image video {
  transform: scale(1.15);
}

.slide-content {
  position: relative;
  z-index: 10;
  max-width: 100%;
  text-align: left;
  transform: translateY(30px);
  opacity: 0;
  filter: blur(10px);
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
}

.slide-content .badge {
  display: inline-block;
  background: rgba(225, 29, 46, 0.15);
  color: var(--red);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  border: 1px solid rgba(225, 29, 46, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.slide-image video.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}

.slide-content h1 {
  font-size: clamp(48px, 10vw, 96px);
  font-weight: 950;
  line-height: 0.9;
  margin-bottom: 12px;
  color: #fff;
  letter-spacing: -3px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-content h2 {
  font-size: clamp(20px, 4vw, 32px);
  color: var(--red);
  margin-bottom: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(225, 29, 46, 0.3);
}

.slide-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: fit-content;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero-stats div strong {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.hero-stats div span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  font-weight: 700;
}

/* ============================================================ */
/* ================= 5. BUTTONS (PREMIUM) ===================== */
/* ============================================================ */

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 1px;
}

.btn.primary {
  background: #f0f0f0;
  color: #000;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn.primary:active {
  transform: scale(0.96);
  background: #fff;
}

.btn.outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: 100px;
}

.btn.outline:active {
  background: rgba(255, 255, 255, 0.1);
}

.btn.hero-cta {
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 15px 35px rgba(225, 29, 46, 0.3);
  font-weight: 950;
  border: 2px solid #fff;
}

.btn.hero-cta:hover {
  transform: translateY(-5px) scale(1.02);
  background: var(--red);
  color: #fff;
  border-color: #fff;
  box-shadow: 0 20px 45px rgba(225, 29, 46, 0.5);
}

/* ============================================================ */
/* ================= 6. PRODUCT CARDS (MOBILE-FIRST) ========== */
/* ============================================================ */

.featured {
  padding: 40px 0;
  background: radial-gradient(circle at top, #0f0f0f, #050505);
}

/* Featured Section Header Rebrand */
.featured .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 40px;
  margin-bottom: 40px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.featured .header-main {
  text-align: left;
}

.featured h2 {
  font-size: 38px;
  font-weight: 950;
  margin: 0 0 10px;
  letter-spacing: -1.5px;
  line-height: 1;
}

/* Premium Red Span Styling (Noise/boAt Style) - All Section Headings */
.featured h2 span,
.corporate h2 span,
section h2 span {
  color: var(--red);
}

.featured p {
  text-align: left;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  opacity: 0.8;
}

.view-all {
  color: var(--text);
  text-decoration: underline;
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 6px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.view-all:hover {
  opacity: 1;
  color: var(--red);
  text-decoration-color: var(--red);
}

.view-all i {
  font-size: 10px;
  transition: transform 0.3s;
}

.view-all:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .featured .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 0 24px;
  }

  .featured h2 {
    font-size: 32px;
  }
}

/* Corporate Section Styling (About Section on Index) */
.corporate {
  padding: 60px 20px;
  text-align: center;
}

.corporate h2 {
  font-size: 32px;
  font-weight: 950;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.corporate>p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 30px;
}

/* ============================================================ */
/* ============= PREMIUM PRODUCT SYSTEM (boAt Style) ========== */
/* ============================================================ */

.product-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 40px 40px;
  gap: 25px;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  -ms-overflow-style: none;
  /* Hide scrollbar IE/Edge */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.product-grid::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

@media (max-width: 768px) {
  .product-grid {
    padding: 10px 24px 30px;
    gap: 15px;
  }
}

/* Horizontal Card Sizing */
.product-card {
  flex: 0 0 320px;
  /* Fixed width for slider */
  scroll-snap-align: start;
  position: relative;
  background: #0d0d0d;
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 280px;
    /* Slightly smaller on mobile */
  }
}

.product-card:hover {
  border-color: var(--red);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(225, 29, 46, 0.15);
}

.product-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f3f3f3;
  /* Clean Studio Grey */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  position: relative;
  overflow: hidden;
}

/* 🎥 Video Preview Isolation */
.product-video-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 3;
  transition: 0.4s ease;
  pointer-events: none;
}

.product-image-container:hover .product-video-hover {
  opacity: 1;
}

.product-image-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .5) 0%, transparent 70%);
  opacity: 0.5;
  z-index: 1;
}

/* Internal Card Image Slider (boAt Style) */
.card-image-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 100%;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.card-image-slider::-webkit-scrollbar {
  display: none;
}

.card-slider-img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: start;
  padding: 20px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .card-slider-img {
  transform: scale(1.05);
}

.slider-wrapper-outer {
  position: relative;
  width: 100%;
  max-width: 100vw;
  overflow: hidden;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.slider-wrapper-outer:hover .slider-btn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slider-btn.disabled {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.slider-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

@media (max-width: 1024px) {
  .slider-btn {
    display: none !important;
    /* Pure touch scroll on mobile */
  }
}

/* Shine Effect */
.product-image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  /* transform: skewX(-25deg);  Moved to keyframes for performance */
  animation: shine 4s infinite;
  z-index: 4;
  pointer-events: none;
  /* Prevent mouse interaction */
}

.floating-img {
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
  z-index: 2;
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  /* Performance: Hint browser about animation */
}

.product-card:hover .floating-img {
  transform: scale(1.1) rotate(2deg);
}

.card-ribbon {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--red);
  color: #fff;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: var(--neon-glow);
  z-index: 10;
}

/* ============================================================ */
/* ============= PREMIUM PRODUCT CARD (boAt/Noise Style) ====== */
/* ============================================================ */

/* Price Stack & Mini Cart Button */
.price-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* Content Area */
.card-content {
  padding: 15px 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-brand-label {
  font-size: 9px;
  font-weight: 800;
  color: #555;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.product-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

/* Rating Row */
.card-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars-gold {
  color: #ffb400;
  font-size: 14px;
  letter-spacing: 2px;
}

.review-count-small {
  font-size: 11px;
  color: #555;
  font-weight: 800;
}

/* Color Variants */
.variant-strip {
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
}

.variant-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.variant-dot.active {
  border-color: #fff;
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Price Stack */
.card-price-stack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

/* Redesigned Price Row (Noise Style) */
.price-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 5px;
}

.price-current {
  font-size: 24px;
  font-weight: 950;
  color: #fff;
}

.price-old {
  font-size: 15px;
  color: #555;
  text-decoration: line-through;
  font-weight: 700;
}

/* Floating Cart Button */
.btn-add-cart-floating {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 20px rgba(225, 29, 46, 0.4);
  border: none;
  z-index: 20;
  opacity: 0;
  transform: translateY(10px);
}

.product-card:hover .btn-add-cart-floating {
  opacity: 1;
  transform: translateY(0);
}

.btn-add-cart-floating:hover {
  transform: scale(1.1) rotate(5deg);
  background: #ff1f32;
}

.btn-add-cart-floating .bag-icon-svg {
  width: 22px;
  height: 22px;
}

/* Full Width Details Section */
.card-action-footer {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-see-details {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: 0.3s;
}

.btn-see-details:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.btn-see-details i {
  font-size: 12px;
  transition: transform 0.3s;
}

.btn-see-details:hover i {
  transform: translateX(6px);
}

/* Details Link */
.card-details-btn {
  margin-top: 15px;
}

.btn-details {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: 0.3s;
  width: fit-content;
}

.btn-details:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-details i {
  font-size: 10px;
  transition: transform 0.3s;
}

.btn-details:hover i {
  transform: translateX(5px);
}

/* ============================================================ */
/* ================= 7. SECTIONS (MOBILE) ===================== */
/* ============================================================ */

.verify,
.corporate {
  padding: 60px 20px;
  text-align: center;
  background: #000;
}

.verify h2,
.corporate h2 {
  font-size: 38px;
  font-weight: 950;
  margin-bottom: 20px;
}

.verify-box,
.corporate-box {
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 40px 24px;
  margin-top: 30px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
}

.input-group {
  margin-bottom: 25px;
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 12px;
}

.input-group input {
  width: 100%;
  padding: 20px;
  background: #000;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

.input-group input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(225, 29, 46, 0.15);
}

/* ============================================================ */
/* ================= 8. FOOTER (MOBILE) ======================= */
/* ============================================================ */

.footer {
  padding: 40px 24px 40px;
  background: #000;
  /* Deepest black Terminal */
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 280px;
  margin: 0 auto;
  word-wrap: break-word;
  white-space: normal;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-grid h4 {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

/* ================= FOOTER REDESIGN (boAt/Noise Level) ================= */
.footer {
  background: #000;
  padding: 40px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
  max-width: 280px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid ul li {
  margin-bottom: 12px;
}

.footer-grid ul li a {
  color: var(--muted) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.footer-grid ul li a:hover {
  color: #fff !important;
  transform: translateX(5px);
}

.footer-social-row {
  max-width: 1200px;
  margin: 30px auto 20px;
  padding: 30px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

@media (min-width: 768px) {
  .footer-social-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.social-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-qr {
  width: 80px;
  height: 80px;
  background: #fff;
  padding: 5px;
  border-radius: 12px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: var(--red);
  transform: translateY(-5px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-bottom: 15px;
}

.footer-links-row a {
  color: var(--muted) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.footer-links-row a:hover {
  color: #fff !important;
}

.footer-copyright {
  color: #555;
  font-size: 12px;
  margin-bottom: 10px;
}

.footer-address {
  color: #444 !important;
  font-size: 11px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  padding-bottom: 10px;
}



/* --- Newsletter Section --- */
.footer-newsletter {
  padding-right: 40px;
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.newsletter-form input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 15px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.newsletter-form button {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
}

.footer-links-row span {
  color: #333;
}



@media (min-width: 1024px) {
  .footer-social-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .social-text {
    margin-bottom: 0;
  }

  .social-left {
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .footer-links-row {
    justify-content: flex-start;
    gap: 30px;
  }

  .footer-copyright,
  .footer-address {
    text-align: left;
    margin-left: 0;
    max-width: none;
  }
}


/* ============================================================ */
/* ================= 9. PRODUCT PAGE (MOBILE SLIDES) =========== */
/* ============================================================ */

.product-detail {
  background: #000;
  min-height: 100vh;
  padding-top: 0;
  padding-bottom: 60px;
}

.product-detail-grid {
  display: flex;
  flex-direction: column;
}

/* REORDERING SYSTEM VIA FLEXBOX */
.product-images {
  order: 1;
}

.product-info-wrap {
  order: 2;
  display: flex;
  flex-direction: column;
}

/* Image Gallery Section */
.main-image-container {
  width: 100%;
  aspect-ratio: 1/1;
  background: #fff;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  position: relative;
  overflow: hidden;
}

/* Gallery Nav Buttons Styling */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100 !important;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #000;
  pointer-events: auto;
}

.gallery-nav:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.gallery-nav.prev {
  left: 20px;
}

.gallery-nav.next {
  right: 20px;
}

@media (max-width: 768px) {
  .gallery-nav {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px !important;
  }
}

.main-image-container::-webkit-scrollbar {
  display: none;
}

.main-image-container img {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: center;
  padding: 30px;
  background: #fff;
}

/* Swipeable Thumbnails */
.thumbnail-strip {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  padding: 15px 20px 5px;
  overflow-x: auto;
  background: #000;
}





.thumbnail-strip::-webkit-scrollbar {
  display: none;
}

.thumb-item {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 6px;
  background: #0a0a0a;
  transition: 0.3s;
}

.thumb-item.active {
  border-color: var(--red);
  background: #1a1a1a;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Product Info Content */
/* Fix: Removed red line and excessive space on product page */
body.has-sticky-cta .navbar {
  border-bottom: none !important;
  box-shadow: none !important;
}

body.has-sticky-cta .announcement-bar {
  border-bottom: none !important;
}

.premium-tag {
  display: flex;
  justify-content: center;
  margin: 0 0 10px;
  /* Fully tightened */
}

.premium-tag>span:not(.dot) {
  background: var(--red);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(225, 29, 46, 0.3);
}

.premium-tag .dot {
  display: none;
  /* Removed as per screenshot */
}

.product-info-wrap h1 {
  font-size: 36px;
  font-weight: 950;
  text-align: center;
  padding: 0 24px;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.review-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.review-summary .stars {
  color: #ff9d00;
  font-size: 18px;
}

.review-summary .count {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.price-box {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 15px;
  padding: 20px 0;
  margin-top: 10px;
}

#addToCartBtn.btn.primary {
  background: var(--red);
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(225, 29, 46, 0.3);
}

#addToCartBtn.btn.primary:active {
  background: var(--red-hover);
}

.action-row {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 30px 20px;
}

.price-box .current {
  font-size: 42px;
  font-weight: 950;
  color: #fff;
}

.price-box .original {
  font-size: 22px;
  color: #444;
  text-decoration: line-through;
}

.desc-text {
  padding: 30px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.feature-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px;
  margin-bottom: 40px;
}

.feature-pill {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 20px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-pill:hover {
  background: #111;
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.feature-pill .icon {
  font-size: 28px;
  color: #fff;
  margin-bottom: 5px;
}

.feature-pill .label {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-pill small {
  font-size: 11px;
  color: #666;
  font-weight: 600;
}

.feature-pill .text .label {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-pill small {
  font-size: 10px;
  display: block;
  margin-top: 2px;
}

/* Buy Now Popup Styles */
/* ================= BUY NOW POPUP (ADVANCED UI/UX) ================= */
.buy-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.buy-popup.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.buy-popup-content {
  background: rgba(15, 20, 28, 0.95);
  padding: 48px 40px;
  border-radius: 40px;
  width: 90%;
  max-width: 440px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.8),
    0 0 80px rgba(225, 29, 46, 0.1);
  transform: translateY(0) scale(1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.buy-popup-content::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.buy-popup.hidden .buy-popup-content {
  transform: translateY(30px) scale(0.95);
}

.buy-popup-content h3 {
  font-size: 28px;
  font-weight: 950;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.5px;
}

.buy-popup-subtitle {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  display: block;
}

.buy-links-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.buy-popup-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.buy-popup-content a span.store-name {
  display: flex;
  align-items: center;
  gap: 12px;
}

.buy-popup-content a i.fa-chevron-right {
  font-size: 12px;
  opacity: 0.3;
  transition: all 0.3s;
}

.buy-popup-content a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.buy-popup-content a:hover i.fa-chevron-right {
  opacity: 1;
  transform: translateX(3px);
  color: var(--red);
}

/* Specific Store Styles on Hover */
.buy-popup-content a.amz:hover {
  border-color: #FF9900;
  background: rgba(255, 153, 0, 0.05);
}

.buy-popup-content a.fk:hover {
  border-color: #2874F0;
  background: rgba(40, 116, 240, 0.05);
}

.buy-popup-content a.zp:hover {
  border-color: #632386;
  background: rgba(99, 35, 134, 0.05);
}

.buy-popup-content a.im:hover {
  border-color: #FF5200;
  background: rgba(255, 82, 0, 0.05);
}

.buy-popup-close-btn {
  margin-top: 32px;
  width: 100%;
  padding: 18px;
  border-radius: 100px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

.buy-popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  color: #fff;
}


.feature-pill {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(145deg, #0f0f0f, #080808);
  border-radius: 20px;
  border: 1px solid var(--border);
}

.feature-pill .icon {
  font-size: 28px;
}

.feature-pill h4 {
  font-size: 18px;
  font-weight: 800;
}

/* Sticky Mobile CTA Builder */
.assurance {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.assurance span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-variants {
  margin: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9998;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px;
  display: flex;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.mobile-sticky-cta .btn {
  padding: 14px;
  font-size: 14px;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.color-dot:hover {
  transform: scale(1.2);
}

.color-dot.active {
  border-color: #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Cart page styles moved to cart.css */

/* ================ 11. PRODUCT DETAIL SECTIONS (MOBILE) ============ */
.product-sub-nav {
  position: sticky;
  top: var(--nav-h);
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 900;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.sub-nav-wrapper {
  display: flex;
  padding: 0 20px;
  white-space: nowrap;
}

.sub-nav-link {
  padding: 16px 20px;
  color: var(--muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
}

.sub-nav-link.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.product-extra-sections {
  padding: 40px 0;
}

.sequential-section-title {
  font-size: 28px;
  font-weight: 950;
  text-align: center;
  margin: 60px 0 30px;
  letter-spacing: -1px;
}

.sequential-section-title span {
  color: var(--red);
}


.feature-block {
  padding: 80px 24px;
  text-align: center;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.f-image {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.f-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-block:hover .f-image img {
  transform: scale(1.05);
}

.feature-block small {
  display: block;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 11px;
  margin-bottom: 15px;
}

.feature-block h3 {
  font-size: 32px;
  font-weight: 950;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -1px;
}

.feature-block p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.premium-box-visual {
  padding: 100px 20px;
  text-align: center;
  background: #000;
}

.premium-box-visual h2 {
  font-size: 36px;
  font-weight: 950;
  margin-bottom: 50px;
}

.box-item-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.box-item {
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.box-item:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-8px);
  border-color: var(--red);
}

.box-item .emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}


.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  padding: 24px 20px;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-answer {
  padding: 0 20px 24px;
  color: var(--muted);
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question {
  color: var(--red);
}

/* Review section styles moved to reviews.css */


/* ============================================================ */
/* ================ 11. DESKTOP SYSTEM (>= 1024px) ============ */
/* ============================================================ */

@media (min-width: 1024px) {

  /* Layout Corrections */
  .navbar {
    height: var(--nav-h);
    padding: 0 40px;
    /* Spacious anchor padding */
  }

  .menu-toggle {
    display: none;
  }

  .nav-left {
    position: static;
    transform: none;
    order: 1;
    margin-right: auto;
    background: transparent;
    padding-left: 0;
  }

  .main-logo {
    height: 24px;
    /* Professional desktop presence */
  }

  .nav-links {
    display: flex !important;
    order: 2;
    gap: 45px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
    /* Perfect center */
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    /* Bolder presence */
    font-size: 14px;
    /* Hierarchy drop from header */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    opacity: 0.8;
  }

  .nav-links a:hover,
  .nav-links a.active {
    opacity: 1;
    color: #fff;
    transform: translateY(-2px);
    letter-spacing: 1.8px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 24px;
    height: 3px;
    background: var(--red);
    border-radius: 10px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1), opacity 0.3s ease;
    opacity: 0;
    box-shadow: 0 0 10px var(--red-glow), 0 0 20px var(--red-glow);
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    transform: translateX(-50%) scaleX(1);
    opacity: 1;
    box-shadow: 0 0 15px var(--red-light), 0 0 5px var(--red-glow);
  }


  .nav-links a.active::after {
    animation: indicatorPulse 2s infinite ease-in-out;
  }

  @keyframes indicatorPulse {

    0%,
    100% {
      transform: translateX(-50%) scaleX(1);
      opacity: 1;
    }

    50% {
      transform: translateX(-50%) scaleX(1.2);
      opacity: 0.8;
      box-shadow: 0 0 20px var(--red-light);
    }
  }


  .nav-right {
    order: 3;
    margin-left: auto;
    /* Align to far right */
  }

  /* Hero Enhancements */
  .hero-slider {
    height: 90vh;
  }

  .slide {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
  }

  .slide-content {
    max-width: 650px;
  }

  .slide-content h1 {
    font-size: 84px;
  }

  .slide-content p {
    font-size: 18px;
    -webkit-line-clamp: unset;
    line-clamp: unset;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 20px;
  }

  .btn {
    width: auto;
    padding: 20px 45px;
    font-size: 18px;
  }

  .hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    padding: 25px 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    width: fit-content;
  }

  .hero-stats div strong {
    font-size: 32px;
    font-weight: 950;
    display: block;
    color: var(--red);
  }

  .hero-stats div span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #666;
  }

  /* Product Grid Desktop Enhancements */
  .featured {
    padding: 60px 5%;
  }

  /* Product Grid Desktop Consolidation */
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 20px 0;
  }

  .floating-img {
    width: 80%;
    height: 80%;
  }

  .product-card:hover {
    transform: translateY(-15px);
    border-color: var(--red);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  }

  .card-actions {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
  }

  /* Product Detail Desktop Restoration */
  .product-detail {
    padding: 80px 5%;
  }

  .product-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    max-width: 1500px;
    margin: 0 auto;
  }

  .product-images {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    height: fit-content;
    max-height: calc(100vh - 150px);
  }

  .main-image-container {
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    background: #fff;
    cursor: crosshair;
    max-height: 70vh;
  }

  .thumbnail-strip {
    justify-content: center;
    border: none;
    margin-top: 30px;
  }

  .thumb-item {
    width: 90px;
    height: 90px;
  }

  .thumb-item:hover {
    transform: translateY(-5px);
    border-color: var(--red);
  }

  .feature-pill-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 0;
  }



  .product-info-wrap {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .product-info-wrap h1 {
    text-align: left;
    padding: 0;
    font-size: 64px;
  }

  .premium-tag {
    justify-content: flex-start;
    margin: 0 0 15px 0;
  }

  .review-summary {
    justify-content: flex-start;
    margin-bottom: 25px;
  }

  .price-box {
    justify-content: flex-start;
    border: none;
    padding: 0 0 40px 0;
  }

  .desc-text {
    text-align: left;
    padding: 0 0 50px 0;
    font-size: 20px;
  }

  .action-row {
    flex-direction: row;
    padding: 0;
    gap: 20px;
    margin: 40px 0;
  }

  .action-row .btn {
    flex: 1;
    height: 65px;
  }

  /* Specific RED for Add to Cart */
  #addToCartBtn.btn.primary {
    background: var(--red);
    color: #fff;
  }


  .mobile-sticky-cta {
    display: none;
  }

  .action-row {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }

  .action-row .btn {
    width: auto;
    flex: 1;
  }

  .assurance {
    justify-content: flex-start !important;
    text-align: left;
    margin-top: 30px;
  }


  /* Footer Desktop */
  .footer {
    text-align: left;
    padding: 50px 5% 30px;
  }

  .footer-brand {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
    text-align: left;
  }

  .footer-brand p {
    margin: 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 30px;
    text-align: left;
  }

  .product-sub-nav {
    top: 80px;
    background: rgba(0, 0, 0, 0.95);
  }

  .sub-nav-wrapper {
    justify-content: center;
    gap: 60px;
  }

  .sub-nav-link {
    font-size: 14px;
    letter-spacing: 2px;
    padding: 25px 0;
  }

  .feature-block {
    padding: 80px 10%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
    text-align: left;
  }

  .feature-block .f-text {
    flex: 1;
    max-width: 550px;
  }

  .feature-block .f-image {
    flex: 1.2;
    max-width: 700px;
  }

  /* Alternating layouts for storytelling */
  .feature-block:nth-child(even) {
    flex-direction: row-reverse;
    text-align: right;
  }

  .feature-block:nth-child(even) p {
    margin-left: auto;
  }

  .premium-box-visual {
    padding: 100px 10%;
  }

  .box-item-row {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1200px;
  }

  .footer-grid ul li a:hover {
    color: var(--red);
    opacity: 1;
  }

  .footer-social-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .social-text {
    margin-bottom: 0;
  }

  .social-icons a:hover {
    background: var(--red);
    transform: translateY(-5px);
  }

}

/* End of Desktop Media Query */

/* ============================================================ */
/* ================= 12. FLOATING ACTIONS (SUPPORT) =========== */
/* ============================================================ */

.floating-actions {
  position: fixed;
  bottom: 100px;
  /* High enough to clear sticky mobile CTA */
  right: 20px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  /* WhatsApp Brand Color */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.float-btn:active {
  transform: scale(0.9) rotate(-10deg);
}

.float-btn svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 1024px) {
  .floating-actions {
    bottom: 30px;
    right: 30px;
  }

  .float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  }
}

/* ================= UTILITIES ================================ */
.hidden {
  display: none !important;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================ */
/* ============= ADVANCED SPECIFICATIONS SYSTEM ================ */
/* ============================================================ */

.specs-container-advanced {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.specs-grid-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.spec-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.spec-item-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.spec-icon-box {
  width: 40px;
  height: 40px;
  background: rgba(225, 29, 46, 0.1);
  color: var(--red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}

.spec-item-card:hover .spec-icon-box {
  background: var(--red);
  color: #fff;
  box-shadow: var(--neon-glow);
}

.spec-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-details label {
  color: #666;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
}

.spec-details strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

/* Desktop Expansion */
@media (min-width: 1024px) {
  .specs-grid-premium {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .spec-item-card {
    padding: 30px;
  }

  .spec-icon-box {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

/* ============================================================ */
/* ============= ADVANCED UNBOXING SYSTEM ================ */
/* ============================================================ */

.unboxing-section-premium {
  padding: 60px 20px;
  background: radial-gradient(circle at center, #080808 0%, #000 100%);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.unboxing-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  max-width: 1200px;
  margin: 50px auto 0;
}

.unboxing-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.unboxing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: 0.4s;
}

.unboxing-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  border-color: rgba(225, 29, 46, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.unboxing-item:hover::before {
  opacity: 1;
}

.unboxing-icon-circle {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  transition: 0.4s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.unboxing-item:hover .unboxing-icon-circle {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(225, 29, 46, 0.4);
  transform: scale(1.1);
}

.unboxing-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 1;
}

.unboxing-label strong {
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.unboxing-label span {
  display: block;
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Desktop Flow */
@media (min-width: 1024px) {
  .unboxing-grid-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
  }

  .unboxing-item {
    padding: 40px 20px;
  }

  .unboxing-icon-circle {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .unboxing-label strong {
    font-size: 17px;
  }
}

/* ============================================================ */
/* ============= ELITE NAVIGATION & TITLES SYSTEM ============ */
/* ============================================================ */

.product-sub-nav {
  position: sticky;
  top: 80px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
}

.sub-nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  overflow-x: auto;
  scrollbar-width: none;
}

.sub-nav-wrapper::-webkit-scrollbar {
  display: none;
}

.sub-nav-link {
  padding: 18px 25px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  opacity: 0.6;
}

.sub-nav-link.active {
  color: var(--red);
  opacity: 1;
}

.sub-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scaleX(0);
}

.sub-nav-link.active::after {
  transform: scaleX(1);
}

/* Advanced Section Header */
.elite-section-header {
  position: relative;
  text-align: center;
  padding: 60px 20px 30px;
  overflow: hidden;
}

.elite-section-header .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 20px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  text-transform: uppercase;
}

.elite-title {
  position: relative;
  z-index: 1;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.elite-title span {
  color: var(--red);
  text-shadow: 0 0 20px rgba(225, 29, 46, 0.2);
}

.elite-line {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 0 20px var(--red);
  position: relative;
  z-index: 1;
}

/* Mobile Adaptations */
@media (max-width: 768px) {
  .elite-section-header .bg-text {
    font-size: 60px;
    letter-spacing: 10px;
  }

  .elite-title {
    font-size: 30px;
  }

  .sub-nav-link {
    padding: 15px 15px;
    font-size: 11px;
  }

  .sub-nav-link i {
    display: none;
  }
}

/* ============================================================ */
/* ============= ELITE ADVANCED COMPARISON SYSTEM ============ */
/* ============================================================ */

.compare-container-premium {
  max-width: 1200px;
  margin: 50px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  overflow-x: auto;
}

.compare-table-advanced {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
}

.compare-table-advanced th {
  padding: 30px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.compare-table-advanced .feature-col {
  width: 200px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
}

.product-col img {
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  transition: 0.4s;
}

.product-col .name {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.product-col .sub-badge {
  display: inline-block;
  font-size: 10px;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  margin-top: 8px;
  color: #888;
}

.product-col.elite-active {
  position: relative;
  background: rgba(225, 29, 46, 0.02);
}

.floating-ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 950;
  padding: 6px 15px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(225, 29, 46, 0.4);
  z-index: 10;
}

.compare-table-advanced td {
  padding: 25px 20px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.row-title {
  text-align: left !important;
  color: #aaa !important;
  font-size: 14px;
}

.perf-bar-wrap {
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin: 0 auto 10px;
  overflow: hidden;
}

.perf-bar {
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

.latency-dot {
  width: 8px;
  height: 8px;
  background: #444;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}

.latency-dot.active {
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}

/* ============================================================ */
/* ============= ELITE HERO PERFORMANCE SYSTEM ============ */
/* ============================================================ */

.product-variants-elite {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  justify-content: center;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.color-dot.active {
  border-color: #fff;
  box-shadow: 0 0 0 2px #000 inset;
  transform: scale(1.15);
}

.product-description-premium {
  color: #888;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.elite-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.elite-pill {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.elite-pill:hover {
  background: #151515;
  border-color: var(--red);
  transform: translateY(-5px);
}

.elite-pill i {
  font-size: 24px;
  color: #fff;
}

.pill-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-title {
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.p-sub {
  color: #666;
  font-size: 10px;
  font-weight: 600;
}

.assurance-elite {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.a-item {
  font-size: 11px;
  font-weight: 800;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.a-item i {
  color: var(--red);
  font-size: 14px;
}

/* Desktop Refinements for Elite System */
@media (min-width: 1024px) {
  .product-variants-elite {
    justify-content: flex-start;
  }

  .product-description-premium {
    margin-left: 0;
    text-align: left;
    font-size: 16px;
  }

  .elite-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .assurance-elite {
    justify-content: flex-start;
  }
}

/* ============================================================ */
/* ============= ULTRA-ELITE NEBULA HERO SYSTEM ============ */
/* ============================================================ */

.product-detail {
  position: relative;
  overflow: hidden;
}

/* Background Glow FX */
.product-detail::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(100px);
}

.product-detail::after {
  content: '';
  position: absolute;
  bottom: 0px;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.05) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
  filter: blur(120px);
}

.product-info-wrap {
  position: relative;
  z-index: 2;
}

/* Advanced USP Line */
.elite-usp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 10px 0 25px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.elite-usp-badge span {
  color: var(--red);
  text-shadow: 0 0 10px var(--red);
}

/* Enhanced Feature Pills */
.elite-pill {
  background: linear-gradient(145deg, #0f0f0f, #050505);
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
}

.elite-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
  border-radius: inherit;
}

.elite-pill:hover {
  border-color: var(--red) !important;
  box-shadow: 0 20px 40px rgba(225, 29, 46, 0.15);
}

/* Button Breathing Glow */
@keyframes breathe {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(225, 29, 46, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(225, 29, 46, 0.6);
  }
}

#addToCartBtn.btn.primary {
  animation: breathe 3s infinite ease-in-out;
  background: linear-gradient(to right, var(--red), #b91524);
  border: none;
  height: 60px;
  font-size: 15px;
  letter-spacing: 2px;
}

#addToCartBtn.btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.1);
}

.btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  height: 60px;
  font-size: 15px;
  letter-spacing: 2px;
  transition: 0.4s;
}

.btn.outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* Color Variant Refinements */
.variant-label {
  font-size: 12px;
  font-weight: 950;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 15px;
}

.color-dots-row {
  display: flex;
  gap: 12px;
  align-items: center;
}






.main-image-container img {
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-image-container:hover img {
  transform: scale(1.05);
}

/* Assurance section refinement */
.assurance-elite {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 20px !important;
  margin-top: 40px;
}


/* Ultra pricing module — Premium D2C Style */
.price-box-ultra {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0 8px;
  justify-content: center;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
}

.original-price {
  font-size: 16px;
  font-weight: 400;
  color: #777;
  text-decoration: line-through;
  letter-spacing: 0.3px;
}

.discount-badge {
  font-size: 14px;
  font-weight: 700;
  color: #00c896;
  letter-spacing: 0.3px;
}

.price-tax-label {
  font-size: 12px;
  color: #888;
  font-weight: 400;
  letter-spacing: 0.2px;
}

@media (min-width: 1024px) {
  .price-box-ultra {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .current-price {
    font-size: 36px;
  }

  .original-price {
    font-size: 18px;
  }

  .discount-badge {
    font-size: 15px;
  }
}


/* ============================================================ */
/* ============= ELITE STUDIO VERTICAL GALLERY ============ */
/* ============================================================ */

.product-gallery-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 1;
}

.main-display-viewport {
  position: relative;
  background: #f4f4f4;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
}

.main-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: crosshair;
  background: transparent !important;
}

.main-image-container img {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: center;
  padding: 40px;
  background: transparent !important;
}

.thumbnail-strip-vertical {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  order: 2;
  padding: 10px 0;
}

.thumb-item {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-item.active {
  border-color: var(--red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.zoom-indicator-elite {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.zoom-indicator-elite:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Desktop Desktop Restoration */
@media (min-width: 1024px) {
  .product-gallery-premium {
    flex-direction: row;
    height: 600px;
    gap: 30px;
    position: sticky;
    top: 120px;
  }

  .thumbnail-strip-vertical {
    flex-direction: column;
    width: 90px;
    height: 100%;
    order: 1;
    overflow-y: auto;
    padding: 0;
    justify-content: flex-start;
  }

  .thumb-item {
    width: 80px;
    height: 80px;
  }

  .main-display-viewport {
    flex-grow: 1;
    height: 100%;
    order: 2;
    border-radius: 40px;
  }
}

/* ============================================================ */
/* ============= FINAL ELITE GALLERY REFINEMENTS ============ */
/* ============================================================ */

.main-display-viewport {
  background: linear-gradient(135deg, #f8f8f8 0%, #ececec 100%);
  transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.main-display-viewport:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.thumb-item {
  position: relative;
  overflow: hidden;
}

.thumb-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.thumb-item:hover::after {
  left: 150%;
}

.zoom-indicator-elite {
  opacity: 0.7;
}

.main-display-viewport:hover .zoom-indicator-elite {
  opacity: 1;
  background: var(--red);
  color: #fff;
}

/* Vertical Thumbnail Scrollbar Hidden */
.thumbnail-strip-vertical {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.thumbnail-strip-vertical::-webkit-scrollbar {
  display: none;
}

/* ============================================================ */
/* ============= ELITE STUDIO VERTICAL GALLERY (FORCE) ============ */
/* ============================================================ */

.product-gallery-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 1;
}

.main-display-viewport {
  position: relative;
  background: #f4f4f4;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.02);
}

.main-image-container {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: crosshair;
}

.main-image-container img {
  min-width: 100%;
  height: 100%;
  object-fit: contain;
  scroll-snap-align: center;
  padding: 40px;
}

.thumbnail-strip-vertical {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  order: 2;
  padding: 10px 0;
}

.thumbnail-strip-vertical::-webkit-scrollbar {
  display: none;
}

.thumb-item {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumb-item.active {
  border-color: var(--red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.zoom-indicator-elite {
  position: absolute;
  bottom: 25px;
  right: 25px;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

.zoom-indicator-elite:hover {
  transform: scale(1.1);
}

@media (min-width: 1024px) {
  .product-gallery-premium {
    flex-direction: row;
    height: 600px;
    gap: 30px;
    position: sticky;
    top: 120px;
  }

  .thumbnail-strip-vertical {
    flex-direction: column;
    width: 90px;
    height: 100%;
    order: 1;
    overflow-y: auto;
    padding: 0;
    justify-content: flex-start;
  }

  .thumb-item {
    width: 80px;
    height: 80px;
  }

  .main-display-viewport {
    flex-grow: 1;
    height: 100%;
    order: 2;
    border-radius: 40px;
  }
}


/* ============================================================ */
/* ============= FINAL SPACING & LAYOUT FIXES ============ */
/* ============================================================ */

@media (min-width: 1024px) {
  .product-detail {
    padding: 20px 5% 40px !important;
    /* Zero gap, body handles header */
    margin-top: 0 !important;
  }

  .product-gallery-premium {
    top: 100px !important;
    /* 80px Header + 20px gap */
  }

  /* Ensure Gallery Overrides Legacy */
  .product-images {
    display: none !important;
  }

  .gallery-nav {
    display: flex !important;
    /* Force visible on desktop */
  }
}

/* Screenshot 1 Background Match */
.main-display-viewport {
  background: #f0f0f0 !important;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.05);
}

/* ============================================================ */
/* ============= ZERO-GAP TOP LAYOUT FIX (SCREENSHOT 3) ======= */
/* ============================================================ */

@media (min-width: 1024px) {

  /* Override Body Padding for Product Page ONLY via specific selector if possible, or just force product-detail up */
  .product-detail {
    padding-top: 0 !important;
    margin-top: -30px !important;
    /* Pull content up into the void */
  }

  .product-gallery-premium {
    top: 90px !important;
  }

  .product-info-wrap {
    padding-top: 0 !important;
    margin-top: 0 !important;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
  }
}

/* ============================================================ */
/* ============= ALIGNMENT & SIZING CORRECTION ================ */
/* ============================================================ */

@media (min-width: 1024px) {
  .product-detail-grid {
    align-items: start !important;
    /* Force top alignment */
    grid-template-columns: 1.2fr 1fr !important;
    gap: 40px;
    /* Tighter gap */
  }

  .product-info-wrap {
    padding-top: 0 !important;
    justify-content: flex-start !important;
    height: fit-content !important;
    /* Prevent stretching */
  }

  .premium-tag {
    margin-top: 0 !important;
    /* Eliminate first-child margin */
  }

  /* Ensure Gallery starts exactly at top */
  .product-gallery-premium {
    margin-top: 0 !important;
  }

  /* User requested size matching - ensure viewport isn't excessively huge compared to text if that was the issue, 
     but prioritise alignment first. If they want height match, flex-start handles independence. */
}

/* Remove any potential pseudo-element spacing */
.product-detail::before,
.product-detail::after {
  display: none !important;
  /* Remove nebula glow if it causes layout shifts */
}

/* ============================================================ */
/* ============= FINAL ALIGNMENT OVERRIDE (FORCE) ============ */
/* ============================================================ */

@media (min-width: 1024px) {
  .product-gallery-premium {
    top: 80px !important;
    /* Exact Header Height to prevents gaps */
  }

  /* Manually pull text up if grid GAP is creating illusion of space or font-line-height issues */
  .product-info-wrap {
    transform: translateY(-5px);
  }

  /* Match Size: Ensure proper height calculation for sticky context */
  .product-detail-grid {
    min-height: 80vh;
  }
}

/* ============================================================ */
/* ============= SCREENSHOT 1 PIXEL-PERFECT STUDIO ============ */
/* ============================================================ */

.main-display-viewport {
  background: #E8EAEF !important;
  /* The Exact 'Number Earbuds' Light Studio Grey */
  border-radius: 48px !important;
  /* More aggressive rounding */
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.03), 0 20px 40px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}

.main-image-container img {
  background: transparent !important;
  /* Remove white box */
  padding: 50px !important;
  /* Give it air like the screenshot */
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  /* Floating effect */
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-image-container img:hover {
  transform: scale(1.03);
  /* Subtle zoom */
}

/* Navigation Buttons - Screenshot Match */
.gallery-nav {
  width: 50px !important;
  height: 50px !important;
  background: #ffffff !important;
  color: #111 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  border: none !important;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
  opacity: 1;
}

/* Zoom Indicator - Screenshot Match */
.zoom-indicator-elite {
  position: absolute;
  background: #fff !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  color: #333;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
}

.zoom-indicator-elite:hover {
  transform: scale(1.1);
  background: #f8f8f8 !important;
}


/* ============================================================ */
/* ============= REMOVE RED LINE (PROGRESS BAR) ================ */
/* ============================================================ */

@media (min-width: 1024px) {}


/* ============================================================ */
/* ============= CLEAN UP & DOUBLE BORDER FIX ================= */
/* ============================================================ */

.main-image-container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
  width: 100% !important;
}

/* Remove white border if it looks like a glitch */
.main-display-viewport {
  border: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  /* Soft outer shadow instead of inset/border */
}


/* ============================================================ */
/* ============= NUCLEAR OPTION: RED LINE REMOVAL ============= */
/* ============================================================ */

/* Remove any potential red borders or shadows on the image itself */
.main-image-container img {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Ensure main viewport has no red bleed */
.main-display-viewport {
  border: none !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
}


/* ============================================================ */
/* ============= GLOBAL SCROLLBAR KILLER-PATCH ================= */
/* ============================================================ */

/* Target potential global scrollbar styling that might be bleeding in */
::-webkit-scrollbar {
  width: 0px !important;
  height: 0px !important;
  background: transparent !important;
}

::-webkit-scrollbar-thumb {
  background: transparent !important;
  border: none !important;
}

::-webkit-scrollbar-track {
  background: transparent !important;
}

/* Specific Kill for Image Container */
.main-image-container {
  -ms-overflow-style: none !important;
  /* IE and Edge */
  scrollbar-width: none !important;
  /* Firefox */
  overflow-x: auto !important;
  /* Allow swipe on mobile! */
}

/* Ensure no pseudo-elements are creating lines */
.main-image-container::after,
.main-image-container::before,
.main-display-viewport::after,
.main-display-viewport::before {
  content: none !important;
  display: none !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

/* ONE LAST CHECK: The 'active' class on thumbnails might be leaking? No, distinct area. */







/* ============================================================ */
/* ============= FINAL RED LINE ELIMINATION =================== */
/* ============================================================ */

/* Absolutely kill ANY animation on the image gallery */
.main-image-container,
.main-image-container *,
.main-display-viewport,
.main-display-viewport *,
.product-gallery-premium,
.product-gallery-premium * {
  animation: none !important;
  -webkit-animation: none !important;
}

/* Override any ::after or ::before pseudo-elements */
.main-image-container::after,
.main-image-container::before,
.main-display-viewport::after,
.main-display-viewport::before {
  content: '' !important;
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  background-image: none !important;
  animation: none !important;
  -webkit-animation: none !important;
  position: absolute !important;
  z-index: -9999 !important;
  pointer-events: none !important;
}

/* ============================================================ */
/* ============= NUCLEAR MOBILE RESPONSIVENESS PATCH ========== */
/* ============================================================ */

@media (max-width: 1023px) {
  :root {
    --nav-h: 70px;
  }

  html,
  body {
    overflow-x: hidden !important;
    position: relative;
    width: 100%;
  }

  .navbar {
    height: var(--nav-h) !important;
    padding: 0 20px !important;
  }

  .main-logo {
    height: 30px !important;
  }

  .product-detail-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    gap: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .product-gallery-premium {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    top: 0 !important;
    gap: 0 !important;
  }

  .main-display-viewport {
    border-radius: 24px !important;
    width: 100% !important;
    aspect-ratio: 1/1 !important;
    height: auto !important;
    order: 1 !important;
    background: #f3f3f3 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 20px !important;
  }

  .main-image-container {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    width: 100% !important;
    height: 100% !important;
  }

  .main-image-container img {
    min-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 40px !important;
    scroll-snap-align: center !important;
  }

  .thumbnail-strip-vertical {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    width: 100% !important;
    padding: 15px 20px !important;
    gap: 12px !important;
    order: 2 !important;
    justify-content: flex-start !important;
    scrollbar-width: none !important;
  }

  .thumbnail-strip-vertical::-webkit-scrollbar {
    display: none !important;
  }

  .thumb-item {
    width: 65px !important;
    height: 65px !important;
    flex: 0 0 65px !important;
  }

  .product-info-wrap {
    padding: 24px !important;
    width: 100% !important;
    order: 3 !important;
    text-align: left !important;
    background: var(--black);
  }

  .product-info-wrap h1 {
    font-size: 28px !important;
    text-align: left !important;
    padding: 0 !important;
    margin-top: 10px !important;
    color: #fff !important;
    -webkit-text-fill-color: initial !important;
    background: none !important;
  }

  .premium-tag {
    justify-content: flex-start !important;
    margin-top: 0 !important;
  }

  .review-summary {
    justify-content: flex-start !important;
  }

  .price-box-ultra {
    justify-content: flex-start !important;
    padding: 15px 0 !important;
  }

  .current-price {
    font-size: 36px !important;
  }

  .elite-feature-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 20px 0 !important;
  }

  .action-row {
    flex-direction: column !important;
    gap: 15px !important;
    padding: 0 !important;
    margin-top: 25px !important;
  }

  .action-row .btn {
    height: 60px !important;
  }

  .assurance-elite {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding: 20px !important;
    margin-top: 30px !important;
  }
}

/* ============================================================ */
/* ============= CLEAN PRODUCT GALLERY ARCHITECTURE =========== */
/* ============================================================ */

.product-gallery {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  background: #f8f8f8;
  border-radius: 24px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  order: 1;
}

.product-gallery img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-gallery .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}

.product-gallery .nav:hover {
  background: #000;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.product-gallery .prev {
  left: 15px;
}

.product-gallery .next {
  right: 15px;
}

/* Mobile Adaptations for Gallery */
@media (max-width: 768px) {
  .product-gallery {
    max-width: 100%;
    border-radius: 0;
  }

  .product-gallery img {
    width: 80%;
    height: 80%;
  }

  .product-gallery .nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* Navbar Polish - Standardize across site */
:root {
  --nav-h: 72px;
}

.navbar {
  height: var(--nav-h) !important;
  padding: 0 20px !important;
  background: rgba(0, 0, 0, 0.98) !important;
  border-bottom: none !important;
}

.main-logo {
  height: 28px !important;
}

/* Force Reordering for Product Grid */
@media (max-width: 1100px) {
  .product-detail-grid {
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
  }

  .product-gallery-premium {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    order: 1 !important;
  }

  .thumbnail-strip-vertical {
    order: 2 !important;
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    padding: 15px 20px !important;
    gap: 12px !important;
    justify-content: center !important;
    scrollbar-width: none;
  }

  .product-info-wrap {
    order: 3 !important;
    padding: 24px 20px !important;
  }
}

@media (min-width: 1101px) {
  .product-detail-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 60px !important;
    padding: 40px !important;
  }

  .product-gallery-premium {
    flex-direction: row !important;
    position: sticky !important;
    top: 100px !important;
  }

  .thumbnail-strip-vertical {
    flex-direction: column !important;
    width: 80px !important;
    gap: 15px !important;
  }
}

/* ============================================================ */
/* ================= 10. PREMIUM NOTIFICATIONS ================= */
/* ============================================================ */

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(10, 10, 10, 0.95);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  border: 1px solid var(--red);
  box-shadow: 0 0 15px rgba(225, 29, 46, 0.3);
}

.toast.error {
  border: 1px solid var(--red);
}

.toast.hidden {
  display: none;
}

/* ============================================================ */
/* ================= 11. HASHTAG TICKER (RUBY & WHITE) ======== */
/* ============================================================ */

.hashtag-ticker-section {
  background: var(--black);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-wrapper {
  display: flex;
  width: max-content;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 100px;
  animation: tickerScroll 45s linear infinite;
  white-space: nowrap;
  padding-right: 100px;
}

.hashtag {
  color: rgba(255, 255, 255, 0.3);
  font-size: 110px;
  font-weight: 950;
  letter-spacing: -3px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: default;
}

.hashtag:hover {
  color: var(--red);
  opacity: 1;
}

.brand-name {
  color: var(--red);
  font-size: 110px;
  font-weight: 950;
  letter-spacing: -4px;
  text-transform: uppercase;
  filter: drop-shadow(0 0 20px rgba(225, 29, 46, 0.2));
}

.white-outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
  color: transparent;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {

  .hashtag,
  .brand-name {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .hashtag-ticker-section {
    padding: 80px 0;
  }

  .hashtag,
  .brand-name {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .ticker-content {
    gap: 40px;
  }
}

/* ============================================================ */
/* ================= 13. BUTTON VISIBILITY FIXES ============== */
/* ============================================================ */

/* Ensure the main Add to Cart button is NEVER hidden accidentally */
#addToCartBtn,
.btn-add-cart-mini {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Fix Mobile Sticky CTA Visibility */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    gap: 12px;
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }

  .product-info-wrap {
    order: 3 !important;
    padding: 24px 20px !important;
  }
}

@media (min-width: 1101px) {
  .product-detail-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr !important;
    gap: 60px !important;
    padding: 40px !important;
  }

  .product-gallery-premium {
    flex-direction: row !important;
    position: sticky !important;
    top: 100px !important;
  }

  .thumbnail-strip-vertical {
    flex-direction: column !important;
    width: 80px !important;
    gap: 15px !important;
  }
}

/* ============================================================ */
/* ================= 10. PREMIUM NOTIFICATIONS ================= */
/* ============================================================ */

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(10, 10, 10, 0.95);
  color: #fff;
  padding: 16px 32px;
  border-radius: 100px;
  z-index: 100000;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  border: 1px solid var(--red);
  box-shadow: 0 0 15px rgba(225, 29, 46, 0.3), 0 10px 40px rgba(0, 0, 0, 0.5);
}

.toast.error {
  border: 1px solid var(--red);
}

.toast.info {
  border: 1px solid var(--red);
}

.toast.hidden {
  display: none;
}

/* ============================================================ */
/* ================= 11. HASHTAG TICKER (RUBY & WHITE) ======== */
/* ============================================================ */

.hashtag-ticker-section {
  background: var(--black);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-wrapper {
  display: flex;
  width: max-content;
}

.ticker-content {
  display: flex;
  align-items: center;
  gap: 100px;
  animation: tickerScroll 45s linear infinite;
  white-space: nowrap;
  padding-right: 100px;
}

.hashtag {
  color: rgba(255, 255, 255, 0.3);
  font-size: 110px;
  font-weight: 950;
  letter-spacing: -3px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: default;
}

.hashtag:hover {
  color: var(--red);
  opacity: 1;
}

.brand-name {
  color: var(--red);
  font-size: 110px;
  font-weight: 950;
  letter-spacing: -4px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(225, 29, 46, 0.2);
}

.white-outline {
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
  color: transparent;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {

  .hashtag,
  .brand-name {
    font-size: 80px;
  }
}

@media (max-width: 768px) {
  .hashtag-ticker-section {
    padding: 80px 0;
  }

  .hashtag,
  .brand-name {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .ticker-content {
    gap: 40px;
  }
}

/* ============================================================ */
/* ================= 13. BUTTON VISIBILITY FIXES ============== */
/* ============================================================ */

/* Ensure the main Add to Cart button is NEVER hidden accidentally */
#addToCartBtn,
.btn-add-cart-mini {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Fix Mobile Sticky CTA Visibility */
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px;
    gap: 12px;
    z-index: 9999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }

  /* Prevent content from being hidden behind sticky bar */
  body.has-sticky-cta {
    padding-bottom: 100px;
  }
}

/* ========================================= */
/*  SPOTLIGHT SECTION (PREMIUM DARK)         */
/* ========================================= */
.spotlight-section {
  padding: 80px 5%;
  background-color: #000;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.spotlight-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.spotlight-section .section-header h2 {
  font-size: 64px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -4px;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1;
}

.spotlight-section .section-header h2 span {
  color: var(--red);
}

.spotlight-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.spotlight-card {
  background: #0a0a0a;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(30px);
}

.spotlight-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.spotlight-card:hover {
  transform: translateY(-15px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.spotlight-influencer-area {
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}

/* Performance Overlay (Replaces expensive filter) */
.spotlight-influencer-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 2;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.spotlight-card:hover .spotlight-influencer-area::before {
  opacity: 0;
}

.spotlight-influencer-area img,
.spotlight-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  /* Filter removed for performance */
}

.spotlight-card:hover .spotlight-influencer-area img,
.spotlight-card:hover .spotlight-bg-video {
  transform: scale(1.1);
  /* Filter removed */
}

.spotlight-product-overlay {
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 10;
  border: 4px solid #111;
  padding: 12px;
}

.spotlight-product-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.spotlight-info {
  padding: 60px 30px 40px;
  text-align: center;
  background: #111;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.spotlight-info h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #fff;
  letter-spacing: -0.5px;
}

.spotlight-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 45px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(225, 29, 46, 0.2);
}

.spotlight-btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

/* Skeleton Dark */
.spotlight-skeleton {
  height: 550px;
  background: linear-gradient(90deg, #111 25%, #1a1a1a 50%, #111 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 32px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

@media (max-width: 768px) {
  .spotlight-section {
    padding: 60px 5%;
  }

  .spotlight-section .section-header h2 {
    font-size: 36px;
  }

  .spotlight-influencer-area {
    height: 350px;
  }

  .spotlight-card {
    border-radius: 24px;
  }
}

/* ============================================================ */
/* ================= 9. UTILITIES & OVERLAYS ================== */
/* ============================================================ */

.hidden {
  display: none !important;
}

/* ================= TOAST NOTIFICATION ================= */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(10, 10, 10, 0.95);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 11000;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast.success {
  border: 1px solid var(--red);
  box-shadow: 0 0 15px rgba(225, 29, 46, 0.3);
}

.toast.error {
  border: 1px solid var(--red);

}



/* ============================================================ */
/* ================= 15. WHATSAPP FLOATING BUTTON ============= */
/* ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  background-color: #128c7e;
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
  margin-top: 1px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 25px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
}
/* ============================================================ */
/* ELITE PRODUCT DISCOVERY SYSTEM (Anatomy & Features) */
/* ============================================================ */

.elite-section-header {
  position: relative;
  text-align: center;
  margin: 100px 0 60px;
  overflow: hidden;
  padding: 40px 0;
}

.elite-section-header .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  letter-spacing: 20px;
  z-index: 0;
  pointer-events: none;
  text-transform: uppercase;
}

.elite-title {
  position: relative;
  z-index: 1;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.elite-title span {
  color: var(--red);
}

.elite-line {
  width: 60px;
  height: 4px;
  background: var(--red);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* --- Feature Grid --- */
.elite-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1400px;
  margin: 100px auto;
  padding: 0 40px;
}

.elite-pill {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  backdrop-filter: blur(10px);
}

.elite-pill:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(225, 29, 46, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.elite-pill i {
  font-size: 28px;
  color: var(--red);
  width: 40px;
  text-align: center;
}

.pill-info {
  display: flex;
  flex-direction: column;
}

.p-title {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.p-sub {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

/* --- Specifications Advanced --- */
.specs-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 15px;
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 40px;
}

.spec-item-card {
  background: #0f0f0f;
  border: 1px solid #222;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.3s;
}

.spec-item-card:hover {
  border-color: #333;
  background: #151515;
}

.spec-icon-box {
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #555;
  flex-shrink: 0;
}

.spec-item-card:hover .spec-icon-box {
  color: var(--red);
  background: rgba(225, 29, 46, 0.1);
}

.spec-details {
  display: flex;
  flex-direction: column;
}

.spec-details label {
  font-size: 11px;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 800;
  margin-bottom: 4px;
}

.spec-details strong {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 768px) {
  .elite-section-header {
    margin: 60px 0 30px;
  }
  .elite-feature-grid, .specs-grid-premium {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
  .spec-item-card {
    padding: 15px;
  }
}
