@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --color-accent: #e4653a;
  --color-accent-2: #42e536;
  --color-accent-3: #4c8fe1;
  --color-accent-warm: #eba01b;
  --color-accent-soft: #f0e7e4;
  --color-accent-2-soft: #e5f0e4;
  --color-accent-3-soft: #e4e9f0;
  --color-accent-warm-soft: #f1ece3;

  --color-bg: #fff5f6;
  --color-bg-2: #ffe4e6;
  --color-bg-white: #fffafb;
  --color-bg-rgb: 255, 245, 246;
  --color-bg-white-rgb: 255, 250, 251;

  --color-text: #3b0a16;
  --color-text-secondary: #6b2435;
  --color-text-muted: #a8788a;

  --color-border: #f5d4d9;
  --color-border-light: #fae6ea;

  --color-footer-bg: #3b0a16;
  --color-footer-text: #ffe4e6;
  --color-footer-muted: #c8a5ad;
  --color-footer-link: #f5d4d9;
  --color-footer-border: rgba(255, 228, 230, 0.12);
  --color-footer-social-bg: rgba(255, 228, 230, 0.08);
  --color-footer-social-border: rgba(255, 228, 230, 0.14);

  --font-heading: 'DM Serif Text', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 3px rgba(159, 18, 57, 0.08), 0 1px 2px rgba(159, 18, 57, 0.05);
  --shadow-md: 0 4px 12px rgba(159, 18, 57, 0.10), 0 2px 4px rgba(159, 18, 57, 0.05);
  --shadow-lg: 0 14px 32px rgba(159, 18, 57, 0.12), 0 4px 12px rgba(159, 18, 57, 0.06);
  --shadow-xl: 0 24px 48px rgba(159, 18, 57, 0.15), 0 8px 20px rgba(159, 18, 57, 0.08);
}

body {
  background:
    radial-gradient(ellipse 90% 60% at 80% 0%, rgba(159, 18, 57, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 10% 30%, rgba(255, 228, 230, 0.7) 0%, transparent 60%),
    var(--color-bg);
}

/* Hero — bath spa steam gradient */
.hero {
  background:
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 255, 255, 0.85) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 20% 80%, rgba(255, 228, 230, 0.9) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(240, 231, 228, 0.7) 0%, transparent 65%),
    linear-gradient(180deg, #ffe4e6 0%, #fff5f6 60%, #fffafb 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 90%, rgba(255, 255, 255, 0.6) 0%, transparent 35%),
    radial-gradient(circle at 75% 85%, rgba(255, 255, 255, 0.45) 0%, transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.5) 0%, transparent 40%);
  filter: blur(20px);
  animation: steam-rise 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

@keyframes steam-rise {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.9; }
  50% { transform: translateY(-12px) scale(1.04); opacity: 1; }
}

.hero-badge {
  background: rgba(255, 255, 255, 0.7);
  color: #9f1239;
  border: 1px solid rgba(159, 18, 57, 0.18);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 14px rgba(159, 18, 57, 0.08);
}

.hero-title {
  color: #3b0a16;
  font-style: italic;
}

.hero-title--gradient {
  background: linear-gradient(135deg, #9f1239 0%, #be123c 50%, #e4653a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Garnet primary buttons */
.btn-primary,
.btn-cta {
  background: linear-gradient(135deg, #9f1239 0%, #be123c 100%);
  color: #fff;
  box-shadow: 0 6px 18px rgba(159, 18, 57, 0.25);
}

.btn-primary:hover,
.btn-cta:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 26px rgba(159, 18, 57, 0.35);
}

.btn-outline {
  border: 1.5px solid #9f1239;
  color: #9f1239;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: #9f1239;
  color: #fff;
  border-color: #9f1239;
}

/* Header — frosted steam glass */
.site-header {
  background: rgba(255, 250, 251, 0.78);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border-bottom: 1px solid rgba(159, 18, 57, 0.08);
}

.logo-text {
  color: #9f1239;
  font-style: italic;
}

.nav-link.active {
  background: rgba(159, 18, 57, 0.10);
  color: #9f1239;
}

.announcement-bar {
  background: linear-gradient(90deg, #9f1239 0%, #be123c 50%, #9f1239 100%);
  color: #ffe4e6;
}
.announcement-bar strong { color: #fde68a; }

/* Section titles */
.section-title {
  font-style: italic;
  color: #3b0a16;
}

/* Product cards — soft spa surfaces */
.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(159, 18, 57, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1),
              box-shadow 0.4s cubic-bezier(.4,0,.2,1),
              border-color 0.3s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 228, 230, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
}

.product-card:hover::before { opacity: 1; }

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(159, 18, 57, 0.25);
  box-shadow: 0 20px 40px rgba(159, 18, 57, 0.15);
}

.card-brand { color: #9f1239; letter-spacing: 1.4px; }
.card-title a:hover { color: #9f1239; }
.price-current { color: #3b0a16; }

/* Categories */
.category-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(159, 18, 57, 0.08);
}
.category-card:hover {
  border-color: #9f1239;
  box-shadow: 0 12px 28px rgba(159, 18, 57, 0.12);
}
.category-icon {
  background: linear-gradient(135deg, #ffe4e6 0%, #f5d4d9 100%);
  color: #9f1239;
}

/* Newsletter — spa steam */
.newsletter-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 228, 230, 0.9) 0%, transparent 60%),
    linear-gradient(135deg, #fff5f6 0%, #ffe4e6 100%);
  border-top: 1px solid rgba(159, 18, 57, 0.10);
  border-bottom: 1px solid rgba(159, 18, 57, 0.10);
}
.newsletter-text h3 { font-style: italic; color: #3b0a16; }
.newsletter-form input {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(159, 18, 57, 0.12);
}
.newsletter-form input:focus { border-color: #9f1239; }
.newsletter-form button {
  background: linear-gradient(135deg, #9f1239 0%, #be123c 100%);
}
.newsletter-form button:hover {
  background: linear-gradient(135deg, #881331 0%, #9f1239 100%);
}

/* FAQ */
.faq-section {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(255, 228, 230, 0.5) 0%, transparent 60%),
    #fff5f6;
}
.faq-item {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(159, 18, 57, 0.08);
}
.faq-item[open] { border-color: #9f1239; }
.faq-item[open] .faq-question::after { color: #9f1239; }

/* Testimonials */
.testimonials-section {
  background:
    radial-gradient(ellipse at 20% 60%, rgba(228, 233, 240, 0.6) 0%, transparent 60%),
    #fff5f6;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(159, 18, 57, 0.06);
}
.testimonial-avatar {
  background: linear-gradient(135deg, #ffe4e6, #f5d4d9);
  color: #9f1239;
}

/* Guide cards */
.guide-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(159, 18, 57, 0.08);
}
.guide-card:hover {
  border-color: var(--color-accent-warm);
  box-shadow: 0 12px 28px rgba(235, 160, 27, 0.15);
}
.guide-number {
  background: linear-gradient(135deg, var(--color-accent-warm), #d97706);
  box-shadow: 0 4px 12px rgba(235, 160, 27, 0.30);
}

/* Top picks */
.top-picks-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(241, 236, 227, 0.7) 0%, transparent 60%),
    #fff5f6;
}
.top-pick-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(159, 18, 57, 0.08);
}
.top-pick-item:hover {
  border-color: var(--color-accent-warm);
  box-shadow: 0 10px 24px rgba(235, 160, 27, 0.15);
}
.top-pick-rank {
  color: var(--color-accent-warm);
  font-style: italic;
}

/* Stats — garnet gradient */
.stats-section {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #9f1239 0%, #be123c 50%, #e4653a 100%);
}
.stat-number {
  color: #ffe4e6;
  font-style: italic;
}

/* New widgets */
.price-history-section {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 228, 230, 0.5) 0%, transparent 60%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(159, 18, 57, 0.08);
  backdrop-filter: blur(8px);
}
.chart-bar {
  background: linear-gradient(180deg, rgba(159, 18, 57, 0.25) 0%, #9f1239 100%);
}

.user-reviews-section {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(255, 228, 230, 0.5) 0%, transparent 60%),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(159, 18, 57, 0.08);
  backdrop-filter: blur(8px);
}
.reviews-big-number { color: #9f1239; font-style: italic; }
.review-card {
  background: rgba(255, 245, 246, 0.7);
  border: 1px solid rgba(159, 18, 57, 0.06);
}
.review-avatar {
  background: linear-gradient(135deg, #9f1239, #be123c);
}

.pros-cons-widget {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 228, 230, 0.6) 0%, transparent 60%),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(159, 18, 57, 0.08);
}

.delivery-widget {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255, 228, 230, 0.6) 0%, transparent 60%),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(159, 18, 57, 0.08);
}
.delivery-item svg { color: #9f1239; }

.social-proof-popup {
  background: rgba(255, 250, 251, 0.96);
  border: 1px solid rgba(159, 18, 57, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(159, 18, 57, 0.18);
}
.popup-icon {
  background: linear-gradient(135deg, #9f1239, #be123c);
}

/* Product page */
.product-title { font-style: italic; }
.product-price-block {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 228, 230, 0.6) 0%, transparent 60%),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(159, 18, 57, 0.10);
}
.price-big { color: #9f1239; }

.brand-initial {
  background: linear-gradient(135deg, #9f1239 0%, #be123c 100%);
}
.brand-name { font-style: italic; }

.trending-rank { color: #9f1239; font-style: italic; }

.card-body { flex: 1; display: flex; flex-direction: column; }

@media (max-width: 768px) {
  .hero::before { opacity: 0.5; filter: blur(14px); }
}