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

:root {
  --color-bg: #0f0c2e;
  --color-bg-2: #1e1b4b;
  --color-bg-white: #2a2560;
  --color-bg-rgb: 15, 12, 46;
  --color-bg-white-rgb: 42, 37, 96;
  --color-surface: rgba(233, 213, 255, 0.04);
  --color-surface-hover: rgba(233, 213, 255, 0.08);
  --color-text: #f3e8ff;
  --color-text-secondary: #c4b5fd;
  --color-text-muted: #8b7fb8;

  --color-accent: #92ed14;
  --color-accent-2: #1ed6ea;
  --color-accent-3: #af11ed;
  --color-accent-warm: #ed9a14;
  --color-accent-soft: #27301c;
  --color-accent-2-soft: #1c2d2f;
  --color-accent-3-soft: #2a1c30;
  --color-accent-warm-soft: #30281c;

  --color-border: rgba(233, 213, 255, 0.12);
  --color-border-light: rgba(233, 213, 255, 0.06);

  --color-footer-bg: #08061c;
  --color-footer-text: #e9d5ff;
  --color-footer-muted: #8b7fb8;
  --color-footer-link: #c4b5fd;
  --color-footer-border: rgba(233, 213, 255, 0.1);
  --color-footer-social-bg: rgba(233, 213, 255, 0.06);
  --color-footer-social-border: rgba(233, 213, 255, 0.12);

  --font-heading: 'DM Serif Display', 'Georgia', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 14px 6px 14px 6px;
  --radius-md: 22px 10px 22px 10px;
  --radius-lg: 32px 14px 32px 14px;
  --radius-xl: 48px 20px 48px 20px;

  --shadow-sm: 0 2px 6px rgba(5, 3, 20, 0.5);
  --shadow-md: 0 6px 14px rgba(5, 3, 20, 0.55);
  --shadow-lg: 0 14px 32px rgba(5, 3, 20, 0.65);
  --shadow-xl: 0 24px 50px rgba(5, 3, 20, 0.75);
}

body {
  background:
    radial-gradient(ellipse 800px 500px at 15% 10%, rgba(175, 17, 237, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 700px 600px at 85% 80%, rgba(30, 214, 234, 0.12) 0%, transparent 65%),
    var(--color-bg);
  background-attachment: fixed;
}

.logo-text,
.section-title,
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.hero-title,
.product-title,
.page-title {
  font-family: var(--font-heading);
  font-style: italic;
}

.announcement-bar {
  background: linear-gradient(90deg, #08061c, #1e1b4b, #08061c);
  color: #e9d5ff;
  border-bottom: 1px solid rgba(233, 213, 255, 0.08);
}
.announcement-bar strong { color: var(--color-accent-warm); }

.site-header {
  background: rgba(15, 12, 46, 0.85);
  border-bottom: 1px solid rgba(233, 213, 255, 0.1);
}

.nav-link.active {
  color: #e9d5ff;
  background: rgba(175, 17, 237, 0.22);
}

.hero {
  text-align: center;
  background:
    radial-gradient(ellipse 600px 400px at 50% 20%, rgba(233, 213, 255, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, #1e1b4b 0%, #0f0c2e 100%);
  overflow: hidden;
  position: relative;
}
.hero-content { text-align: center; }
.hero-actions { justify-content: center; }
.hero-subtitle { margin-left: auto; margin-right: auto; }

.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, #e9d5ff 0%, #c4b5fd 35%, transparent 60%);
  box-shadow:
    inset -40px -10px 0 -10px #1e1b4b,
    0 0 80px rgba(233, 213, 255, 0.25);
  opacity: 0.55;
  filter: blur(0.5px);
  pointer-events: none;
  animation: crescent-glow 8s ease-in-out infinite;
}

@keyframes crescent-glow {
  0%, 100% { opacity: 0.55; transform: translateY(0); }
  50% { opacity: 0.75; transform: translateY(-8px); }
}

.hero-badge {
  color: #e9d5ff;
  background: rgba(233, 213, 255, 0.08);
  border: 1px solid rgba(233, 213, 255, 0.25);
  backdrop-filter: blur(10px);
}

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

.btn-primary {
  background: linear-gradient(135deg, #af11ed 0%, #6366f1 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(175, 17, 237, 0.4);
  border: 1px solid rgba(233, 213, 255, 0.2);
}
.btn-primary:hover {
  box-shadow: 0 10px 28px rgba(175, 17, 237, 0.55);
  filter: brightness(1.1);
}

.btn-outline {
  background: rgba(233, 213, 255, 0.04);
  border: 1.5px solid var(--color-accent-2);
  color: var(--color-accent-2);
}
.btn-outline:hover {
  background: rgba(30, 214, 234, 0.12);
}

.btn-cta {
  background: linear-gradient(135deg, #af11ed 0%, #6366f1 100%);
  box-shadow: 0 3px 10px rgba(175, 17, 237, 0.35);
}
.btn-cta:hover {
  box-shadow: 0 6px 18px rgba(175, 17, 237, 0.5);
  filter: brightness(1.12);
}

.product-card {
  background: linear-gradient(160deg, rgba(42, 37, 96, 0.7) 0%, rgba(30, 27, 75, 0.85) 100%);
  border: 1px solid rgba(233, 213, 255, 0.1);
  backdrop-filter: blur(8px);
}
.product-card:hover {
  border-color: rgba(233, 213, 255, 0.3);
  box-shadow: 0 18px 40px rgba(5, 3, 20, 0.7), 0 0 24px rgba(175, 17, 237, 0.18);
}
.card-title { color: #f3e8ff; }
.card-title a:hover { color: #e9d5ff; }
.card-brand { color: #c4b5fd; }
.price-current { color: #f3e8ff; }
.price-original { color: #8b7fb8; }
.card-image-wrapper { background: #1e1b4b; }
.card-quick-view {
  background: rgba(15, 12, 46, 0.92);
  color: #e9d5ff;
}

.card-badge {
  background: linear-gradient(135deg, #af11ed, #ed9a14);
  box-shadow: 0 2px 8px rgba(175, 17, 237, 0.4);
}

.category-card {
  background: linear-gradient(160deg, rgba(42, 37, 96, 0.6) 0%, rgba(30, 27, 75, 0.8) 100%);
  border: 1px solid rgba(233, 213, 255, 0.1);
  backdrop-filter: blur(6px);
}
.category-card:hover {
  border-color: var(--color-accent-2);
  box-shadow: 0 14px 30px rgba(5, 3, 20, 0.6), 0 0 20px rgba(30, 214, 234, 0.15);
}
.category-icon {
  background: rgba(30, 214, 234, 0.12);
  color: var(--color-accent-2);
  border: 1px solid rgba(30, 214, 234, 0.25);
}
.category-card h3 { color: #f3e8ff; }

.filter-btn {
  background: rgba(42, 37, 96, 0.6);
  border-color: rgba(233, 213, 255, 0.12);
  color: #c4b5fd;
}
.filter-btn:hover { border-color: var(--color-accent-3); color: #e9d5ff; }
.filter-btn.active {
  background: linear-gradient(135deg, #af11ed, #6366f1);
  color: #fff;
  border-color: transparent;
}

.sort-select,
.category-filters select {
  background: rgba(42, 37, 96, 0.6);
  border-color: rgba(233, 213, 255, 0.12);
  color: #e9d5ff;
}

.page-btn, .page-num {
  background: rgba(42, 37, 96, 0.6);
  border-color: rgba(233, 213, 255, 0.12);
  color: #c4b5fd;
}
.page-num.active {
  background: linear-gradient(135deg, #af11ed, #6366f1);
  color: #fff;
  border-color: transparent;
}

.search-input {
  background: rgba(42, 37, 96, 0.7);
  border-color: rgba(233, 213, 255, 0.14);
  color: #f3e8ff;
}
.search-input::placeholder { color: #8b7fb8; }
.search-input:focus { border-color: var(--color-accent-3); box-shadow: 0 0 0 3px rgba(175, 17, 237, 0.18); }

.newsletter-section {
  background: linear-gradient(135deg, rgba(30, 214, 234, 0.08) 0%, rgba(175, 17, 237, 0.1) 100%);
  border-top: 1px solid rgba(233, 213, 255, 0.08);
  border-bottom: 1px solid rgba(233, 213, 255, 0.08);
}
.newsletter-text h3 { color: #f3e8ff; }
.newsletter-form input {
  background: rgba(15, 12, 46, 0.6);
  border-color: rgba(233, 213, 255, 0.16);
  color: #f3e8ff;
}
.newsletter-form input::placeholder { color: #8b7fb8; }
.newsletter-form button {
  background: linear-gradient(135deg, var(--color-accent-2), #0891b2);
  color: #0f0c2e;
}
.newsletter-form button:hover {
  background: linear-gradient(135deg, #0891b2, var(--color-accent-2));
}

.faq-section { background: linear-gradient(180deg, rgba(30, 214, 234, 0.06) 0%, rgba(15, 12, 46, 0.4) 100%); }
.faq-item {
  background: rgba(42, 37, 96, 0.55);
  border-color: rgba(233, 213, 255, 0.1);
}
.faq-item[open] { border-color: var(--color-accent-2); }
.faq-question { color: #f3e8ff; }
.faq-answer { color: #c4b5fd; }

.guide-card {
  background: linear-gradient(160deg, rgba(42, 37, 96, 0.6), rgba(30, 27, 75, 0.85));
  border-color: rgba(233, 213, 255, 0.1);
}
.guide-card:hover { border-color: var(--color-accent-warm); box-shadow: 0 12px 28px rgba(5, 3, 20, 0.6); }
.guide-number {
  background: linear-gradient(135deg, var(--color-accent-warm), #d97706);
  box-shadow: 0 3px 10px rgba(237, 154, 20, 0.35);
}
.guide-card-title { color: #f3e8ff; }

.testimonials-section { background: linear-gradient(180deg, rgba(175, 17, 237, 0.08) 0%, rgba(15, 12, 46, 0.4) 100%); }
.testimonial-card {
  background: rgba(42, 37, 96, 0.6);
  border-color: rgba(233, 213, 255, 0.1);
}
.testimonial-text { color: #d8c8ff; }
.testimonial-author strong { color: #f3e8ff; }
.testimonial-avatar {
  background: rgba(175, 17, 237, 0.18);
  color: #e9d5ff;
}

.stats-section {
  background: linear-gradient(135deg, #af11ed 0%, #6366f1 50%, #1ed6ea 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(233, 213, 255, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.stat-number { color: #fff; }
.stat-label { color: rgba(255, 255, 255, 0.9); }

.top-picks-section { background: linear-gradient(180deg, rgba(237, 154, 20, 0.06) 0%, rgba(15, 12, 46, 0.4) 100%); }
.top-pick-item {
  background: rgba(42, 37, 96, 0.55);
  border-color: rgba(233, 213, 255, 0.1);
}
.top-pick-item:hover { border-color: var(--color-accent-warm); }
.top-pick-name { color: #f3e8ff; }
.top-pick-reason { color: #c4b5fd; }
.top-pick-tag {
  background: rgba(237, 154, 20, 0.18);
  color: var(--color-accent-warm);
}

.comparison-table {
  background: rgba(42, 37, 96, 0.55);
  border-color: rgba(233, 213, 255, 0.1);
}
.comparison-table th {
  background: rgba(15, 12, 46, 0.6);
  color: #c4b5fd;
  border-bottom-color: rgba(233, 213, 255, 0.1);
}
.comparison-table td { color: #e9d5ff; border-bottom-color: rgba(233, 213, 255, 0.08); }
.comparison-table tbody tr:hover { background: rgba(233, 213, 255, 0.04); }

.breadcrumb {
  background: rgba(15, 12, 46, 0.6);
  border-bottom-color: rgba(233, 213, 255, 0.1);
}

.gallery-main {
  background: #1e1b4b;
  border-color: rgba(233, 213, 255, 0.12);
}
.thumb { background: #1e1b4b; border-color: rgba(233, 213, 255, 0.14); }

.product-price-block {
  background: linear-gradient(135deg, rgba(175, 17, 237, 0.1), rgba(30, 214, 234, 0.08));
  border-color: rgba(233, 213, 255, 0.12);
}
.price-big { color: #f3e8ff; }
.price-was { color: #8b7fb8; }
.price-save {
  background: rgba(146, 237, 20, 0.18);
  color: #92ed14;
}

.mini-badge {
  background: rgba(42, 37, 96, 0.6);
  border-color: rgba(233, 213, 255, 0.12);
  color: #c4b5fd;
}

.delivery-widget {
  background: linear-gradient(135deg, rgba(30, 214, 234, 0.08), rgba(175, 17, 237, 0.06));
  border-color: rgba(233, 213, 255, 0.12);
}
.delivery-item svg { color: var(--color-accent-2); }
.delivery-item strong { color: #f3e8ff; }
.delivery-item span { color: #c4b5fd; }

.pros-cons-widget {
  background: rgba(42, 37, 96, 0.55);
  border-color: rgba(233, 213, 255, 0.12);
}
.pros-cons-widget h3 { color: #f3e8ff; }
.pros-list li, .cons-list li { color: #c4b5fd; }
.pros-heading { color: #92ed14; }
.cons-heading { color: #ed9a14; }
.check-icon { color: #92ed14; }
.cross-icon { color: #ed9a14; }

.price-history-section {
  background: linear-gradient(160deg, rgba(42, 37, 96, 0.7), rgba(30, 27, 75, 0.85));
  border-color: rgba(233, 213, 255, 0.12);
  box-shadow: 0 10px 30px rgba(5, 3, 20, 0.5);
}
.chart-bar {
  background: linear-gradient(180deg, rgba(175, 17, 237, 0.3) 0%, #af11ed 100%);
}
.chart-bar-current {
  background: linear-gradient(180deg, rgba(146, 237, 20, 0.4) 0%, #92ed14 100%);
  box-shadow: 0 0 16px rgba(146, 237, 20, 0.45);
}
.chart-month { color: #8b7fb8; }
.chart-price-label { color: #c4b5fd; }
.chart-note {
  background: rgba(146, 237, 20, 0.1);
  color: #92ed14;
}

.user-reviews-section {
  background: linear-gradient(160deg, rgba(42, 37, 96, 0.7), rgba(30, 27, 75, 0.85));
  border-color: rgba(233, 213, 255, 0.12);
}
.reviews-summary { border-bottom-color: rgba(233, 213, 255, 0.1); }
.reviews-big-number { color: #f3e8ff; }
.review-bar-track { background: rgba(15, 12, 46, 0.6); }
.review-card {
  background: rgba(15, 12, 46, 0.5);
  border-color: rgba(233, 213, 255, 0.08);
}
.review-meta strong { color: #f3e8ff; }
.review-text { color: #c4b5fd; }
.review-avatar {
  background: linear-gradient(135deg, #af11ed, #6366f1);
}

.social-proof-popup {
  background: linear-gradient(160deg, rgba(42, 37, 96, 0.95), rgba(30, 27, 75, 0.95));
  border-color: rgba(233, 213, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(5, 3, 20, 0.7);
}
.popup-icon {
  background: linear-gradient(135deg, #92ed14, #65a30d);
  color: #0f0c2e;
}
.popup-text { color: #c4b5fd; }
.popup-text strong { color: #f3e8ff; }
.popup-time { color: #8b7fb8; }

.brand-showcase-section { background: rgba(15, 12, 46, 0.5); }
.brand-card {
  background: rgba(42, 37, 96, 0.55);
  border-color: rgba(233, 213, 255, 0.1);
}
.brand-initial {
  background: linear-gradient(135deg, #af11ed 0%, #1ed6ea 100%);
  box-shadow: 0 4px 14px rgba(175, 17, 237, 0.3);
}
.brand-name { color: #f3e8ff; }
.brand-tagline { color: #8b7fb8; }

.trending-section { background: rgba(15, 12, 46, 0.5); }
.trending-item {
  background: rgba(42, 37, 96, 0.55);
  border-color: rgba(233, 213, 255, 0.08);
}
.trending-rank { color: var(--color-accent-3); }
.trending-name { color: #f3e8ff; }
.trending-desc { color: #c4b5fd; }
.trending-hot {
  background: rgba(237, 154, 20, 0.18);
  color: var(--color-accent-warm);
}

.cookie-banner {
  background: rgba(15, 12, 46, 0.97);
  border-top-color: rgba(233, 213, 255, 0.12);
  color: #e9d5ff;
}
.cookie-banner p { color: #c4b5fd; }
.cookie-banner button {
  background: linear-gradient(135deg, #af11ed, #6366f1);
}

.banner-link {
  border-color: rgba(233, 213, 255, 0.12);
  background: rgba(42, 37, 96, 0.4);
}

.trust-section { border-bottom-color: rgba(233, 213, 255, 0.1); }
.trust-item svg { color: var(--color-accent-3); }
.trust-item strong { color: #f3e8ff; }
.trust-item span { color: #8b7fb8; }

.product-stock { color: #c4b5fd; }
.stock-text { color: #92ed14; }
.stock-indicator { background: #92ed14; box-shadow: 0 0 8px rgba(146, 237, 20, 0.6); }

.product-viewers, .card-viewers { color: #92ed14; }
.viewer-dot, .card-viewers .viewer-dot { background: #92ed14; box-shadow: 0 0 6px rgba(146, 237, 20, 0.6); }

.related-section { border-top-color: rgba(233, 213, 255, 0.1); }
.product-description { border-top-color: rgba(233, 213, 255, 0.1); }
.product-description h3 { color: #f3e8ff; }
.product-description p { color: #c4b5fd; }

.site-footer {
  background: linear-gradient(180deg, #08061c 0%, #050416 100%);
  border-top: 1px solid rgba(233, 213, 255, 0.08);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 213, 255, 0.4), transparent);
}

@keyframes star-twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.hero-badge::before {
  content: '☾';
  margin-right: 4px;
  color: #e9d5ff;
  font-size: 14px;
  animation: star-twinkle 3s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero::before { width: 140px; height: 140px; right: -20%; }
}