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

:root {
  --color-accent: #740ce9;
  --color-accent-2: #ea3f20;
  --color-accent-3: #71e050;
  --color-accent-warm: #e27d44;
  --color-accent-soft: #eae3f1;
  --color-accent-2-soft: #f1e5e3;
  --color-accent-3-soft: #e7f0e4;
  --color-accent-warm-soft: #f0e8e4;

  --color-bg: #fff5f8;
  --color-bg-2: #fce7f3;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 255, 245, 248;
  --color-bg-white-rgb: 255, 255, 255;

  --color-text: #1a0a14;
  --color-text-secondary: #4a2838;
  --color-text-muted: #8c6677;

  --color-border: #f5d6e3;
  --color-border-light: #fbe8ee;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

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

  --shadow-sm: 0 2px 6px rgba(219, 39, 119, 0.06);
  --shadow-md: 0 6px 18px rgba(219, 39, 119, 0.08);
  --shadow-lg: 0 14px 36px rgba(219, 39, 119, 0.12);
  --shadow-xl: 0 24px 56px rgba(219, 39, 119, 0.16);
}

body {
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(219, 39, 119, 0.10), transparent 60%),
    radial-gradient(ellipse 50% 35% at 10% 30%, rgba(116, 12, 233, 0.06), transparent 60%),
    var(--color-bg);
  background-attachment: fixed;
}

.hero {
  background: transparent;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20% -10% 0 -10%;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(252, 231, 243, 0.95), transparent 65%),
    radial-gradient(circle at 20% 30%, rgba(219, 39, 119, 0.18), transparent 55%),
    radial-gradient(circle at 82% 25%, rgba(116, 12, 233, 0.12), transparent 55%),
    radial-gradient(circle at 50% 90%, rgba(252, 231, 243, 0.6), transparent 60%);
  pointer-events: none;
  z-index: 0;
  animation: bloom-drift 18s ease-in-out infinite alternate;
}

@keyframes bloom-drift {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.95; }
  100% { transform: translate(-2%, 1%) scale(1.04); opacity: 1; }
}

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

.hero-badge {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: #db2777;
  border: 1px solid rgba(219, 39, 119, 0.25);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.85), 0 4px 14px rgba(219, 39, 119, 0.12);
}

.hero-title {
  font-style: italic;
  letter-spacing: -1.2px;
  background: linear-gradient(180deg, #1a0a14 0%, #db2777 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle { color: #4a2838; }

.section-title {
  font-style: italic;
  letter-spacing: -0.5px;
}

.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, #db2777, transparent);
}

.announcement-bar {
  background: linear-gradient(90deg, #1a0a14, #db2777, #1a0a14);
}
.announcement-bar strong { color: #fce7f3; }

.site-header {
  background: rgba(255, 245, 248, 0.85);
  border-bottom: 1px solid rgba(219, 39, 119, 0.12);
}

.logo-text {
  font-style: italic;
  background: linear-gradient(135deg, #1a0a14, #db2777);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link.active {
  background: #fce7f3;
  color: #db2777;
}

.btn-primary {
  background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
  box-shadow: 0 6px 20px rgba(219, 39, 119, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 28px rgba(219, 39, 119, 0.4);
}

.btn-cta {
  background: linear-gradient(135deg, #db2777, #be185d);
  box-shadow: 0 4px 14px rgba(219, 39, 119, 0.28);
}

.product-card {
  background: #ffffff;
  border: 1px solid #fce7f3;
  box-shadow: 0 0 0 1px rgba(219, 39, 119, 0.04), 0 6px 16px rgba(219, 39, 119, 0.05);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(219, 39, 119, 0.18);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
  z-index: 2;
  transition: border-color var(--transition), inset var(--transition);
}

.product-card:hover {
  border-color: rgba(219, 39, 119, 0.35);
  box-shadow: 0 0 0 1px rgba(219, 39, 119, 0.08), 0 18px 40px rgba(219, 39, 119, 0.16);
}

.product-card:hover::before {
  border-color: rgba(219, 39, 119, 0.55);
}

.card-brand {
  color: #db2777;
  font-style: italic;
  letter-spacing: 1.4px;
}

.card-image-wrapper { background: #fce7f3; }

.card-badge {
  background: linear-gradient(135deg, #db2777, #9d174d);
  box-shadow: 0 4px 12px rgba(219, 39, 119, 0.35);
}

.price-current { color: #1a0a14; }

.category-card {
  background: #ffffff;
  border: 1px solid #fce7f3;
  position: relative;
}
.category-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(219, 39, 119, 0.25);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.category-card:hover {
  border-color: rgba(219, 39, 119, 0.35);
  box-shadow: 0 16px 36px rgba(219, 39, 119, 0.14);
}
.category-icon {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
  color: #db2777;
  box-shadow: inset 0 0 0 2px #ffffff, 0 0 0 1px rgba(219, 39, 119, 0.2);
}

.newsletter-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(219, 39, 119, 0.10), transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(252, 231, 243, 0.9), transparent 60%),
    #fff5f8;
  border-color: rgba(219, 39, 119, 0.12);
}
.newsletter-form button {
  background: linear-gradient(135deg, #db2777, #be185d);
}

.faq-section { background: linear-gradient(180deg, #fff5f8, #fce7f3); }
.faq-item { border-color: rgba(219, 39, 119, 0.15); }
.faq-item[open] { border-color: #db2777; box-shadow: 0 8px 22px rgba(219, 39, 119, 0.10); }
.faq-item[open] .faq-question::after { color: #db2777; }

.testimonials-section { background: linear-gradient(180deg, #fff5f8, #f9d6e6); }
.testimonial-card {
  background: #ffffff;
  border: 1px solid rgba(219, 39, 119, 0.12);
  position: relative;
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(219, 39, 119, 0.14);
  font-style: italic;
}
.testimonial-avatar {
  background: linear-gradient(135deg, #db2777, #9d174d);
  color: #fff;
}

.guide-section { background: linear-gradient(180deg, #fff5f8, #fbe8ee); }
.guide-card {
  background: #ffffff;
  border: 1px solid #fce7f3;
}
.guide-number {
  background: linear-gradient(135deg, #db2777, #be185d);
  box-shadow: 0 4px 12px rgba(219, 39, 119, 0.3);
}

.top-picks-section { background: linear-gradient(180deg, #fce7f3, #fff5f8); }
.top-pick-item {
  background: #ffffff;
  border: 1px solid rgba(219, 39, 119, 0.12);
}
.top-pick-item:hover { border-color: #db2777; }
.top-pick-rank {
  background: linear-gradient(135deg, #db2777, #9d174d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.top-pick-tag {
  background: #fce7f3;
  color: #db2777;
}

.stats-section {
  background: linear-gradient(135deg, #db2777 0%, #9d174d 50%, #740ce9 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(252, 231, 243, 0.25), transparent 50%);
  pointer-events: none;
}
.stat-number { font-style: italic; }

.comparison-table {
  border: 1px solid rgba(219, 39, 119, 0.15);
}
.comparison-table th { background: #fce7f3; color: #9d174d; }

.filter-btn:hover { border-color: #db2777; color: #db2777; }
.filter-btn.active { background: #db2777; border-color: #db2777; }

.page-num.active { background: #db2777; border-color: #db2777; }

.site-footer {
  background: linear-gradient(180deg, #1a0a14 0%, #2a0f1c 100%);
  color: #fce7f3;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #db2777, transparent);
}
.footer-logo {
  font-style: italic;
  color: #fce7f3;
}
.footer-col h4 { color: #f9a8d4; }
.footer-col a { color: #fbcfe8; }
.footer-col a:hover { color: #ffffff; }
.social-links a:hover { background: #db2777; border-color: #db2777; }

.price-history-section,
.user-reviews-section {
  background: #ffffff;
  border: 1px solid #fce7f3;
  position: relative;
}
.price-history-section::before,
.user-reviews-section::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(219, 39, 119, 0.12);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.chart-bar {
  background: linear-gradient(180deg, #fbcfe8 0%, #db2777 100%);
}
.chart-bar-current {
  background: linear-gradient(180deg, #db2777 0%, #9d174d 100%);
  box-shadow: 0 0 14px rgba(219, 39, 119, 0.35);
}
.reviews-big-number {
  font-style: italic;
  background: linear-gradient(135deg, #db2777, #9d174d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.review-avatar {
  background: linear-gradient(135deg, #db2777, #9d174d);
}

.pros-cons-widget {
  background: #fff5f8;
  border: 1px solid rgba(219, 39, 119, 0.15);
}

.delivery-widget {
  background: #fff5f8;
  border: 1px solid rgba(219, 39, 119, 0.15);
}
.delivery-item svg { color: #db2777; }

.social-proof-popup {
  background: #ffffff;
  border: 1px solid rgba(219, 39, 119, 0.2);
  box-shadow: 0 18px 42px rgba(219, 39, 119, 0.22);
}
.popup-icon {
  background: linear-gradient(135deg, #db2777, #9d174d);
}

.brand-card {
  background: #ffffff;
  border: 1px solid #fce7f3;
}
.brand-initial {
  background: linear-gradient(135deg, #db2777, #740ce9);
}

.trending-item {
  background: #fff5f8;
  border: 1px solid rgba(219, 39, 119, 0.1);
}
.trending-rank {
  color: #db2777;
  font-style: italic;
}

.product-price-block {
  background: linear-gradient(135deg, #fff5f8, #fce7f3);
  border-color: rgba(219, 39, 119, 0.18);
}
.price-big { color: #1a0a14; }
.price-was { color: #8c6677; }
.price-save {
  background: #fce7f3;
  color: #be185d;
}

.product-title {
  font-style: italic;
  letter-spacing: -0.3px;
}

@media (max-width: 768px) {
  .hero::before { inset: -10% 0 0 0; }
  .product-card::before { inset: 4px; }
}