/* Naboo Audio - Design System
   Color Palette: Pantone Rose Quartz & Serenity
   ============================================== */

:root {
  /* Primary Colors - Pantone Rose Quartz & Serenity */
  --rose-quartz: #F7CAC9;
  --rose-quartz-light: #FBE4E4;
  --rose-quartz-dark: #E8A5A3;
  --serenity: #92A8D1;
  --serenity-light: #B8C9E4;
  --serenity-dark: #6B8BBF;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAFA;
  --light-gray: #F5F5F5;
  --medium-gray: #E0E0E0;
  --dark-gray: #333333;
  --charcoal: #1A1A2E;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--rose-quartz) 0%, var(--serenity) 100%);
  --gradient-hero: linear-gradient(180deg, var(--charcoal) 0%, #16213E 100%);
  --gradient-card: linear-gradient(145deg, rgba(247, 202, 201, 0.1) 0%, rgba(146, 168, 209, 0.1) 100%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 4rem;
  --space-2xl: 8rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--charcoal);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

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

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-2xl) 0;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-md) 0;
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.1em;
}

.logo span {
  color: var(--rose-quartz);
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--rose-quartz);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--rose-quartz);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-10px); }
  75% { transform: translateY(-30px) translateX(5px); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-tagline {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--serenity);
  margin-bottom: var(--space-md);
}

.hero-title {
  margin-bottom: var(--space-lg);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
}

/* Product Showcase */
.product-showcase {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 400px;
  margin: var(--space-xl) auto;
  perspective: 1000px;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: gentle-rotate 20s infinite ease-in-out;
}

@keyframes gentle-rotate {
  0%, 100% { transform: rotateY(-10deg) rotateX(5deg); }
  50% { transform: rotateY(10deg) rotateX(-5deg); }
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(247, 202, 201, 0.2));
}

.product-glow {
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: radial-gradient(ellipse at center, rgba(146, 168, 209, 0.3) 0%, transparent 70%);
  filter: blur(20px);
}

/* DSD Visualization */
.dsd-visualization {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 200px;
  pointer-events: none;
  opacity: 0.4;
}

.dsd-stream {
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--rose-quartz) 20%,
    var(--serenity) 50%,
    var(--rose-quartz) 80%,
    transparent 100%
  );
  animation: stream-flow 3s infinite linear;
}

@keyframes stream-flow {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* CTA Button */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: var(--gradient-primary);
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--serenity) 0%, var(--rose-quartz) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(247, 202, 201, 0.3);
}

.cta-button:hover::before {
  opacity: 1;
}

.cta-button span {
  position: relative;
  z-index: 1;
}

.cta-button .arrow {
  position: relative;
  z-index: 1;
  transition: transform var(--transition-smooth);
}

.cta-button:hover .arrow {
  transform: translateX(5px);
}

/* Features Section */
.features {
  background: linear-gradient(180deg, var(--charcoal) 0%, #0F0F1A 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-card {
  padding: var(--space-xl);
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 202, 201, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--serenity);
}

.feature-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.feature-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Technical Specs Section */
.specs-section {
  background: #0F0F1A;
}

.specs-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.spec-item {
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
}

.spec-value {
  font-size: 2rem;
  font-weight: 300;
  color: var(--rose-quartz);
  margin-bottom: var(--space-xs);
}

.spec-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* Product Page Styles */
.product-page {
  padding-top: 100px;
  min-height: 100vh;
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-lg);
}

.gallery-thumbnails {
  display: flex;
  gap: var(--space-sm);
}

.thumbnail {
  width: 80px;
  height: 80px;
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  overflow: hidden;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--rose-quartz);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--space-xs);
}

/* Product Info */
.product-info {
  padding: var(--space-lg) 0;
}

.product-badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  background: rgba(146, 168, 209, 0.2);
  color: var(--serenity);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.product-title {
  margin-bottom: var(--space-md);
}

.product-description {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Stock Status */
.stock-status {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.stock-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.stock-indicator.in-stock {
  background: #4ADE80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.stock-indicator.low-stock {
  background: #FBBF24;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.stock-indicator.out-of-stock {
  background: #F87171;
  box-shadow: 0 0 10px rgba(248, 113, 113, 0.5);
}

.stock-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.stock-count {
  font-weight: 600;
  color: var(--white);
}

.lead-time {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: var(--space-xs);
}

/* Product Options */
.product-options {
  margin-bottom: var(--space-lg);
}

.option-label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.option-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.option-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.option-card:hover {
  border-color: rgba(247, 202, 201, 0.3);
}

.option-card.selected {
  border-color: var(--rose-quartz);
  background: rgba(247, 202, 201, 0.05);
}

.option-details h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: var(--space-xs);
}

.option-details p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.option-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rose-quartz);
}

/* Buy Button */
.buy-button {
  width: 100%;
  padding: var(--space-md) var(--space-xl);
  background: var(--gradient-primary);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  margin-bottom: var(--space-md);
}

.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(247, 202, 201, 0.3);
}

.buy-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.secure-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Technical Details */
.technical-details {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.details-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
}

.details-grid {
  display: grid;
  gap: var(--space-md);
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.detail-value {
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
  text-align: right;
}

/* Footer */
.footer {
  padding: var(--space-xl) 0;
  background: #0A0A14;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-smooth);
}

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

/* Checkout Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--space-xl);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
}

.modal-title {
  font-size: 1.5rem;
}

.modal-close {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Form Styles */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xs);
}

.form-input {
  width: 100%;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.form-input:focus {
  outline: none;
  border-color: var(--rose-quartz);
  background: rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

#card-element {
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.order-summary {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.summary-row.total {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-content {
    padding: 0 var(--space-md);
  }

  .product-showcase {
    height: 300px;
  }

  .footer-content {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Blog Styles */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.blog-card:hover {
  border-color: var(--rose-quartz);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
  aspect-ratio: 16/9;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card-placeholder {
  color: var(--serenity);
  opacity: 0.5;
}

.blog-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-category {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--serenity);
  margin-bottom: var(--space-sm);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.blog-card-excerpt {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-md);
}

.blog-card-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Blog Article Styles */
.blog-article {
  max-width: 800px;
  padding-top: 2rem;
}

.blog-header {
  margin-bottom: var(--space-xl);
}

.blog-back {
  display: inline-block;
  color: var(--serenity);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  transition: color var(--transition-smooth);
}

.blog-back:hover {
  color: var(--rose-quartz);
}

.blog-header h1 {
  margin: var(--space-md) 0;
}

.blog-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.blog-meta {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

.blog-content {
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-content p {
  margin-bottom: var(--space-lg);
}

.blog-content .lead {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

.blog-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--white);
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--rose-quartz);
}

.blog-content ul,
.blog-content ol {
  margin-bottom: var(--space-lg);
  padding-left: var(--space-lg);
}

.blog-content li {
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.85);
}

.blog-content strong {
  color: var(--white);
  font-weight: 600;
}

.blog-cta {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--gradient-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  text-align: center;
}

.blog-cta p {
  margin-bottom: var(--space-md);
  color: rgba(255, 255, 255, 0.8);
}

/* Blog Images */
.blog-image {
  margin: var(--space-xl) 0;
}

.blog-image-placeholder {
  width: 100%;
  background: var(--gradient-card);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  min-height: 200px;
}

.blog-image-placeholder[data-aspect="16:9"] {
  aspect-ratio: 16/9;
}

.blog-image-placeholder[data-aspect="3:2"] {
  aspect-ratio: 3/2;
}

.blog-image-placeholder::after {
  content: "Image placeholder";
}

.blog-image img {
  width: 100%;
  border-radius: 12px;
}

.blog-image figcaption {
  margin-top: var(--space-sm);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-style: italic;
}

/* Comments Section */
.comments-section {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-section h2 {
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.comment-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.comment-form-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (max-width: 600px) {
  .comment-form-row {
    grid-template-columns: 1fr;
  }
}

.comment-input {
  width: 100%;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: all var(--transition-smooth);
}

.comment-input:focus {
  outline: none;
  border-color: var(--rose-quartz);
  background: rgba(255, 255, 255, 0.08);
}

.comment-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

textarea.comment-input {
  min-height: 100px;
  resize: vertical;
}

.comment-submit {
  padding: var(--space-sm) var(--space-lg);
  background: var(--gradient-primary);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.comment-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(247, 202, 201, 0.3);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.comment {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: var(--space-lg);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.comment-author {
  font-weight: 600;
  color: var(--rose-quartz);
}

.comment-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.comment-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.comment-reply-btn {
  background: none;
  border: none;
  color: var(--serenity);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-smooth);
}

.comment-reply-btn:hover {
  color: var(--rose-quartz);
}

.comment-replies {
  margin-top: var(--space-md);
  padding-left: var(--space-lg);
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.comment-replies .comment {
  background: rgba(255, 255, 255, 0.01);
}

.reply-form {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  display: none;
}

.reply-form.active {
  display: block;
}

.reply-form .comment-form-row {
  grid-template-columns: 1fr;
  margin-bottom: var(--space-sm);
}

.reply-form textarea.comment-input {
  min-height: 60px;
}

.reply-form-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.reply-cancel {
  padding: var(--space-sm) var(--space-md);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.reply-cancel:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.reply-submit {
  padding: var(--space-sm) var(--space-md);
  background: var(--serenity);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.reply-submit:hover {
  background: var(--rose-quartz);
}

.no-comments {
  text-align: center;
  padding: var(--space-xl);
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.reviews-title {
  font-size: 1.75rem;
  margin: 0;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.average-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.rating-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--rose-quartz);
}

.stars-display {
  display: flex;
  gap: 2px;
}

.stars-display .star {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.25rem;
}

.stars-display .star.filled {
  color: #FFD700;
}

.review-count {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Write Review Form */
.write-review {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.write-review-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  font-family: var(--font-primary);
  font-weight: 600;
}

.rating-select {
  margin-bottom: var(--space-lg);
}

.rating-select .form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.star-rating {
  display: flex;
  gap: 4px;
}

.star-rating .star {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.star-rating .star:hover,
.star-rating .star.hovered {
  color: #FFD700;
  transform: scale(1.1);
}

.star-rating .star.selected {
  color: #FFD700;
}

.review-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (max-width: 600px) {
  .review-form .form-row {
    grid-template-columns: 1fr;
  }
}

.review-form .form-group {
  margin-bottom: var(--space-md);
}

.review-form .form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.review-form .form-input {
  width: 100%;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: all var(--transition-smooth);
}

.review-form .form-input:focus {
  outline: none;
  border-color: var(--rose-quartz);
  background: rgba(255, 255, 255, 0.08);
}

.review-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.review-form textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

.review-submit {
  padding: var(--space-md) var(--space-xl);
  background: var(--gradient-primary);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.review-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(247, 202, 201, 0.3);
}

.review-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Reviews List */
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.review {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: var(--space-lg);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-author {
  font-weight: 600;
  color: var(--rose-quartz);
}

.review-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-stars .star {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.review-stars .star.filled {
  color: #FFD700;
}

.review-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.review-body {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
}

.no-reviews {
  text-align: center;
  padding: var(--space-xl);
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--serenity);
  background: rgba(146, 168, 209, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: var(--space-sm);
}

.verified-badge svg {
  width: 12px;
  height: 12px;
}

/* Products Grid (Arsenal Page) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card-link {
  text-decoration: none;
  color: inherit;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--rose-quartz);
  background: rgba(247, 202, 201, 0.03);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-card-image {
  aspect-ratio: 4/3;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.product-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--serenity);
  background: rgba(146, 168, 209, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: var(--space-sm);
  width: fit-content;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--white);
}

.product-card-description {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.price-from {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.price-amount {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--rose-quartz);
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--serenity);
  transition: all var(--transition-smooth);
}

.product-card:hover .product-card-cta {
  color: var(--rose-quartz);
  gap: var(--space-md);
}

/* Bundle Section */
.bundle-section {
  margin-top: var(--space-xl);
}

.bundle-card {
  background: linear-gradient(135deg, rgba(247, 202, 201, 0.08) 0%, rgba(146, 168, 209, 0.08) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: var(--space-xl);
  text-align: center;
}

.bundle-title {
  font-family: var(--font-display);
  font-size: 2rem;
  margin: var(--space-md) 0;
}

.bundle-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

.bundle-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.bundle-original {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
}

.bundle-price {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--rose-quartz);
}

.bundle-savings {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--serenity);
  background: rgba(146, 168, 209, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
}

/* Download Cards */
.download-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all var(--transition-smooth);
}

.download-card:hover {
  border-color: var(--rose-quartz);
  background: rgba(247, 202, 201, 0.05);
  transform: translateY(-2px);
}

.download-info h4 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.download-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-xs);
}

.download-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.download-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(146, 168, 209, 0.2);
  border-radius: 50%;
  color: var(--serenity);
  flex-shrink: 0;
  margin-left: var(--space-md);
  transition: all var(--transition-smooth);
}

.download-card:hover .download-action {
  background: var(--serenity);
  color: var(--charcoal);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
