@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --color-bg: #1e1b4b;
  --color-bg-2: #15123a;
  --color-bg-white: #2a2563;
  --color-bg-rgb: 30, 27, 75;
  --color-bg-white-rgb: 42, 37, 99;
  --color-surface: rgba(255,255,255,0.04);
  --color-surface-hover: rgba(255,255,255,0.08);
  --color-text: #f1f0ff;
  --color-text-secondary: #c4c0e6;
  --color-text-muted: #8b86b8;
  --color-border: rgba(236,72,153,0.18);
  --color-border-light: rgba(255,255,255,0.06);

  --color-accent: #e46609;
  --color-accent-2: #47e257;
  --color-accent-3: #245ae9;
  --color-accent-warm: #ed7013;
  --color-accent-soft: #30241b;
  --color-accent-2-soft: #1d2e1f;
  --color-accent-3-soft: #1c212f;
  --color-accent-warm-soft: #30241c;

  --color-footer-bg: #0f0c2e;
  --color-footer-text: #f1f0ff;
  --color-footer-muted: #8b86b8;
  --color-footer-link: #c4c0e6;
  --color-footer-border: rgba(255,255,255,0.08);
  --color-footer-social-bg: rgba(236,72,153,0.12);
  --color-footer-social-border: rgba(236,72,153,0.25);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.35);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.45);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.55);
  --shadow-xl: 0 22px 48px rgba(0,0,0,0.65);

  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

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

@keyframes mesh-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, -3%) scale(1.08); }
}

@keyframes mesh-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-5%, 4%) scale(1.12); }
}

body {
  background: var(--color-bg);
}

.hero-title,
.section-title,
.product-title,
.page-title,
.logo-text,
.footer-logo {
  letter-spacing: -0.04em;
  font-weight: 700;
}

.hero-title { letter-spacing: -0.05em; }

.announcement-bar {
  background: linear-gradient(90deg, #ec4899 0%, #a3e635 100%);
  color: #1e1b4b;
  font-weight: 600;
}
.announcement-bar strong { color: #1e1b4b; }

.site-header {
  background: rgba(30, 27, 75, 0.85);
  border-bottom: 1px solid rgba(236,72,153,0.18);
}

.nav-link.active {
  color: #ec4899;
  background: rgba(236, 72, 153, 0.12);
}

.hero {
  background: #1e1b4b;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 18% 25%, rgba(236, 72, 153, 0.45) 0%, transparent 42%),
    radial-gradient(circle at 82% 30%, rgba(163, 230, 53, 0.32) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(168, 85, 247, 0.38) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(36, 90, 233, 0.30) 0%, transparent 40%);
  filter: blur(60px);
  animation: mesh-drift 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

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

.hero,
.hero-content { text-align: center; }
.hero-actions { justify-content: center; }
.hero-subtitle { margin-left: auto; margin-right: auto; }

.hero-badge {
  background: rgba(236, 72, 153, 0.15);
  color: #f9a8d4;
  border: 1px solid rgba(236, 72, 153, 0.4);
  backdrop-filter: blur(8px);
}

.hero-title {
  background: linear-gradient(135deg, #f1f0ff 0%, #ec4899 50%, #a3e635 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(236, 72, 153, 0.4);
}
.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.55);
}

.btn-outline {
  background: transparent;
  color: #a3e635;
  border-color: #a3e635;
}
.btn-outline:hover {
  background: rgba(163, 230, 53, 0.12);
  color: #a3e635;
  border-color: #a3e635;
}

.btn-cta {
  background: linear-gradient(135deg, #ec4899 0%, #ed7013 100%);
  box-shadow: 0 2px 10px rgba(236, 72, 153, 0.35);
}
.btn-cta:hover { filter: brightness(1.1); box-shadow: 0 6px 18px rgba(236, 72, 153, 0.5); }

.product-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(42,37,99,0.85) 0%, rgba(30,27,75,0.95) 100%);
  border: 1px solid rgba(236, 72, 153, 0.15);
  backdrop-filter: blur(6px);
}
.product-card:hover {
  border-color: rgba(163, 230, 53, 0.45);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(163, 230, 53, 0.18);
}
.card-body { flex: 1; display: flex; flex-direction: column; }
.card-body .btn-cta { margin-top: auto; }

.card-brand { color: #ec4899; }
.card-title a:hover { color: #a3e635; }
.price-current { color: #f1f0ff; }

.category-card {
  background: linear-gradient(180deg, rgba(42,37,99,0.85) 0%, rgba(30,27,75,0.95) 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.category-card:hover {
  border-color: #a3e635;
  box-shadow: 0 12px 28px rgba(163, 230, 53, 0.12);
}
.category-icon {
  background: rgba(163, 230, 53, 0.12);
  color: #a3e635;
}

.filter-btn {
  background: rgba(42, 37, 99, 0.6);
  border-color: rgba(255,255,255,0.08);
  color: #c4c0e6;
}
.filter-btn:hover { border-color: #ec4899; color: #ec4899; }
.filter-btn.active {
  background: linear-gradient(135deg, #ec4899, #a3e635);
  color: #1e1b4b;
  border-color: transparent;
}

.sort-select,
.category-filters select,
.search-input,
.newsletter-form input {
  background: rgba(15, 12, 46, 0.7);
  border-color: rgba(255,255,255,0.1);
  color: #f1f0ff;
}
.search-input::placeholder,
.newsletter-form input::placeholder { color: #8b86b8; }
.search-input:focus { border-color: #ec4899; box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.18); }

.page-btn, .page-num {
  background: rgba(42, 37, 99, 0.6);
  border-color: rgba(255,255,255,0.08);
  color: #c4c0e6;
}
.page-num.active {
  background: linear-gradient(135deg, #ec4899, #a3e635);
  border-color: transparent;
  color: #1e1b4b;
}

.faq-section {
  background: rgba(163, 230, 53, 0.06);
}
.faq-item {
  background: rgba(42, 37, 99, 0.7);
  border-color: rgba(255,255,255,0.08);
}
.faq-item[open] { border-color: #a3e635; }
.faq-item[open] .faq-question::after { color: #a3e635; }

.testimonials-section { background: rgba(236, 72, 153, 0.07); }
.testimonial-card {
  background: rgba(42, 37, 99, 0.8);
  border-color: rgba(255,255,255,0.08);
}
.testimonial-avatar {
  background: rgba(236, 72, 153, 0.18);
  color: #ec4899;
}

.top-picks-section { background: rgba(237, 112, 19, 0.06); }
.top-pick-item {
  background: rgba(42, 37, 99, 0.75);
  border-color: rgba(255,255,255,0.08);
}
.top-pick-item:hover { border-color: #ed7013; }
.top-pick-rank { color: #ed7013; }
.top-pick-tag {
  background: rgba(237, 112, 19, 0.18);
  color: #ed7013;
}

.guide-card {
  background: rgba(42, 37, 99, 0.8);
  border-color: rgba(255,255,255,0.08);
}
.guide-card:hover { border-color: #ed7013; box-shadow: 0 10px 24px rgba(237, 112, 19, 0.15); }
.guide-number {
  background: linear-gradient(135deg, #ed7013, #ec4899);
}

.stats-section {
  background: linear-gradient(135deg, #ec4899 0%, #a3e635 100%);
}
.stat-number { color: #1e1b4b; }
.stat-label { color: rgba(30, 27, 75, 0.75); }

.newsletter-section {
  background: rgba(15, 12, 46, 0.7);
  border-color: rgba(255,255,255,0.06);
}
.newsletter-form button {
  background: linear-gradient(135deg, #a3e635, #ec4899);
  color: #1e1b4b;
}
.newsletter-form button:hover {
  background: linear-gradient(135deg, #a3e635, #ec4899);
  filter: brightness(1.08);
}

.comparison-table {
  background: rgba(42, 37, 99, 0.75);
  border-color: rgba(255,255,255,0.08);
}
.comparison-table th {
  background: rgba(15, 12, 46, 0.7);
  color: #c4c0e6;
}
.comparison-table td { color: #c4c0e6; }
.comparison-table tbody tr:hover { background: rgba(236, 72, 153, 0.08); }

.product-price-block {
  background: rgba(15, 12, 46, 0.55);
  border-color: rgba(236, 72, 153, 0.2);
}
.price-big { color: #f1f0ff; }
.price-save {
  background: rgba(163, 230, 53, 0.18);
  color: #a3e635;
}
.gallery-main { background: rgba(15, 12, 46, 0.6); border-color: rgba(255,255,255,0.08); }
.thumb { background: rgba(15, 12, 46, 0.6); border-color: rgba(255,255,255,0.08); }
.thumb.active, .thumb:hover { border-color: #ec4899; }
.product-brand-link { color: #ec4899; }
.mini-badge {
  background: rgba(42, 37, 99, 0.7);
  border-color: rgba(255,255,255,0.08);
  color: #c4c0e6;
}

.breadcrumb {
  background: rgba(15, 12, 46, 0.6);
  border-color: rgba(255,255,255,0.06);
}

.delivery-widget {
  background: rgba(15, 12, 46, 0.65);
  border: 1px solid rgba(163, 230, 53, 0.22);
}
.delivery-item svg { color: #a3e635; }

.pros-cons-widget {
  background: rgba(15, 12, 46, 0.65);
  border: 1px solid rgba(236, 72, 153, 0.2);
}
.pros-heading { color: #a3e635; }
.cons-heading { color: #ec4899; }
.check-icon { color: #a3e635; }
.cross-icon { color: #ec4899; }

.price-history-section,
.user-reviews-section {
  background: linear-gradient(180deg, rgba(42,37,99,0.85) 0%, rgba(30,27,75,0.95) 100%);
  border: 1px solid rgba(236, 72, 153, 0.18);
}
.chart-bar {
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.25) 0%, #ec4899 100%);
}
.chart-bar-current {
  background: linear-gradient(180deg, rgba(163, 230, 53, 0.3) 0%, #a3e635 100%);
  box-shadow: 0 0 16px rgba(163, 230, 53, 0.4);
}
.chart-note {
  background: rgba(163, 230, 53, 0.12);
  color: #a3e635;
}
.review-card {
  background: rgba(15, 12, 46, 0.55);
  border-color: rgba(255,255,255,0.06);
}
.review-avatar {
  background: linear-gradient(135deg, #ec4899, #ed7013);
}
.review-bar-track { background: rgba(255,255,255,0.08); }
.verified-badge {
  background: rgba(163, 230, 53, 0.15);
  color: #a3e635;
}

.social-proof-popup {
  background: rgba(30, 27, 75, 0.95);
  border: 1px solid rgba(236, 72, 153, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}
.popup-icon {
  background: linear-gradient(135deg, #a3e635, #ec4899);
  color: #1e1b4b;
}

.cookie-banner {
  background: rgba(15, 12, 46, 0.95);
  border-color: rgba(236, 72, 153, 0.25);
  color: #f1f0ff;
}
.cookie-banner p { color: #c4c0e6; }
.cookie-banner button {
  background: linear-gradient(135deg, #ec4899, #a3e635);
  color: #1e1b4b;
}

.brand-showcase-section { background: rgba(15, 12, 46, 0.5); }
.brand-card {
  background: rgba(42, 37, 99, 0.8);
  border-color: rgba(255,255,255,0.08);
}
.brand-card:hover { border-color: #ec4899; }
.brand-initial {
  background: linear-gradient(135deg, #ec4899, #a3e635);
  color: #1e1b4b;
}

.trending-section { background: transparent; }
.trending-item {
  background: rgba(42, 37, 99, 0.7);
  border-color: rgba(255,255,255,0.06);
}
.trending-item:hover { background: rgba(42, 37, 99, 0.9); }
.trending-rank { color: #ec4899; }
.trending-hot {
  background: rgba(236, 72, 153, 0.18);
  color: #ec4899;
}

.banner-link {
  border-color: rgba(255,255,255,0.08);
  background: rgba(42, 37, 99, 0.5);
}

.trust-item svg { color: #a3e635; }

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