/** Shopify CDN: Minification failed

Line 2448:0 Unexpected "<"
Line 2460:0 Unexpected "<"
Line 2468:0 Unexpected "<"
Line 2500:0 Unexpected "<"
Line 2538:0 Unexpected "<"
Line 2614:0 Unexpected "<"
Line 2636:0 Unexpected "<"

**/
/* ================================
   RADIOACTIVE LOVE - THEME STYLES
   Dark, Modern, Conversion-Focused
   ================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* === ROOT VARIABLES === */
:root {
  /* Colors */
  --color-black: #0a0a0a;
  --color-dark-bg: #121212;
  --color-dark-card: #1a1a1a;
  --color-red-primary: #dc143c;
  --color-red-dark: #8b0000;
  --color-neon-red: #ff1744;
  --color-neon-glow: rgba(255, 23, 68, 0.6);
  --color-white: #ffffff;
  --color-gray-light: #e0e0e0;
  --color-gray: #999999;
  --color-gray-dark: #333333;
  
  /* Fonts */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 5rem;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* === GLOBAL RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

/* === BUTTONS === */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-md);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-red-primary), var(--color-red-dark));
  color: var(--color-white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-glow {
  box-shadow: 0 0 20px var(--color-neon-glow),
              0 0 40px var(--color-neon-glow);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px var(--color-neon-glow),
                0 0 40px var(--color-neon-glow);
  }
  50% {
    box-shadow: 0 0 30px var(--color-neon-glow),
                0 0 60px var(--color-neon-glow);
  }
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-red-primary);
}

.btn-secondary:hover {
  background: var(--color-red-primary);
  transform: translateY(-2px);
}

/* === HEADER === */
.site-header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-left,
.header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
  gap: 1.5rem;
}

.header-center {
  flex: 0 0 auto;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
}

.hamburger {
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition-base);
}

.site-logo {
  display: block;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-neon-red), var(--color-red-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-image {
  height: 40px;
  width: auto;
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-gray-light);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-red-primary);
  transition: width var(--transition-base);
}

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

.header-icon {
  color: var(--color-gray-light);
  transition: color var(--transition-fast);
  position: relative;
}

.header-icon:hover {
  color: var(--color-white);
}

.cart-icon {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--color-red-primary);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--color-dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 2rem;
  gap: 0.5rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-nav-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--color-gray-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--color-white);
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  padding: var(--spacing-xl) 2rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-white), var(--color-gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
}

.hero-image {
  position: relative;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-dark-card), var(--color-gray-dark));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.glow-orb {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-neon-red), transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--color-neon-glow), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--color-dark-card);
  padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.trust-icon {
  color: var(--color-red-primary);
  flex-shrink: 0;
}

.trust-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-text strong {
  font-size: 0.95rem;
  color: var(--color-white);
}

.trust-text span {
  font-size: 0.85rem;
  color: var(--color-gray);
}

/* === SECTIONS === */
.featured-product-section,
.reviews-section,
.why-us-section,
.product-grid-section,
.final-cta-section {
  padding: var(--spacing-xl) 2rem;
}

.featured-container,
.reviews-container,
.why-us-container,
.product-grid-container,
.final-cta-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-white), var(--color-gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* === FEATURED PRODUCT === */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--color-dark-card);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.featured-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-red-primary), transparent);
}

.featured-product-image {
  position: relative;
}

.featured-image {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-red-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}

.featured-product-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-product-title {
  font-size: 2rem;
  color: var(--color-white);
}

.featured-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stars {
  color: #ffd700;
  font-size: 1.125rem;
  letter-spacing: 2px;
}

.rating-text,
.rating-count {
  color: var(--color-gray);
  font-size: 0.9rem;
}

.featured-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.price-compare {
  color: var(--color-gray);
  text-decoration: line-through;
  font-size: 1.125rem;
}

.price-current {
  color: var(--color-white);
  font-size: 2rem;
  font-weight: 700;
}

.price-save,
.price-badge {
  background: rgba(220, 20, 60, 0.2);
  color: var(--color-neon-red);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

.featured-description {
  color: var(--color-gray-light);
  line-height: 1.7;
}

.featured-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit,
.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gray-light);
}

.benefit-icon {
  font-size: 1.25rem;
}

.featured-product-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-add-to-cart {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.125rem;
}

.featured-view-details {
  color: var(--color-red-primary);
  font-weight: 600;
  text-align: center;
  transition: color var(--transition-fast);
}

.featured-view-details:hover {
  color: var(--color-neon-red);
}

/* === REVIEWS === */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card,
.review-item {
  background: var(--color-dark-card);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(220, 20, 60, 0.3);
}

.review-stars {
  color: #ffd700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.review-text {
  color: var(--color-gray-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.review-author strong {
  color: var(--color-white);
  font-size: 0.95rem;
}

.review-author span {
  color: var(--color-gray);
  font-size: 0.85rem;
}

/* === WHY US === */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.why-us-card {
  text-align: center;
  padding: 2rem;
  transition: transform var(--transition-base);
}

.why-us-card:hover {
  transform: translateY(-8px);
}

.why-us-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(139, 0, 0, 0.1));
  border-radius: 50%;
  color: var(--color-red-primary);
}

.why-us-title {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.why-us-description {
  color: var(--color-gray);
  line-height: 1.7;
}

/* === PRODUCT GRID === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--color-dark-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-base), border-color var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 20, 60, 0.3);
}

.product-card-link {
  display: block;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-gray-dark);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-red-primary);
  color: var(--color-white);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.product-card-content,
.product-card-info {
  padding: 1.5rem;
}

.product-card-title {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.product-card-rating {
  margin-bottom: 0.75rem;
}

.product-card-rating .stars {
  font-size: 0.85rem;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-card-price .price-compare {
  font-size: 0.9rem;
}

.product-card-price .price-current {
  font-size: 1.25rem;
}

.quick-add-form {
  padding: 0 1.5rem 1.5rem;
}

.quick-add-btn {
  width: 100%;
  padding: 0.75rem;
  background: transparent;
  color: var(--color-red-primary);
  border: 1px solid var(--color-red-primary);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.quick-add-btn:hover {
  background: var(--color-red-primary);
  color: var(--color-white);
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* === FINAL CTA === */
.final-cta-section {
  position: relative;
  overflow: hidden;
  background: var(--color-dark-card);
}

.final-cta-container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 2rem;
}

.final-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--color-white), var(--color-gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.final-cta-subtitle {
  font-size: 1.25rem;
  color: var(--color-gray);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-btn {
  font-size: 1.25rem;
  padding: 1.5rem 3.5rem;
}

.final-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-neon-glow), transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

/* === PRODUCT PAGE === */
.product-page {
  padding: var(--spacing-lg) 2rem;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-dark-card);
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.product-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition-fast);
}

.product-thumb:hover,
.product-thumb.active {
  border-color: var(--color-red-primary);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.5rem;
}

.product-title {
  font-size: 2.5rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-description {
  color: var(--color-gray-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

.product-benefits {
  background: rgba(220, 20, 60, 0.05);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(220, 20, 60, 0.1);
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-option {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.option-label {
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.95rem;
}

.option-values {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.option-values input[type="radio"] {
  display: none;
}

.option-value {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.option-values input[type="radio"]:checked + .option-value {
  background: var(--color-red-primary);
  border-color: var(--color-red-primary);
  color: var(--color-white);
}

.option-value:hover {
  border-color: var(--color-red-primary);
}

.product-quantity {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quantity-label {
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.95rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background: var(--color-dark-card);
  color: var(--color-white);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.quantity-btn:hover {
  background: var(--color-red-primary);
}

.quantity-input {
  width: 60px;
  height: 40px;
  text-align: center;
  background: var(--color-dark-bg);
  color: var(--color-white);
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  font-weight: 600;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-add-to-cart {
  width: 100%;
  padding: 1.5rem;
  font-size: 1.125rem;
}

.product-add-to-cart:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.product-trust {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
}

.product-reviews-section {
  max-width: 1400px;
  margin: var(--spacing-xl) auto 0;
  padding: var(--spacing-lg) 2rem;
  background: var(--color-dark-card);
  border-radius: var(--radius-lg);
}

.reviews-heading {
  text-align: center;
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--color-white), var(--color-gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* === COLLECTION PAGE === */
.collection-page {
  padding: var(--spacing-lg) 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.collection-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-white), var(--color-gray-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.collection-description {
  color: var(--color-gray);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

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

/* === FOOTER === */
.site-footer {
  background: var(--color-dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--spacing-lg) 2rem var(--spacing-md);
  margin-top: var(--spacing-xl);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--color-gray);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-gray-light);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--color-red-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--color-gray);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

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

.footer-newsletter-text {
  color: var(--color-gray);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer-newsletter {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-dark-card);
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 0.95rem;
}

.newsletter-input::placeholder {
  color: var(--color-gray);
}

.newsletter-input:focus {
  outline: none;
}

.newsletter-submit {
  padding: 0.75rem 1rem;
  background: var(--color-red-primary);
  color: var(--color-white);
  transition: background var(--transition-fast);
}

.newsletter-submit:hover {
  background: var(--color-red-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-payment {
  flex: 1;
}

.payment-icons {
  height: 24px;
  width: auto;
  opacity: 0.7;
}

.footer-copyright {
  color: var(--color-gray);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-legal a {
  color: var(--color-gray);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--color-white);
}

.separator {
  color: var(--color-gray-dark);
}

/* === UTILITY CLASSES === */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-container,
  .featured-product,
  .product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-us-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .collection-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .trust-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .why-us-grid,
  .reviews-grid,
  .product-reviews {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xl: 3rem;
  }

  .hero-section {
    padding: var(--spacing-lg) 1rem;
    min-height: auto;
  }

  .featured-product {
    padding: 2rem 1.5rem;
  }

  .product-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-btn,
  .hero-cta {
    width: 100%;
  }
}

/* === CART DRAWER === */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.cart-drawer.open {
  visibility: visible;
  opacity: 1;
}

.cart-drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.cart-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 450px;
  background: var(--color-dark-bg);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

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

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

.cart-drawer-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.cart-drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-gray-light);
  border: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cart-drawer-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

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

.cart-drawer-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-drawer-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--color-dark-card);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-item-title {
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  flex: 1;
}

.cart-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.cart-item-variant {
  color: var(--color-gray);
  font-size: 0.85rem;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.cart-item-qty-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-white);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition-fast);
}

.cart-item-qty-btn:hover {
  background: rgba(220, 20, 60, 0.3);
}

.cart-item-qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cart-item-qty {
  width: 40px;
  text-align: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.9rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-item-price {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1rem;
}

.cart-item-remove {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-gray);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.cart-item-remove:hover {
  background: rgba(220, 20, 60, 0.2);
  color: var(--color-red-primary);
}

.cart-drawer-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--color-gray);
}

.cart-drawer-empty svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  opacity: 0.3;
}

.cart-drawer-empty h3 {
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.cart-drawer-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--color-dark-card);
}

.cart-drawer-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.cart-drawer-subtotal span:first-child {
  color: var(--color-gray-light);
  font-weight: 600;
}

.cart-drawer-total {
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.5rem;
}

.cart-drawer-note {
  color: var(--color-gray);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.cart-drawer-checkout {
  width: 100%;
  margin-bottom: 0.75rem;
  text-align: center;
  padding: 1.25rem;
  font-size: 1rem;
}

.cart-drawer-continue {
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  font-size: 0.95rem;
}


.product-description-accordion {
  margin: 28px 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  overflow: visible !important;
}

.accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: transparent;
  color: #fff;
  border: 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.accordion-icon {
  transition: transform 0.25s ease;
}

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

.accordion-content {
  display: none;
  padding: 0 20px 20px;
  color: #b7b7b7;
  overflow: visible !important;
  max-height: none !important;
}

.accordion-content.open {
  display: block;
}

.accordion-content p,
.accordion-content ul,
.accordion-content ol {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.accordion-content ul,
.accordion-content ol {
  padding-left: 20px;
}

.accordion-content li {
  margin-bottom: 8px;
}

/* Responsive adjustments for cart drawer */
@media (max-width: 480px) {
  .cart-drawer-content {
    max-width: 100%;
  }
  
  .cart-drawer-header,
  .cart-drawer-items,
  .cart-drawer-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .rl-search-form {
  width: 100%;
  max-width: 500px;
}

.rl-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.rl-search-wrap:focus-within {
  border-color: #ff3c6e;
  box-shadow: 0 0 0 3px rgba(255,60,110,0.15);
}

.rl-search-icon {
  color: #aaa;
}

.rl-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
}

.rl-search-input::placeholder {
  color: #888;
}

.rl-search-button {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: linear-gradient(135deg, #ff3c6e, #ff7aa8);
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.rl-search-button:hover {
  box-shadow: 0 0 20px rgba(255,60,110,0.4);
}


}

.desktop-currency{margin-right:10px}
.rl-currency{display:flex;align-items:center}
.rl-currency-wrap{
  position:relative;
  display:flex;
  align-items:center;
}
.rl-currency-flag{
  position:absolute;
  left:12px;
  z-index:2;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  color:#fff;
  opacity:.9;
  pointer-events:none;
}
.rl-currency-select{
  appearance:none;
  -webkit-appearance:none;
  min-width:125px;
  padding:11px 34px 11px 42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:12px;
  font-weight:600;
  letter-spacing:.04em;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 0 0 1px rgba(255,255,255,.03),0 0 18px rgba(255,0,128,.10),0 0 30px rgba(140,82,255,.08);
  transition:.25s ease;
  cursor:pointer;
}
.rl-currency-select:hover{
  border-color:rgba(255,0,128,.35);
  box-shadow:0 0 0 1px rgba(255,255,255,.05),0 0 18px rgba(255,0,128,.18),0 0 34px rgba(140,82,255,.16);
}
.rl-currency-select:focus{
  outline:none;
  border-color:rgba(255,0,128,.5);
  box-shadow:0 0 0 2px rgba(255,0,128,.12),0 0 24px rgba(255,0,128,.22),0 0 42px rgba(140,82,255,.18);
}
.rl-currency-arrow{
  position:absolute;
  right:12px;
  top:50%;
  transform:translateY(-50%);
  color:rgba(255,255,255,.8);
  pointer-events:none;
  font-size:14px;
}
.rl-currency-select option{
  background:#111;
  color:#fff;
}
@media (max-width: 749px){
  .rl-currency-select{
    min-width:110px;
    padding:10px 30px 10px 38px;
    font-size:11px;
  }
  .rl-currency-flag{
    left:10px;
    font-size:10px;
  }
}

.rl-currency-pill{
  display:flex;
  align-items:center;
}

.rl-currency-button{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  cursor:pointer;
  transition:.2s ease;
}

.rl-currency-button:hover{
  border-color:rgba(255,0,128,.4);
  box-shadow:0 0 10px rgba(255,0,128,.2);
}

.rl-currency-hidden{
  position:absolute;
  opacity:0;
  pointer-events:none;
}


@keyframes slideInRight {
  from { transform: translateX(20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOutRight {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(20px); opacity: 0; }
}

.footer-payment {
  display:flex;
  justify-content:center;
  margin-bottom:10px;
}

.footer-payment ul {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  padding:0;
  margin:0;
  list-style:none;
}

.footer-payment svg {
  height:22px;
  width:auto;
  opacity:0.8;
  transition:.2s ease;
}

.footer-payment svg:hover {
  opacity:1;
}


.product-card-rating,
.product-rating{
  display:flex;
  align-items:center;
  gap:6px;
  margin:6px 0 10px;
  font-size:13px;
}

.rating-value{
  font-weight:600;
  color:#fff;
}

.stars{
  color:#ffcc66;
  letter-spacing:1px;
  font-size:12px;
}

.rating-count{
  opacity:.7;
  font-size:12px;
}



.urgency-badge{
  margin-top:8px;
  font-size:13px;
  font-weight:600;
  color:#ff4d6d;
  background:rgba(255,77,109,0.08);
  padding:6px 10px;
  border-radius:6px;
  display:inline-block;
}

/* === PRODUCT OPTIONS / VARIANT UI === */
.option-values {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.option-values input[type="radio"] {
  display: none;
}

.option-value {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-values input[type="radio"]:checked + .option-value {
  background: #dc143c;
  border-color: #dc143c;
  color: #fff;
}

.option-value:hover {
  border-color: #dc143c;
}

.product-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
}

.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.product-thumb {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.product-thumb:hover,
.product-thumb.active {
  border-color: #dc143c;
}

.live-urgency{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.urgency-item{
  font-size:13px;
  color:#ff4d6d;
  opacity:0.9;
}

.live-urgency{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.urgency-item{
  font-size:13px;
  color:#ff4d6d;
  opacity:.95;
}

.urgency-item:first-child{
  animation:pulseUrgency 1.8s ease-in-out infinite;
}

@keyframes pulseUrgency{
  0%,100%{transform:scale(1);opacity:.95}
  50%{transform:scale(1.03);opacity:1}
}

.grid-urgency{
  margin:4px 0 8px;
  display:flex;
  flex-direction:column;
  gap:3px;
}

.grid-urgency .urgency-item{
  font-size:11px;
  color:#ff4d6d;
  line-height:1.2;
}

.grid-urgency .urgency-item:first-child{
  color:#ff4d6d;
  font-weight:600;
  animation:softGlow 2s ease-in-out infinite;
}

@keyframes softGlow{
  0%,100%{opacity:.8}
  50%{opacity:1}
}

.grid-urgency .urgency-item:last-child{
  opacity:.6;
}

.product-description-box{
  position:relative;
  margin-top:20px;
}

.description-inner{
  max-height:180px;
  overflow:hidden;
  transition:max-height 0.4s ease;
  position:relative;
}

/* fade effect */
.description-inner::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:100%;
  height:60px;
  background:linear-gradient(to bottom, transparent, #0a0a0a);
}

.product-description-box.open .description-inner{
  max-height:1000px;
}

.product-description-box.open .description-inner::after{
  display:none;
}

.read-more-btn{
  margin-top:10px;
  background:none;
  border:none;
  color:#ff4d6d;
  font-weight:600;
  cursor:pointer;
}

body.cart-open {
  overflow: hidden;
}

/* MOBILE HEADER FIX */
@media (max-width: 768px) {
  .header-container {
    display: grid;
    grid-template-columns: 40px 44px 1fr auto;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
  }

  .header-left,
  .header-center,
  .header-right {
    min-width: 0;
  }

  .header-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .header-center {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

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

  .logo-image {
    max-width: 34px;
    height: auto;
    display: block;
  }

  .logo-text {
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
  }

  /* Hide desktop nav on mobile */
  .main-nav {
    display: none !important;
  }

  /* Keep right side compact */
  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
  }

  /* HIDE desktop currency in top row on mobile */
  .desktop-currency {
    display: none !important;
  }

  .header-icon,
  .cart-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: transparent;
    border: 0;
  }

  .header-icon svg,
  .cart-icon svg {
    width: 20px;
    height: 20px;
  }

  .cart-icon {
    position: relative;
  }

  .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    font-size: 10px;
    line-height: 17px;
    text-align: center;
  }

  /* Optional: hide account icon if still cramped */
  /* .header-right a[href="/account"] {
    display: none !important;
  } */

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 0;
  }

  .hamburger {
    width: 20px;
    height: 2px;
    display: block;
    background: #fff;
    border-radius: 999px;
  }

  /* Mobile drawer */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0a0a0a;
    padding: 18px 16px 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }

  .mobile-menu.active {
    display: block;
  }

  .mobile-nav-link {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .rl-currency-pill {
    margin-top: 16px;
  }
}

.offer-strip {
  text-align: center;
  padding: 16px;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 15px;
  background: linear-gradient(90deg, #111, #1a1a1a);
  color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 20px rgba(255,0,80,0.15);
  position: relative;
  overflow: hidden;
}

/* subtle glow animation */
.offer-strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

<style>
.bundle-trigger {
  font-size: 12px;
  margin-top: 6px;
  color: #b0b0b0;
  opacity: 0.9;
}

.product-card:hover .bundle-trigger {
  color: #fff;
  opacity: 1;
}
</style>

<style>
.bundle-note {
  margin-bottom: 10px;
  font-size: 13px;
  color: #ccc;
}
</style>

.free-shipping-progress {
  margin-bottom: 16px;
}

.free-shipping-text {
  margin: 0 0 8px;
  font-size: 13px;
  color: #ddd;
}

.free-shipping-text.success {
  color: #fff;
  font-weight: 600;
}

.free-shipping-bar {
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.free-shipping-fill {
  height: 100%;
  background: #fff;
  border-radius: 999px;
  transition: width 0.3s ease;
}

<style>
.product-ugc-video {
  padding: 28px 0;
}

.product-ugc-video__inner {
  max-width: 520px;
  margin: 0 auto;
}

.product-ugc-video__heading {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.2;
  text-align: center;
}

.product-ugc-video__subheading {
  margin: 0 0 18px;
  text-align: center;
  opacity: 0.8;
}

.product-ugc-video__embed {
  max-width: 420px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.product-ugc-video__embed video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: cover;
}
</style>

<style>
.product-delivery-card {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );

  box-shadow: 0 10px 30px rgba(0,0,0,0.22);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-delivery-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5f5f5;
  font-size: 15px;
  line-height: 1.4;
}

.product-delivery-icon {
  width: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.product-delivery-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #57d163;
  box-shadow: 0 0 0 4px rgba(87,209,99,0.12);
  flex-shrink: 0;
}

.product-delivery-row--stock span:last-child {
  color: #f5f5f5;
}

.product-delivery-row--estimate {
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: #eaeaea;
}

#shipping-date-start,
#shipping-date-end {
  font-weight: 700;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .product-delivery-card {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .product-delivery-row {
    font-size: 14px;
  }
}
</style>

<style>
.see-more-reviews-btn {
  margin-top: 12px;
  padding: 0;
  background: none;
  border: 0;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.see-more-reviews-btn:hover {
  opacity: 1;
  transform: translateY(-1px);
}
</style>

.desktop-ugc-video {
  display: block;
}

.mobile-ugc-video {
  display: none;
}

@media screen and (max-width: 768px) {
  .desktop-ugc-video {
    display: none !important;
  }

  .mobile-ugc-video {
    display: block !important;
    margin: 16px 0 20px;
  }
}