/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lato:wght@300;400;500;600;700&display=swap');

/* CSS Variables & Theme Setup - New Luxury Rose Gold Theme */
:root {
  /* Luxury Rose Gold & Deep Purple Palette */
  --color-primary: #4A2040;        /* Deep Purple/Burgundy */
  --color-secondary: #6B3A5C;      /* Rich Plum */
  --color-accent: #D4A574;         /* Rose Gold */
  --color-accent-light: #E8C9A0;   /* Light Gold */
  --color-accent-dark: #B8875A;    /* Deep Gold */
  --color-rose: #C47F7F;           /* Dusty Rose */
  --color-rose-light: #E5B4B4;     /* Soft Rose */

  /* Neutral Palette */
  --color-bg-light: #FAF8F7;       /* Luxury Cream */
  --color-bg-cream: #F5F0ED;       /* Warm Stone */
  --color-text-dark: #2D1F2D;      /* Deep Charcoal Purple */
  --color-text-muted: #7A6B7A;     /* Muted Purple-Gray */
  --color-white: #ffffff;
  --color-border: rgba(74, 32, 64, 0.12);
  --color-success: #4A7C59;        /* Emerald Success */
  --color-error: #9B2C2C;          /* Deep Crimson Error */

  /* Fonts */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Lato', sans-serif;

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

  /* Shadows & Depth */
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.02);
  --shadow-medium: 0 10px 30px rgba(74, 32, 64, 0.08);
  --shadow-layered:
    0 1px 2px rgba(0,0,0,0.01),
    0 2px 4px rgba(0,0,0,0.01),
    0 4px 8px rgba(0,0,0,0.02),
    0 8px 16px rgba(0,0,0,0.02),
    0 16px 32px rgba(0,0,0,0.03);
  --shadow-accent: 0 8px 24px rgba(212, 165, 116, 0.25);

  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Glassmorphism */
  --glass-bg: rgba(250, 248, 247, 0.92);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: 16px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Typography Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.25;
}

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

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

p {
  margin-bottom: 1rem;
}

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

/* Reusable Utility Classes & Structures */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.text-center {
  text-align: center;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-rose));
  margin: 1rem auto;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-lg) auto;
}

/* Premium Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity var(--transition-slow) ease, visibility var(--transition-slow) ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  width: 220px;
}

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.preloader-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.preloader-progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-rose-light), var(--color-accent));
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite linear;
  border-radius: 3px;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.preloader-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Affiliate Disclosure Bar */
.affiliate-bar {
  width: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  padding: 0.55rem var(--space-md);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.4;
  position: relative;
  z-index: 1001;
}

.affiliate-bar strong {
  font-weight: 600;
  color: var(--color-accent-light);
}

/* Header & Navigation styling */
header {
  position: fixed;
  top: 45px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color var(--transition-smooth), box-shadow var(--transition-smooth), padding var(--transition-smooth);
  padding: 1.5rem 0;
}

header.sticky-header {
  top: 0;
  background-color: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.logo-dot {
  display: none;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-dark);
  position: relative;
  padding: 0.25rem 0;
  letter-spacing: 0.03em;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--color-accent-dark);
}

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

/* Hamburger & Drawer styles */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 6px 0;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(74, 32, 64, 0.4);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: -340px;
  width: 340px;
  height: 100%;
  background-color: var(--color-bg-light);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
  z-index: 1060;
  padding: 5rem 2.5rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
}

.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  padding: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.mobile-nav-close:hover {
  background: rgba(74, 32, 64, 0.08);
  color: var(--color-accent-dark);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  margin-bottom: 2rem;
}

.mobile-nav-logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text-dark);
  display: block;
}

.mobile-nav-link.active, .mobile-nav-link:hover {
  color: var(--color-accent-dark);
}

/* Button & CTA styles */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 165, 116, 0.35);
}

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

.btn-outline {
  display: inline-block;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background-color: transparent;
  padding: 0.9rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1rem;
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, var(--color-bg-light) 60%, rgba(196, 127, 127, 0.05) 100%);
  z-index: -1;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 50px;
}

.hero-title {
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-weight: 300;
}

.hero-price-wrapper {
  margin-bottom: 2rem;
  padding: 1rem 1.5rem;
  background: var(--color-white);
  border-radius: 8px;
  display: inline-block;
  box-shadow: var(--shadow-subtle);
}

.hero-price-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  display: block;
  margin-bottom: 0.25rem;
}

.hero-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--color-primary);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-container {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--color-white);
}

.hero-img {
  width: 100%;
  display: block;
  height: auto;
  transition: transform 0.8s ease;
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.05);
}

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-rose-light));
  border-radius: 50%;
  opacity: 0.3;
  z-index: -1;
}

/* Product Showcase & Gallery */
.product-showcase {
  padding: 6rem 0;
  background-color: var(--color-bg-cream);
}

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

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

.gallery-main-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--color-white);
  margin-bottom: 1rem;
}

.gallery-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--color-white);
  display: block;
  transition: transform 0.6s ease;
  padding: 1rem;
}

.gallery-main-img:hover {
  transform: scale(1.04);
}

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

.gallery-thumb-btn {
  background: none;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-white);
  transition: border-color var(--transition-fast);
}

.gallery-thumb-btn.active {
  border-color: var(--color-accent);
}

.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-info {
  padding-top: 1rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 165, 116, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--color-text-muted);
}

.stars {
  display: flex;
  color: var(--color-accent);
  gap: 2px;
}

.product-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.product-title {
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
}

.product-description {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Tabbed Specifications Component */
.specs-tabs-container {
  margin: 2rem 0;
}

.specs-tabs-headers {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.specs-tab-btn {
  background: none;
  border: none;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color var(--transition-fast);
}

.specs-tab-btn:hover {
  color: var(--color-primary);
}

.specs-tab-btn.active {
  color: var(--color-primary);
}

.specs-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-rose));
}

.specs-tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.specs-tab-content.active {
  display: block;
}

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

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

.specs-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.specs-label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.specs-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.price-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: var(--shadow-subtle);
}

.price-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.5rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-current {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--color-primary);
}

.price-original {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: var(--color-text-muted);
}

/* Editorial Section */
.editorial-section {
  padding: 7rem 0;
}

.editorial-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.editorial-quote {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-medium);
  font-style: italic;
}

.editorial-quote p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.7;
  color: var(--color-primary);
  margin: 0;
}

.editorial-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.editorial-action {
  margin-top: 2rem;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-bg-cream) 0%, var(--color-bg-light) 100%);
}

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

.feature-card {
  padding: 2rem;
  background: var(--color-white);
  border-radius: 12px;
  text-align: center;
  transition: all var(--transition-smooth);
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1), rgba(196, 127, 127, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem auto;
  color: var(--color-accent-dark);
}

.feature-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.feature-description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-rose) 100%);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(212, 165, 116, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.cta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-accent-light);
  display: block;
  margin-bottom: 1rem;
}

.cta-title {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
  font-weight: 300;
}

.cta-section .btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
}

.cta-section .btn-primary:hover {
  background: var(--color-accent-light);
}

/* Cookie Consent Popup */
.cookie-popup {
  position: fixed;
  bottom: -400px;
  left: var(--space-md);
  max-width: 420px;
  width: calc(100% - 2 * var(--space-md));
  z-index: 10000;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  transition: bottom var(--transition-slow);
}

.cookie-popup.show {
  bottom: var(--space-md);
}

.cookie-container h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.cookie-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
}

.cookie-accept {
  background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
  color: var(--color-white);
  border: none;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.cookie-reject {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.cookie-reject:hover {
  background: var(--color-bg-cream);
}

/* Contact Page Form & Styling */
.contact-section {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
}

.contact-info-card {
  padding: 2.5rem;
  background: var(--color-bg-cream);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  text-align: center;
  margin: 0 auto;
  max-width: 500px;
}

.contact-info-title {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.contact-item p, .contact-item a {
  font-size: 0.95rem;
  color: var(--color-text-dark);
  line-height: 1.6;
}

.contact-form-card {
  padding: 2.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-bg-light);
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-checkbox-label {
  display: flex;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox-label input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-accent);
}

.contact-alert {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  display: none;
}

.contact-alert-success {
  background: rgba(74, 124, 89, 0.1);
  border: 1px solid rgba(74, 124, 89, 0.3);
  color: var(--color-success);
}

.contact-alert-error {
  background: rgba(155, 44, 44, 0.1);
  border: 1px solid rgba(155, 44, 44, 0.3);
  color: var(--color-error);
}

/* Legal Pages Styling */
.legal-section {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--color-text-dark);
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1.2rem;
}

.legal-content ul {
  list-style-type: square;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.6rem;
}

/* Footer Section */
footer {
  background: var(--color-primary);
  color: var(--color-bg-light);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--color-bg-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
  color: var(--color-accent);
}

.footer-company-info {
  margin-bottom: 1.5rem;
  color: rgba(250, 248, 247, 0.7);
  line-height: 1.7;
}

.footer-company-info strong {
  display: block;
  color: var(--color-bg-light);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.footer-description {
  color: rgba(250, 248, 247, 0.6);
  line-height: 1.7;
  max-width: 320px;
}

footer h4 {
  color: var(--color-bg-light);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

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

.footer-links-list a {
  color: rgba(250, 248, 247, 0.7);
}

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

.footer-bottom {
  border-top: 1px solid rgba(250, 248, 247, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(250, 248, 247, 0.5);
  margin: 0;
  text-align: center;
}

.affiliate-disclaimer {
  font-size: 0.75rem;
  font-style: italic;
  max-width: 450px;
  text-align: right;
}

/* Review Page Styles */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.review-hero {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, var(--color-bg-light) 60%);
  padding-bottom: 4rem;
}

.review-hero .container {
  text-align: center;
}

.review-author-info {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 0;
  margin: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.review-article {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--color-text-dark);
}

.review-article h2 {
  margin: 2.5rem 0 1rem 0;
  font-size: 1.6rem;
}

.review-article h3 {
  margin: 2rem 0 0.75rem 0;
  font-size: 1.3rem;
}

.review-article p {
  margin-bottom: 1.5rem;
  text-align: justify;
}

.review-img-wrapper {
  margin: 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.split-section {
  display: grid;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.layout-img-left {
  grid-template-columns: 1fr 1fr;
}

.layout-img-right {
  grid-template-columns: 1fr 1fr;
}

.split-section .review-img-wrapper {
  margin: 0;
}

.review-article img {
  width: 100%;
  display: block;
}

.review-sidebar .review-summary-box {
  padding: 2rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  position: sticky;
  top: 100px;
}

.score-badge-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: var(--shadow-accent);
}

.score-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.score-lbl {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pro-con-section {
  margin-top: 1.5rem;
}

.pro-con-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pro-list, .con-list {
  list-style: none;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.pro-list li, .con-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.pro-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
}

.con-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  background: var(--color-error);
  border-radius: 50;
}

/* Responsive Design */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .review-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .split-section {
    grid-template-columns: 1fr !important;
  }
  
  .layout-img-right .split-text {
    order: 2;
  }
  
  .layout-img-right .review-img-wrapper {
    order: 1;
  }

  .product-gallery {
    position: static;
  }

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

@media (max-width: 767px) {
  :root {
    --space-md: 1.25rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
  }

  body, html {
    overflow-x: hidden;
  }

  h1, h2, h3, h4, h5, h6, p, li, span, a, label {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Show hamburger, hide desktop nav */
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  nav ul.nav-menu {
    display: none;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-content .btn-outline {
    width: 100%;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  footer {
    padding: var(--space-lg) 0 var(--space-md) 0;
  }

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

  .footer-description {
    max-width: 100%;
  }

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

  .affiliate-disclaimer {
    text-align: left;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .gallery-thumbs {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .specs-grid-list {
    grid-template-columns: 1fr;
  }

  .cookie-popup {
    left: var(--space-xs);
    width: calc(100% - 2 * var(--space-xs));
    bottom: -420px;
    padding: 1.25rem;
  }

  .cookie-popup.show {
    bottom: var(--space-xs);
  }

  .cookie-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cookie-btn {
    width: 100%;
  }
}
