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

:root {
  --color-bg: #ffffff;
  --color-bg-2: #f4f4f4;
  --color-bg-white: #ffffff;
  --color-bg-rgb: 255, 255, 255;
  --color-bg-white-rgb: 255, 255, 255;
  --color-surface: rgba(0,0,0,0.03);
  --color-surface-hover: rgba(0,0,0,0.06);
  --color-text: #000000;
  --color-text-secondary: #2a2a2a;
  --color-text-muted: #7a7a7a;
  --color-border: #000000;
  --color-border-light: #e5e5e5;

  --color-accent: #0bd8e7;
  --color-accent-2: #ba43e2;
  --color-accent-3: #e1824b;
  --color-accent-warm: #eab20e;
  --color-accent-soft: #e3f1f2;
  --color-accent-2-soft: #ede4f0;
  --color-accent-3-soft: #f0e9e4;
  --color-accent-warm-soft: #f1eee3;

  --color-footer-bg: #000000;
  --color-footer-text: #ffffff;
  --color-footer-muted: #8a8a8a;
  --color-footer-link: #d4d4d4;
  --color-footer-border: rgba(255,255,255,0.15);
  --color-footer-social-bg: rgba(255,255,255,0.06);
  --color-footer-social-border: rgba(255,255,255,0.2);

  --font-heading: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

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

  --shadow-xs: 0 1px 0 rgba(0,0,0,0.08);
  --shadow-sm: 0 1px 0 rgba(0,0,0,0.12);
  --shadow-md: 2px 2px 0 #000000;
  --shadow-lg: 4px 4px 0 #000000;
  --shadow-xl: 6px 6px 0 #3b82f6;
}

body {
  font-feature-settings: 'ss01', 'cv11';
  letter-spacing: -0.01em;
}

.announcement-bar {
  background: #000000;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
  border-bottom: 1px solid #3b82f6;
}
.announcement-bar strong { color: #3b82f6; }

.site-header {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #000000;
}
.logo-text {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  font-size: 20px;
}
.nav-link {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 0;
  padding: 6px 14px;
}
.nav-link:hover { color: #3b82f6; background: transparent; }
.nav-link.active {
  color: #ffffff;
  background: #000000;
  border-radius: 0;
}

.hero {
  background: #ffffff;
  border-bottom: 1px solid #000000;
  text-align: center;
}
.hero-content { text-align: center; }
.hero-actions { justify-content: center; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 79px, rgba(0,0,0,0.04) 79px, rgba(0,0,0,0.04) 80px);
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  border: none;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 14px;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -2px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.92;
}
.hero-title::after {
  content: '.';
  color: #3b82f6;
}
.hero-subtitle {
  font-size: 16px;
  color: #2a2a2a;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.btn { border-radius: 0; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.btn-primary {
  background: #000000;
  color: #ffffff;
  box-shadow: 4px 4px 0 #3b82f6;
  border: 1px solid #000000;
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #3b82f6;
  filter: none;
  background: #3b82f6;
  border-color: #3b82f6;
}
.btn-outline {
  background: #ffffff;
  color: #000000;
  border: 1.5px solid #000000;
}
.btn-outline:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.btn-cta {
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  border: 1px solid #000000;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: none;
}
.btn-cta:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  filter: none;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0 #000000;
}

.section-title {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -1px;
  font-size: 42px;
}
.section-title::after {
  content: '.';
  color: #3b82f6;
}
.section-subtitle {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 #3b82f6;
  border-color: #000000;
}
.card-image-wrapper {
  border-bottom: 1px solid #000000;
  background: #f4f4f4;
}
.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
}
.card-brand {
  color: #3b82f6;
  font-weight: 800;
  letter-spacing: 2px;
}
.card-title {
  font-weight: 700;
  letter-spacing: -0.2px;
}
.card-title a:hover { color: #3b82f6; }
.card-badge {
  background: #3b82f6;
  border-radius: 0;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.card-quick-view {
  background: rgba(0,0,0,0.9);
  letter-spacing: 2px;
}
.price-current {
  font-weight: 900;
  letter-spacing: -0.5px;
}

.category-card {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
}
.category-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 #3b82f6;
  border-color: #000000;
}
.category-icon {
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  width: 64px;
  height: 64px;
}
.category-card h3 {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.filter-btn {
  border-radius: 0;
  border: 1px solid #000000;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 11px;
}
.filter-btn:hover { color: #3b82f6; border-color: #3b82f6; }
.filter-btn.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.sort-select,
.category-filters select,
.search-input,
.newsletter-form input {
  border-radius: 0;
  border: 1px solid #000000;
}
.search-input:focus { border-color: #3b82f6; box-shadow: 0 0 0 2px #3b82f6; }

.newsletter-section {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}
.newsletter-text h3 {
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.newsletter-text p { color: #d4d4d4; }
.newsletter-form input {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
}
.newsletter-form input:focus { border-color: #3b82f6; }
.newsletter-form button {
  background: #3b82f6;
  color: #ffffff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.newsletter-form button:hover {
  background: #ffffff;
  color: #000000;
  transform: none;
}

.faq-section { background: #f4f4f4; }
.faq-item {
  border: 1px solid #000000;
  border-radius: 0;
  background: #ffffff;
}
.faq-item[open] { border-color: #3b82f6; }
.faq-question { text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; font-size: 14px; }
.faq-item[open] .faq-question::after { color: #3b82f6; }

.guide-card {
  border: 1px solid #000000;
  border-radius: 0;
  background: #ffffff;
}
.guide-card:hover {
  box-shadow: 4px 4px 0 #3b82f6;
  border-color: #000000;
}
.guide-number {
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  font-family: var(--font-heading);
}
.guide-card-title { text-transform: uppercase; letter-spacing: 0.5px; font-weight: 800; }

.testimonials-section { background: #f4f4f4; }
.testimonial-card {
  border: 1px solid #000000;
  border-radius: 0;
  background: #ffffff;
}
.testimonial-stars { color: #3b82f6; }
.testimonial-avatar {
  background: #000000;
  color: #ffffff;
  border-radius: 0;
}

.comparison-table {
  border-radius: 0;
  border: 1px solid #000000;
}
.comparison-table th {
  background: #000000;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 1.5px;
}
.comparison-table th,
.comparison-table td { border-bottom: 1px solid #000000; }

.stats-section {
  background: #000000;
  color: #ffffff;
  border-top: 1px solid #3b82f6;
  border-bottom: 1px solid #3b82f6;
}
.stat-number {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: -1px;
}
.stat-label {
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.top-picks-section { background: #f4f4f4; }
.top-pick-item {
  border: 1px solid #000000;
  border-radius: 0;
  background: #ffffff;
}
.top-pick-item:hover {
  box-shadow: 4px 4px 0 #3b82f6;
  border-color: #000000;
}
.top-pick-rank {
  color: #3b82f6;
  font-weight: 900;
  font-size: 32px;
}
.top-pick-name { text-transform: uppercase; letter-spacing: 0.5px; font-weight: 800; }
.top-pick-tag {
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-card {
  border: 1px solid #000000;
  border-radius: 0;
}
.brand-card:hover { box-shadow: 4px 4px 0 #3b82f6; }
.brand-initial {
  background: #000000;
  border-radius: 0;
}
.brand-name { text-transform: uppercase; letter-spacing: 1px; font-weight: 800; }

.trending-item {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
}
.trending-item:hover { transform: translateX(4px); box-shadow: 3px 3px 0 #3b82f6; }
.trending-rank { color: #3b82f6; font-weight: 900; }
.trending-name { text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.trending-hot {
  background: #3b82f6;
  color: #ffffff;
  border-radius: 0;
}

.banner-link {
  border: 1px solid #000000;
  border-radius: 0;
  box-shadow: 3px 3px 0 #000000;
}
.banner-link:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #3b82f6;
}

.page-btn, .page-num {
  border-radius: 0;
  border: 1px solid #000000;
  font-weight: 700;
}
.page-btn:hover, .page-num:hover { color: #3b82f6; border-color: #3b82f6; }
.page-num.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.product-page .product-title {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -1px;
}
.product-brand-link { color: #3b82f6; }
.gallery-main, .thumb {
  border: 1px solid #000000;
  border-radius: 0;
}
.thumb.active, .thumb:hover { border-color: #3b82f6; }
.gallery-badge {
  background: #3b82f6;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-price-block {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
}
.price-big { font-weight: 900; letter-spacing: -1px; }
.price-save {
  background: #3b82f6;
  color: #ffffff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mini-badge {
  border-radius: 0;
  border: 1px solid #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 11px;
}

.price-history-section,
.user-reviews-section {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
  box-shadow: 4px 4px 0 #000000;
}
.price-history-section h3,
.user-reviews-section h3 {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.chart-bar {
  background: #000000;
  border-radius: 0;
}
.chart-bar-current {
  background: #3b82f6;
  box-shadow: none;
}
.chart-note {
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.reviews-big-number { font-weight: 900; letter-spacing: -2px; }
.review-bar-track { background: #f4f4f4; border-radius: 0; }
.review-bar-fill { background: #3b82f6; border-radius: 0; }
.review-card {
  background: #f4f4f4;
  border: 1px solid #000000;
  border-radius: 0;
}
.review-avatar {
  background: #000000;
  border-radius: 0;
}
.review-stars { color: #3b82f6; }
.verified-badge {
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pros-cons-widget {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
}
.pros-cons-widget h3 { text-transform: uppercase; font-weight: 800; letter-spacing: -0.3px; }
.pros-heading, .cons-heading { text-transform: uppercase; letter-spacing: 1px; }
.check-icon { color: #3b82f6; }

.delivery-widget {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
}
.delivery-item svg { color: #3b82f6; }
.delivery-item strong { text-transform: uppercase; letter-spacing: 0.5px; }

.social-proof-popup {
  background: #ffffff;
  border: 1px solid #000000;
  border-radius: 0;
  box-shadow: 4px 4px 0 #3b82f6;
}
.popup-icon {
  background: #3b82f6;
  border-radius: 0;
}
.popup-text strong { text-transform: uppercase; letter-spacing: 0.5px; }

.site-footer {
  background: #000000;
  color: #ffffff;
  border-top: 1px solid #3b82f6;
}
.footer-logo {
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.footer-col h4 {
  color: #3b82f6;
  letter-spacing: 2px;
}
.social-links a {
  border-radius: 0;
  background: rgba(255,255,255,0.06);
}
.social-links a:hover {
  background: #3b82f6;
  border-color: #3b82f6;
}

.cookie-banner {
  background: #ffffff;
  border-top: 2px solid #000000;
  border-radius: 0;
}
.cookie-banner button {
  background: #000000;
  color: #ffffff;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.cookie-banner button:hover { background: #3b82f6; filter: none; }

@keyframes brutal-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(40px, 12vw, 64px); letter-spacing: -1px; }
  .section-title { font-size: 32px; }
  .hero::before { display: none; }
}