/* ============================================================ */
/* ================= 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: 64px;
  /* Mobile nav height */
  --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: 50px;
    /* Compact 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: linear-gradient(90deg, #b30f22 0%, #e11d2e 50%, #ff3f52 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 6px 0;
  letter-spacing: 1.8px;
  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;
  box-shadow: 0 12px 30px rgba(225, 29, 46, 0.22);
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b30f22 0%, #e11d2e 50%, #ff3f52 100%);
  pointer-events: none;
}

/* 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) + 28px);
  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) ================= */
/* ============================================================ */


/* ============================================================ */
/* ================= 2. MOBILE NAVBAR (CLEAN) ================= */
/* ============================================================ */

.navbar {
  position: fixed;
  top: 28px;
  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: 25px;
  height: 25px;
  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-social-label {
  font-size: 11px;
  color: #888;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.drawer-socials a {
  width: 32px;
  height: 32px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  opacity: 0.7 !important;
}

.drawer-socials a:hover {
  opacity: 1 !important;
  color: var(--red);
  transform: translateY(-2px);
}

.drawer-socials a svg {
  width: 20px;
  height: 20px;
}

.drawer-footer p {
  font-size: 10px;
  color: #444;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 10px;
}

.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;
}

/* ============================================================ */
/* ================= 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: 1;
  visibility: visible;
  transition: none;
  pointer-events: none;
  z-index: 1;
}

.slide.active {
  pointer-events: auto;
  z-index: 2;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
  will-change: opacity;
}

.slide.active .slide-image {
  opacity: 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(6px);
  opacity: 0;
  filter: none;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
  will-change: transform, opacity;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
  filter: none;
}

.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;
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 100;
  background: rgba(8, 8, 10, 0.48);
  padding: 8px 12px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  border: none;
}

.hero-dot.active {
  background: var(--red);
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.18);
}

/* 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: 1;
  visibility: visible;
  transition: none;
  pointer-events: none;
  z-index: 1;
}

.slide.active {
  pointer-events: auto;
  z-index: 2;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.55s ease-in-out;
  will-change: opacity;
}

.slide.active .slide-image {
  opacity: 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(6px);
  opacity: 0;
  filter: none;
  transition: transform 0.18s ease-out, opacity 0.18s ease-out;
  will-change: transform, opacity;
}

.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
  filter: none;
}

.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: 2px;
  border-radius: 0;
  display: block;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 44px;
  height: 44px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
  box-shadow: none;
}

.social-icons a:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.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%;
  padding: 32px 20px;
  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;
  overflow-y: auto;
  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;
  max-height: calc(100vh - 64px);
  margin: auto;
  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-popup-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(225, 29, 46, 0.08);
  border: 1px solid rgba(225, 29, 46, 0.16);
  color: #d8dbe2;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
}

.buy-popup-note i {
  color: var(--red);
  margin-top: 2px;
}

.buy-popup-note span {
  flex: 1;
}

.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;
}

@media (min-width: 992px) {
  .buy-popup {
    padding: 40px 28px;
  }

  .buy-popup-content {
    width: min(560px, 100%);
    max-width: 560px;
    max-height: calc(100vh - 80px);
    padding: 36px 30px;
    border-radius: 34px;
  }

  .buy-popup-content h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .buy-popup-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.45;
  }

  .buy-popup-note {
    margin-bottom: 18px;
    padding: 14px 16px;
  }

  .buy-links-container {
    gap: 10px;
  }

  .buy-popup-content a {
    padding: 16px 22px;
    border-radius: 18px;
  }

  .buy-popup-close-btn {
    margin-top: 22px;
    padding: 16px;
  }
}


.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: 30px;
    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;
    font-size: 12px;
    /* Compact nav text */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    opacity: 0.8;
    white-space: nowrap;
  }

  .nav-links a:hover,
  .nav-links a.active {
    opacity: 1;
    color: #fff;
    transform: translateY(-2px);
    letter-spacing: 1.2px;
    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: transparent;
    transform: none;
  }

}

/* 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: 28px 22px 24px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 180px;
  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-label {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  align-items: center;
  text-align: center;
}

.unboxing-label strong {
  display: block;
  font-size: 17px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.25px;
  line-height: 1.2;
  padding: 0 6px;
}

.unboxing-label span {
  display: block;
  font-size: 11px;
  color: #8f90a7;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.4px;
  padding: 8px 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
}

/* Desktop Flow */
@media (min-width: 1024px) {
  .unboxing-grid-container {
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
  }

  .unboxing-item {
    padding: 34px 22px 28px;
    min-height: 210px;
  }

  .unboxing-label strong {
    font-size: 18px;
  }
}

/* ============================================================ */
/* ============= 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;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 18px;
  justify-content: center;
}

.variant-selected-copy {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.variant-selected-label {
  font-size: 13px;
  font-weight: 800;
  color: #d8d8d8;
}

.variant-selected-name {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}

.variant-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.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;
}

/* 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: 10px;
  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;
  margin-top: 4px;
}

@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);
  background: linear-gradient(180deg, #ffffff 0%, #f7f3eb 100%);
  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;
}

.main-display-viewport:hover .zoom-indicator-elite {
  opacity: 1 !important;
  background: #ffffff !important;
  color: #111111 !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12) !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: #25d366;
  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;
  }
}

/* ============================================================ */
/* =================== HOMEPAGE 2026 REFRESH ================== */
/* ============================================================ */

.home-page {
  --home-accent: #e11d2e;
  --home-accent-soft: #e11d2e;
  --home-highlight: #fff2f4;
  --home-border: rgba(255, 255, 255, 0.12);
  --home-panel: rgba(14, 16, 20, 0.86);
  background: #050505;
  color: #f8f7f3;
}

.home-page .announcement-bar {
  background: linear-gradient(90deg, #b30f22 0%, #e11d2e 50%, #ff3f52 100%);
  font-size: 11px;
  letter-spacing: 1.8px;
  box-shadow: 0 12px 30px rgba(225, 29, 46, 0.22);
}

.home-page .navbar {
  background: rgba(6, 7, 10, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .navbar.scrolled {
  background: rgba(6, 7, 10, 0.94);
}

.home-page .hero-slider {
  height: calc(100vh - var(--nav-h));
  min-height: clamp(640px, 94vh, 920px);
  background: #000;
}

.home-page .hero-slider::before {
  background: transparent;
  opacity: 0;
  animation: none;
}

.home-page .hero-slider::after {
  background:
    linear-gradient(180deg, rgba(4, 4, 5, 0.2) 0%, rgba(4, 4, 5, 0.1) 18%, rgba(4, 4, 5, 0.88) 100%);
}

.home-page .slide {
  justify-content: flex-start;
  align-items: flex-start;
  padding: clamp(104px, 12vw, 148px) clamp(20px, 6vw, 88px) 96px;
}

.home-page .slide.hero-has-stats {
  padding: clamp(86px, 10vw, 122px) clamp(20px, 6vw, 88px) 64px;
}

.home-page .slide::before {
  display: none;
}

.home-page .slide-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.9) 0%, rgba(5, 5, 6, 0.35) 38%, rgba(5, 5, 6, 0.05) 64%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.1) 0%, rgba(5, 5, 6, 0) 42%, rgba(5, 5, 6, 0.62) 100%);
}

.home-page .slide-image img,
.home-page .slide-image video {
  filter: brightness(0.42) saturate(1.08);
}

.home-page .slide-content {
  width: min(760px, 54vw);
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  text-align: left;
}

.home-page .slide-content.hero-copy-tight {
  width: min(820px, 58vw);
}

.home-page .slide-content.hero-copy-dense {
  width: min(860px, 62vw);
}

.home-page .slide-content.hero-has-stats {
  width: min(680px, 50vw);
}

.home-page .slide-content .badge {
  background: rgba(225, 29, 46, 0.14);
  border-color: rgba(225, 29, 46, 0.24);
  color: var(--home-accent-soft);
}

.home-page .slide-content h1,
.home-page .story-copy h2,
.home-page .promise-card h3,
.home-page .featured h2,
.home-page .spotlight-section .section-header h2,
.home-page .product-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
}

.home-page .slide-content h1 {
  max-width: 9ch;
  font-size: clamp(58px, 8.8vw, 118px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-wrap: balance;
  background: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}

.home-page .slide-content.hero-copy-tight h1 {
  max-width: 10.5ch;
  font-size: clamp(50px, 7.3vw, 98px);
  margin-bottom: 14px;
}

.home-page .slide-content.hero-copy-dense h1 {
  max-width: 11.5ch;
  font-size: clamp(44px, 6.3vw, 84px);
  margin-bottom: 12px;
}

.home-page .slide-content.hero-has-stats h1 {
  max-width: 10.8ch;
  font-size: clamp(42px, 6.1vw, 74px);
  margin-bottom: 10px;
}

.home-page .slide-content h2 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  max-width: 14ch;
  font-size: clamp(26px, 4vw, 56px);
  letter-spacing: 0.04em;
  color: var(--home-accent);
  text-shadow: none;
  margin-bottom: 26px;
  text-wrap: balance;
}

.home-page .slide-content.hero-copy-tight h2 {
  max-width: 16ch;
  font-size: clamp(24px, 3.2vw, 42px);
  margin-bottom: 20px;
}

.home-page .slide-content.hero-copy-dense h2 {
  max-width: 18ch;
  font-size: clamp(22px, 2.6vw, 34px);
  margin-bottom: 18px;
}

.home-page .slide-content.hero-has-stats h2 {
  max-width: 17ch;
  font-size: clamp(20px, 2.4vw, 30px);
  margin-bottom: 12px;
}

.home-page .slide-content p {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.5;
}

.home-page .slide-content.hero-copy-tight p {
  max-width: 34rem;
  font-size: clamp(16px, 1.55vw, 19px);
}

.home-page .slide-content.hero-copy-dense p {
  max-width: 32rem;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.45;
}

.home-page .slide-content.hero-has-stats p {
  max-width: 28rem;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.38;
}

.home-page .hero-buttons {
  margin-top: 22px;
  margin-bottom: 0;
  flex-wrap: wrap;
  align-items: center;
}

.home-page .slide-content.hero-has-stats .hero-buttons {
  margin-top: 10px;
  gap: 12px;
}

.home-page .slide-content.hero-has-stats .btn {
  padding: 15px 26px;
  min-width: 182px;
  font-size: 14px;
}

.home-page .slide-content.hero-copy-dense .hero-buttons {
  gap: 12px;
}

.home-page .btn {
  border-radius: 999px;
}

.home-page .btn.hero-cta {
  background: linear-gradient(135deg, #e11d2e 0%, #ff3f52 100%);
  border: none;
  box-shadow: 0 18px 30px rgba(225, 29, 46, 0.26);
}

.home-page .btn.outline {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.home-page .btn.hero-cta:hover,
.home-page .btn.outline:hover {
  transform: translateY(-2px);
}

.home-page .hero-stats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 14px;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  max-width: min(100%, 34rem);
}

.home-page .hero-stats .hero-stat {
  position: relative;
  min-width: 92px;
  flex: 0 1 auto;
  padding: 0 18px 0 0;
  margin-right: 18px;
}

.home-page .hero-stats .hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  right: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.home-page .hero-stats div strong {
  color: #f8fafc;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.05;
}

.home-page .hero-stats div span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.home-page .slide-content.hero-copy-tight .hero-stats {
  max-width: min(100%, 32rem);
}

.home-page .slide-content.hero-copy-dense .hero-stats {
  max-width: min(100%, 29rem);
}

.home-page .slide-content.hero-has-stats .hero-stats {
  margin-top: 12px;
  max-width: min(100%, 26rem);
}

.home-page .slide-content.hero-has-stats .hero-stats .hero-stat {
  min-width: 80px;
  padding-right: 14px;
  margin-right: 14px;
}

.home-page .slide-content.hero-has-stats .hero-stats div strong {
  font-size: clamp(15px, 1.3vw, 18px);
}

.home-page .slide-content.hero-has-stats .hero-stats div span {
  letter-spacing: 0.1em;
}

.home-page .slide-content.hero-copy-dense .hero-stats div {
  min-width: 84px;
  flex-basis: 84px;
}

.home-page .slide-content.hero-copy-dense .hero-stats div strong {
  font-size: clamp(16px, 1.7vw, 20px);
}

.home-page .slide-content.hero-copy-dense .hero-stats div span {
  letter-spacing: 0.1em;
}

.home-page .hero-dots {
  bottom: 26px;
  background: rgba(8, 8, 10, 0.46);
  border-color: rgba(255, 255, 255, 0.06);
}

.home-page .hero-dot.active {
  background: var(--home-accent);
  box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.2);
}

.home-page .brand-story,
.home-page .featured,
.home-page .spotlight-section {
  position: relative;
  isolation: isolate;
}

.home-page .brand-story {
  padding: 52px 24px 24px;
  background: #000 !important;
}

.home-page .story-shell,
.home-page .promise-grid,
.home-page .footer-grid,
.home-page .footer-social-row,
.home-page .footer-bottom {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.home-page .story-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  margin-bottom: 14px;
}

.home-page .story-copy,
.home-page .story-panel,
.home-page .promise-card {
  border-radius: 32px;
  border: 1px solid var(--home-border);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.home-page .story-copy,
.home-page .story-panel {
  padding: clamp(28px, 4vw, 40px);
}

.home-page .story-copy {
  background: var(--black);
}

.home-page .story-kicker,
.home-page .story-panel-label,
.home-page .footer-kicker,
.home-page .promise-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--home-accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
}

.home-page .story-copy h2 {
  max-width: 11ch;
  margin: 18px 0 18px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.home-page .story-copy p,
.home-page .story-panel-header p,
.home-page .promise-card p,
.home-page .footer-note {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.home-page .story-copy p {
  max-width: 58ch;
}

.home-page .story-panel-header p {
  margin-top: 14px;
}

.home-page .story-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.home-page .story-points span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #f4f1ea;
  font-size: 14px;
  font-weight: 500;
}

.home-page .story-panel {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.home-page .story-panel > * {
  position: relative;
  z-index: 1;
}

.home-page .story-panel::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: transparent;
  filter: blur(12px);
  z-index: 0;
  pointer-events: none;
}

.home-page .story-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.home-page .story-metrics div {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.home-page .story-metrics strong {
  display: block;
  margin-bottom: 6px;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.05;
}

.home-page .story-metrics span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.5;
}

.home-page .story-quote {
  position: relative;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.3;
  color: #fff4ea;
}

.home-page .promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-page .promise-card {
  padding: 28px;
  background: linear-gradient(170deg, rgba(18, 20, 25, 0.96), rgba(10, 11, 15, 0.96));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-page .promise-card:hover {
  transform: translateY(-8px);
  border-color: rgba(225, 29, 46, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.home-page .promise-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.1;
}

.home-page .featured {
  padding: 52px 0 64px;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0) 0%, rgba(7, 7, 8, 1) 12%, rgba(7, 7, 8, 1) 100%);
}

.home-page .featured .section-header {
  gap: 24px;
  margin-bottom: 32px;
}

.home-page .featured h2 {
  font-size: clamp(42px, 5vw, 68px);
  letter-spacing: -0.05em;
}

.home-page .featured h2 span,
.home-page .spotlight-section .section-header h2 span {
  color: var(--home-accent);
}

.home-page .featured p {
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.72);
  opacity: 1;
  line-height: 1.75;
}

.home-page .view-all {
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.home-page .view-all:hover {
  border-color: rgba(225, 29, 46, 0.34);
  background: rgba(225, 29, 46, 0.12);
  transform: translateY(-2px);
}

.home-page .slider-wrapper-outer {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.home-page .product-grid {
  padding: 14px 8px 24px;
  gap: 22px;
}

.home-page .slider-btn {
  width: 56px;
  height: 56px;
  background: rgba(10, 11, 14, 0.8);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-page .slider-btn:hover {
  background: linear-gradient(135deg, rgba(225, 29, 46, 0.26), rgba(225, 29, 46, 0.18));
  border-color: rgba(225, 29, 46, 0.32);
}

.home-page .product-card {
  background: linear-gradient(180deg, #12141a 0%, #0b0c10 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.34);
}

.home-page .product-card:hover {
  border-color: rgba(225, 29, 46, 0.34);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.home-page .product-image-container {
  background:
    radial-gradient(circle at top, #f7f2ea 0%, #ece3d7 55%, #ddd4c7 100%);
}

.home-page .btn-add-cart-floating {
  background: linear-gradient(135deg, #e11d2e 0%, #ff4a5b 100%);
  box-shadow: 0 12px 25px rgba(225, 29, 46, 0.25);
}

.home-page .card-content {
  padding: 24px 24px 22px;
}

.home-page .card-brand-label {
  color: var(--home-accent-soft);
  letter-spacing: 0.16em;
}

.home-page .product-title {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.08;
}

.home-page .card-rating-row {
  margin-top: 12px;
}

.home-page .stars-gold {
  color: #ffd271;
  letter-spacing: 0.12em;
}

.home-page .review-count-small {
  color: rgba(255, 255, 255, 0.52);
}

.home-page .price-current {
  font-size: clamp(24px, 2.6vw, 32px);
  color: #ffffff;
}

.home-page .price-old {
  color: rgba(255, 255, 255, 0.38);
}

.home-page .btn-see-details {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.home-page .btn-see-details:hover {
  background: rgba(225, 29, 46, 0.12);
  border-color: rgba(225, 29, 46, 0.34);
}

.home-page .hashtag-ticker-section {
  padding: 26px 0 32px;
  background: transparent;
}

.home-page .ticker-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.home-page .spotlight-section {
  padding: 92px 24px 96px;
  background:
    radial-gradient(circle at top right, rgba(225, 29, 46, 0.1), transparent 24%),
    linear-gradient(180deg, #09090b 0%, #040404 100%);
  border-top: none;
}

.home-page .spotlight-section .section-header {
  max-width: 760px;
  margin: 0 auto 50px;
}

.home-page .spotlight-section .section-header h2 {
  font-size: clamp(42px, 6vw, 78px);
  letter-spacing: -0.06em;
  text-transform: none;
}

.home-page .spotlight-section .section-header p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

.home-page .spotlight-grid {
  gap: 22px;
}

.home-page .spotlight-card {
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.96), rgba(9, 10, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.home-page .spotlight-card:hover {
  border-color: rgba(225, 29, 46, 0.28);
}

.home-page .footer {
  padding: 28px 24px 38px;
  background: linear-gradient(180deg, #090a0d 0%, #050505 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .footer-grid {
  gap: 28px;
  padding: 0;
}

.home-page .footer-newsletter {
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(225, 29, 46, 0.18), transparent 30%),
    linear-gradient(160deg, rgba(14, 16, 20, 0.98), rgba(10, 11, 15, 0.96));
}

.home-page .footer-brand p {
  max-width: 100%;
}

.home-page .newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-page .newsletter-form input {
  flex: 1 1 240px;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.home-page .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.home-page .newsletter-form button {
  min-height: 52px;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #e11d2e 0%, #ff3f52 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.home-page .footer-note {
  display: block;
  margin-top: 14px;
  font-size: 12px;
}

.home-page .footer-social-row {
  padding: 30px 0;
}

.home-page .footer-bottom {
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page .footer-links-row span,
.home-page .footer-copyright,
.home-page .footer-address {
  color: rgba(255, 255, 255, 0.54);
}

@media (max-width: 1024px) {
  .home-page .story-shell,
  .home-page .promise-grid {
    grid-template-columns: 1fr;
  }

  .home-page .story-copy h2 {
    max-width: none;
  }

  .home-page .story-metrics {
    grid-template-columns: 1fr;
  }

  .home-page .featured .section-header {
    padding: 0 24px;
  }
}

@media (max-width: 767px) {
  .announcement-bar,
  .home-page .announcement-bar {
    font-size: 9px;
    letter-spacing: 1.2px;
  }

  .home-page .slide {
    padding: 112px 18px 92px;
  }

  .home-page .slide.hero-has-stats {
    padding: 96px 18px 68px;
  }

  .home-page .slide::before {
    display: none;
  }

  .home-page .slide-content {
    width: min(100%, 540px);
    padding: 0;
    border-radius: 0;
  }

  .home-page .slide-content.hero-copy-tight,
  .home-page .slide-content.hero-copy-dense {
    width: min(100%, 540px);
  }

  .home-page .slide-content.hero-has-stats {
    width: min(100%, 100%);
  }

  .home-page .slide-content h1 {
    max-width: 8ch;
    font-size: clamp(44px, 14vw, 74px);
  }

  .home-page .slide-content.hero-copy-tight h1 {
    max-width: 9ch;
    font-size: clamp(40px, 12vw, 64px);
  }

  .home-page .slide-content.hero-copy-dense h1 {
    max-width: 10ch;
    font-size: clamp(36px, 10.8vw, 54px);
  }

  .home-page .slide-content.hero-has-stats h1 {
    max-width: 8.8ch;
    font-size: clamp(32px, 9.8vw, 48px);
  }

  .home-page .slide-content h2 {
    max-width: 12ch;
    font-size: clamp(22px, 6.6vw, 38px);
    letter-spacing: 0.04em;
  }

  .home-page .slide-content.hero-copy-tight h2 {
    max-width: 13.5ch;
    font-size: clamp(20px, 6vw, 32px);
  }

  .home-page .slide-content.hero-copy-dense h2 {
    max-width: 15ch;
    font-size: clamp(18px, 5.2vw, 28px);
  }

  .home-page .slide-content.hero-has-stats h2 {
    max-width: 12ch;
    font-size: clamp(17px, 5vw, 24px);
    margin-bottom: 10px;
  }

  .home-page .slide-content.hero-copy-tight p,
  .home-page .slide-content.hero-copy-dense p {
    max-width: 100%;
  }

  .home-page .slide-content.hero-has-stats p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.35;
  }

  .home-page .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .slide-content.hero-has-stats .hero-buttons {
    gap: 10px;
    margin-top: 8px;
  }

  .home-page .slide-content.hero-has-stats .btn {
    min-width: 0;
    padding: 14px 20px;
    font-size: 13px;
  }

  .home-page .btn {
    width: 100%;
  }

  .home-page .hero-stats {
    display: flex;
    width: 100%;
    gap: 12px 16px;
    padding: 0;
    max-width: 100%;
  }

  .home-page .hero-stats .hero-stat {
    min-width: 0;
    flex: 1 1 calc(50% - 16px);
    padding: 0 0 8px;
    margin-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home-page .hero-stats .hero-stat::after {
    display: none;
  }

  .home-page .slide-content.hero-copy-dense .hero-stats .hero-stat,
  .home-page .slide-content.hero-copy-tight .hero-stats .hero-stat,
  .home-page .slide-content.hero-has-stats .hero-stats .hero-stat {
    flex-basis: calc(50% - 10px);
  }

  .home-page .hero-stats div span {
    margin-top: 4px;
    text-align: left;
  }

  .home-page .brand-story,
  .home-page .spotlight-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .home-page .story-copy,
  .home-page .story-panel,
  .home-page .promise-card,
  .home-page .footer-newsletter {
    padding: 24px;
    border-radius: 24px;
  }

  .home-page .promise-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 84vw);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 4px 8px 0;
    margin-right: -16px;
    padding-right: 16px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .home-page .promise-grid::-webkit-scrollbar {
    display: none;
  }

  .home-page .promise-grid {
    scrollbar-width: none;
  }

  .home-page .promise-card {
    min-height: 0;
    padding: 24px 22px;
    scroll-snap-align: start;
  }

  .home-page .promise-card h3 {
    margin: 18px 0 14px;
    font-size: clamp(28px, 7.2vw, 42px);
    line-height: 1.04;
  }

  .home-page .promise-card p {
    font-size: 15px;
    line-height: 1.7;
  }

  .home-page .featured {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .home-page .slider-wrapper-outer {
    padding: 0;
  }

  .home-page .product-grid {
    padding: 10px 20px 26px;
  }

  .home-page .slider-btn {
    display: none;
  }

  .home-page .spotlight-section .section-header {
    margin-bottom: 36px;
  }

  .home-page .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-page .footer-social-row,
  .home-page .footer-bottom {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ============================================================ */
/* ============= PRODUCT FRAME POLISH ========================= */
/* ============================================================ */

.product-image-container {
  border: 1px solid rgba(225, 29, 46, 0.55);
  box-shadow: none;
}

.product-image-container::before,
.product-image-container::after {
  display: none;
}

.main-display-viewport {
  border: 1px solid rgba(225, 29, 46, 0.45) !important;
  box-shadow: none !important;
  background: #f3f3f3 !important;
}

.thumb-item.active {
  border-width: 1px !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7f3eb 100%) !important;
  box-shadow: 0 6px 18px rgba(225, 29, 46, 0.1) !important;
  transform: none !important;
}

.main-image-container {
  background: #f3f3f3 !important;
  box-shadow: none !important;
}

.main-image-container img,
#mainProductImage,
#mainProductVideo {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

@media (max-width: 768px) {
  .product-image-container {
    border-color: rgba(225, 29, 46, 0.45);
  }

  .main-display-viewport {
    border-color: rgba(225, 29, 46, 0.32) !important;
    box-shadow: none !important;
    background: #f3f3f3 !important;
  }

  .main-image-container {
    background: #f3f3f3 !important;
  }

  .thumb-item.active {
    border-color: rgba(225, 29, 46, 0.75) !important;
    box-shadow: none !important;
  }
}

.main-image-container:not(.gallery-item-video) {
  cursor: zoom-in;
}

:root {
  --goat-media-frame-radius: 34px;
  --goat-media-frame-bg: radial-gradient(circle at 50% 20%, #f7f3eb 0%, #efe6da 58%, #e1d6c8 100%);
  --goat-media-frame-border: 1px solid rgba(17, 17, 17, 0.05);
  --goat-media-frame-pad: clamp(8px, 1.4vw, 16px);
  --goat-media-thumb-size: 76px;
  --goat-media-thumb-gap: 12px;
  --goat-media-desktop-height: clamp(620px, 68vh, 720px);
}

.product-image-container {
  aspect-ratio: 1 / 1;
  padding: clamp(20px, 4vw, 28px);
}

.card-slider-img {
  padding: clamp(18px, 3.6vw, 24px);
  object-position: center center;
}

.main-display-viewport {
  aspect-ratio: 1 / 1;
  background: var(--goat-media-frame-bg) !important;
  border: var(--goat-media-frame-border);
  border-radius: var(--goat-media-frame-radius) !important;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.04);
}

.main-image-container img {
  padding: var(--goat-media-frame-pad);
  object-position: center center;
}

/* Final gallery balance:
   keep the PNG transparent, restore the branded frame,
   and normalize the product scale inside the frame. */
.main-display-viewport {
  background: var(--goat-media-frame-bg) !important;
}

.main-image-container {
  background: transparent !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: var(--goat-media-frame-pad) !important;
  overflow: hidden !important;
}

.main-image-container img,
#mainProductImage,
#mainProductVideo {
  min-width: auto !important;
  width: auto !important;
  max-width: 98% !important;
  height: auto !important;
  max-height: 98% !important;
  padding: 0 !important;
  margin: auto !important;
  object-fit: contain !important;
  transform-origin: center center;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .main-image-container {
    padding: 8px !important;
  }

  .main-image-container img,
  #mainProductImage,
  #mainProductVideo {
    max-width: 100% !important;
    max-height: 100% !important;
  }
}

.home-page .product-image-container {
  background: radial-gradient(circle at 50% 18%, #f7f2ea 0%, #ece3d7 55%, #ddd4c7 100%) !important;
}

.home-page .card-slider-img {
  transform: scale(1.16);
}

.home-page .product-card:hover .card-slider-img {
  transform: scale(1.22);
}

.thumb-item {
  width: var(--goat-media-thumb-size);
  height: var(--goat-media-thumb-size);
  padding: 7px;
  border-radius: 14px;
}

.thumb-item img {
  object-position: center center;
}

@media (min-width: 1101px) {
  .product-gallery-premium {
    height: var(--goat-media-desktop-height) !important;
    gap: 24px !important;
  }

  .thumbnail-strip-vertical {
    width: 88px !important;
    gap: var(--goat-media-thumb-gap) !important;
  }
}

@media (max-width: 1100px) {
  .product-gallery-premium {
    gap: 14px !important;
  }

  .thumbnail-strip-vertical {
    padding: 12px 16px !important;
    gap: 10px !important;
  }

  .thumb-item {
    width: 64px;
    height: 64px;
    padding: 6px;
  }

  .main-display-viewport {
    border-radius: 28px !important;
  }

  .main-image-container img {
    padding: 18px;
  }
}

body.product-lightbox-open {
  overflow: hidden;
}

body.product-lightbox-open .announcement-bar,
body.product-lightbox-open .navbar,
body.product-lightbox-open .whatsapp-float,
body.product-lightbox-open .mobile-sticky-cta {
  opacity: 0 !important;
  pointer-events: none !important;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(225, 29, 46, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(225, 29, 46, 0.08), transparent 24%),
    rgba(4, 4, 8, 0.96);
  backdrop-filter: blur(10px);
  z-index: 200001;
}

.product-lightbox.is-open {
  display: flex;
}

.product-lightbox-stage {
  width: min(94vw, 1220px);
  height: 100vh;
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox-media {
  width: auto;
  height: min(calc(100vh - 28px), 100%);
  max-width: min(94vw, 1220px);
  object-fit: contain;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.product-lightbox-close,
.product-lightbox-nav {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: #151515;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.product-lightbox-close:hover,
.product-lightbox-nav:hover {
  background: rgba(225, 29, 46, 0.96);
  color: #fff;
  border-color: rgba(225, 29, 46, 0.88);
  transform: translateY(-1px);
}

.product-lightbox-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.product-lightbox-nav {
  position: static;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  flex: 0 0 auto;
}

.product-lightbox-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.product-lightbox-meta {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.product-lightbox-counter {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #171717;
  min-width: 48px;
  text-align: center;
}

.product-lightbox-hint {
  font-size: 0.68rem;
  color: rgba(23, 23, 23, 0.7);
  padding-left: 4px;
  border-left: 1px solid rgba(23, 23, 23, 0.12);
}

@media (max-width: 768px) {
  .product-lightbox {
    padding: 0 14px;
    background:
      linear-gradient(180deg, rgba(5, 5, 8, 0.98) 0%, rgba(8, 8, 12, 0.96) 100%);
  }

  .product-lightbox-stage {
    width: min(100%, 360px);
    height: calc(100vh - 88px);
    padding: 62px 0 18px;
    margin: 0 auto;
  }

  .product-lightbox-close {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    font-size: 1.65rem;
  }

  .product-lightbox-meta {
    bottom: 12px;
    gap: 6px;
    padding: 6px 10px;
    width: auto;
    max-width: calc(100% - 36px);
    justify-content: center;
  }

  .product-lightbox-nav {
    width: 30px;
    height: 30px;
    font-size: 0.82rem;
  }

  .product-lightbox-counter {
    min-width: 44px;
    font-size: 0.8rem;
  }

  .product-lightbox-hint {
    display: none !important;
  }

  .product-lightbox-media {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: calc(100vh - 180px);
    border-radius: 18px;
  }
}
