/* PRO REVIEW SOURCE - CENTRAL STYLESHEET */
/* Dark Magic / Obsidian Neon Theme */

:root {
  --dark-bg: #0d0d12;
  --obsidian: #1a1a2e;
  --neon-purple: #a855f7;
  --neon-blue: #06b6d4;
  --text-primary: #e2e8f0;
  --text-secondary: #ffffff;
  --glass-bg: rgba(20, 20, 25, 0.7);
  --glass-border: rgba(168, 85, 247, 0.3);
  --deep-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  --container: 924px;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: 'DM Sans', sans-serif; 
  background: var(--dark-bg); 
  color: var(--text-primary); 
  overflow-x: hidden; 
}

/* NEON ANIMATION */
@keyframes neonPulse {
  from { box-shadow: 0 0 3px rgba(0,82,166,0.5); opacity: 0.8; }
  to { box-shadow: 0 0 10px rgba(0,82,166,1); opacity: 1; }
}

@keyframes modalIn { 
  from { opacity: 0; transform: scale(0.94) translateY(12px); } 
  to { opacity: 1; transform: scale(1) translateY(0); } 
}

@keyframes fadeDown { 
  from { opacity: 0; transform: translateY(-8px); } 
  to { opacity: 1; transform: translateY(0); } 
}

/* SITE STRUCTURE */
.site-wrapper { width: 100%; }
.main-container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

/* HEADER */
header { 
  background: var(--obsidian); 
  border-bottom: 1px solid var(--glass-border); 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  box-shadow: var(--deep-shadow); 
}
.header-main { 
  max-width: var(--container); 
  margin: 0 auto; 
  padding: 10px 28px; 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}
.logo-wrap { 
  display: flex; 
  flex-direction: column; 
  align-items: flex-start; 
  text-decoration: none; 
  flex-shrink: 0; 
  gap: 2px; 
}
.logo { 
  display: flex; 
  align-items: center; 
  text-decoration: none; 
  flex-shrink: 0; 
}
.logo-img { height: 72px; width: auto; display: block; }
.site-title-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  text-shadow: 0 0 15px rgba(168, 85, 247, 0.8);
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 8px 16px;
  border: 2px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.site-title-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(168, 85, 247, 1);
  border-color: var(--neon-purple);
}
.logo-tagline { 
  font-family: 'DM Sans', sans-serif; 
  font-size: 0.88rem; 
  font-weight: 700; 
  color: var(--neon-purple); 
  letter-spacing: 0.02em; 
  white-space: nowrap; 
  flex: 1; 
  text-align: center; 
  margin: 0; 
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5); 
}
.search-wrap { 
  width: 220px; 
  margin-left: auto; 
  position: relative; 
  flex-shrink: 0; 
}
.search-wrap input { 
  width: 100%; 
  padding: 9px 42px 9px 14px; 
  border: 2px solid var(--glass-border); 
  border-radius: 50px; 
  font-family: 'DM Sans', sans-serif; 
  font-size: 0.85rem; 
  color: var(--text-primary); 
  background: var(--glass-bg); 
  outline: none; 
  transition: all 0.3s ease; 
  backdrop-filter: blur(10px); 
}
.search-wrap input:focus { 
  border-color: var(--neon-purple); 
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.3), 0 0 10px rgba(168, 85, 247, 0.2); 
  background: var(--glass-bg); 
}
.search-wrap input::placeholder { color: #b0bbc8; }
.search-btn { 
  position: absolute; 
  right: 5px; 
  top: 50%; 
  transform: translateY(-50%); 
  background: var(--obsidian); 
  border: 1px solid var(--glass-border); 
  border-radius: 50%; 
  width: 30px; 
  height: 30px; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s ease; 
  backdrop-filter: blur(10px); 
}
.search-btn:hover { 
  background: var(--neon-purple); 
  border-color: var(--neon-purple); 
  box-shadow: 0 0 0 5px rgba(168, 85, 247, 0.5); 
}
.search-btn svg { 
  width: 13px; 
  height: 13px; 
  stroke: white; 
  fill: none; 
  stroke-width: 2.5; 
}
.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 6px; 
  margin-left: auto; 
  border: none; 
  background: none; 
}
.hamburger span { 
  display: block; 
  width: 22px; 
  height: 2px; 
  background: var(--text-primary); 
  border-radius: 2px; 
}

/* NAVIGATION */
nav { 
  background: #e0e0e0; 
  border-bottom: 2px solid var(--neon-purple); 
  width: 100%; 
}
.nav-inner { 
  max-width: 100%; 
  margin: 0 auto; 
  padding: 0 5%; 
  display: flex; 
  align-items: center; 
}
.nav-item { position: relative; }
.nav-link { 
  display: block; 
  padding: 13px 18px; 
  color: #1a1a2e; 
  font-size: 0.9rem; 
  font-weight: 600; 
  text-decoration: none; 
  white-space: nowrap; 
  letter-spacing: 0.02em; 
  transition: all 0.3s ease; 
  cursor: pointer; 
  border: none; 
  background: none; 
  font-family: 'DM Sans', sans-serif; 
}
.nav-link:hover, .nav-item:hover > .nav-link { 
  color: var(--text-secondary); 
  background: var(--glass-bg); 
  border: 1px solid var(--neon-purple); 
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2); 
  transform: translateY(-2px); 
}
.nav-link.active { 
  color: var(--neon-purple); 
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.6); 
}
.nav-all { margin-left: auto; }

/* DROPDOWN */
.dropdown { 
  display: none; 
  position: absolute; 
  top: 100%; 
  left: 0; 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-top: 3px solid var(--neon-purple); 
  border-radius: 0 0 10px 10px; 
  min-width: 600px; 
  box-shadow: var(--deep-shadow); 
  padding: 20px 24px; 
  z-index: 999; 
  animation: fadeDown 0.18s ease; 
  backdrop-filter: blur(10px); 
}
.nav-item:hover .dropdown { display: block; }
.dropdown-cols { 
  display: flex; 
  gap: 32px; 
}
.dropdown-col-title { 
  font-size: 0.7rem; 
  font-weight: 800; 
  letter-spacing: 0.1em; 
  text-transform: uppercase; 
  color: var(--text-primary); 
  padding-bottom: 8px; 
  border-bottom: 2px solid var(--neon-purple); 
  margin-bottom: 10px; 
}
.dropdown-item { 
  display: block; 
  padding: 6px 8px; 
  color: var(--text-primary); 
  font-size: 0.82rem; 
  text-decoration: none; 
  border-radius: 5px; 
  transition: all 0.15s; 
  white-space: nowrap; 
}
.dropdown-item:hover { 
  background: var(--glass-bg); 
  color: var(--text-primary); 
  font-weight: 500; 
}

/* MOBILE NAV */
.mobile-nav { 
  display: none; 
  background: var(--obsidian); 
}
.mobile-nav.open { 
  display: block; 
}
.mobile-nav a { 
  display: block; 
  padding: 13px 24px; 
  color: var(--text-primary); 
  font-size: 0.88rem; 
  text-decoration: none; 
  border-bottom: 1px solid var(--glass-border); 
}
.mobile-nav a:hover { 
  color: var(--neon-blue); 
  text-shadow: 0 0 8px rgba(6, 182, 212, 0.4); 
}
.mobile-nav-sub { 
  padding-left: 40px !important; 
  font-size: 0.8rem !important; 
  color: var(--text-primary) !important; 
}

/* HERO */
.hero.hero-section { 
  background: var(--obsidian); 
  border-bottom: 1px solid var(--glass-border); 
  padding: 28px 5% 32px; 
  display: grid; 
  grid-template-columns: minmax(240px, 1fr) 2.5fr minmax(240px, 1fr); 
  gap: 24px; 
  align-items: start; 
}
.hero-col-title { 
  position: relative; 
  font-size: 0.68rem; 
  font-weight: 800; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  color: var(--text-primary); 
  padding-bottom: 8px; 
  margin-top: 0; 
  margin-bottom: 12px; 
  line-height: 1; 
  text-align: center; 
}
.hero-col-title::after { 
  content: ""; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  right: 0; 
  margin: 0 auto; 
  width: 50%; 
  height: 1px; 
  background: var(--neon-purple); 
  box-shadow: 0 0 6px rgba(168, 85, 247, 0.9); 
  animation: neonPulse 1.4s infinite alternate; 
}
.hero-right .hero-col-title { 
  text-align: center; 
}
.hero-left.hero-latest { 
  border-right: 1px solid var(--glass-border); 
  padding-right: 24px; 
  padding-top: 0; 
}
.hero-right.hero-top-deals { 
  border-left: 1px solid var(--glass-border); 
  padding-left: 24px; 
  padding-top: 0; 
}

/* THE LATEST (left column) */
.hero-list { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
}
.latest-news-card { 
  margin-bottom: 0; 
  padding-bottom: 12px; 
  border-bottom: 1px solid var(--glass-border); 
}
.latest-news-card:last-child { 
  border-bottom: none; 
}
.news-category { 
  display: block; 
  font-size: 0.7rem; 
  font-weight: 700; 
  color: var(--neon-purple); 
  text-transform: uppercase; 
  letter-spacing: 0.08em; 
  margin-bottom: 6px; 
}
.news-title { 
  font-size: 1.02rem; 
  font-weight: 800; 
  color: var(--text-primary); 
  margin: 0 0 8px 0; 
  line-height: 1.4; 
  text-shadow: 0 0 5px rgba(168, 85, 247, 0.3); 
}
.news-title a { 
  color: inherit; 
  text-decoration: none; 
}
.news-title a:hover { 
  color: var(--neon-blue); 
}
.news-date { 
  display: block; 
  font-size: 0.78rem; 
  color: var(--text-primary); 
}

/* HERO CENTER SLIDESHOW / VIDEO */
.hero-center.hero-featured { 
  position: relative; 
  overflow: visible; 
  border-radius: 10px; 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
  align-items: stretch; 
}
.hero-video-wrap { 
  position: relative; 
  width: 100%; 
  aspect-ratio: 16 / 9; 
  border-radius: 10px; 
  overflow: hidden; 
  background: #000; 
}
.hero-video-wrap video { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block; 
}
.hero-video-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%); 
  border-radius: 10px; 
  pointer-events: none; 
}
.hero-mute-btn { 
  position: absolute; 
  bottom: 12px; 
  right: 12px; 
  z-index: 3; 
  background: rgba(0,0,0,0.55); 
  border: 1.5px solid rgba(255,255,255,0.35); 
  color: white; 
  border-radius: 50%; 
  width: 34px; 
  height: 34px; 
  cursor: pointer; 
  font-size: 1rem; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: background 0.2s, border-color 0.2s; 
  backdrop-filter: blur(4px); 
}
.hero-mute-btn:hover { 
  background: var(--neon-purple); 
  border-color: var(--neon-purple); 
  color: var(--text-secondary); 
}
.hero-sound-hint { 
  position: absolute; 
  bottom: 14px; 
  left: 12px; 
  z-index: 3; 
  font-size: 0.65rem; 
  color: rgba(255,255,255,0.7); 
  font-weight: 500; 
  letter-spacing: 0.04em; 
  pointer-events: none; 
}
.hero-slideshow { 
  position: relative; 
  width: 100%; 
  aspect-ratio: 16 / 9; 
  height: auto; 
}
.hero-slide { 
  position: absolute; 
  inset: 0; 
  opacity: 0; 
  transition: opacity 0.8s ease; 
}
.hero-slide.active { 
  opacity: 1; 
}
.hero-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  border-radius: 10px; 
}
.hero-slide-overlay { 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 60%); 
  border-radius: 10px; 
}
.hero-dots { 
  position: absolute; 
  bottom: 12px; 
  left: 50%; 
  transform: translateX(-50%); 
  display: none !important; 
  gap: 6px; 
  z-index: 2; 
}
.hero-dot { 
  width: 7px; 
  height: 7px; 
  border-radius: 50%; 
  background: rgba(255,255,255,0.4); 
  cursor: pointer; 
  transition: background 0.2s; 
  border: none; 
}
.hero-dot.active { 
  background: var(--neon-purple); 
}

/* DYNAMIC NEWS FEED */
.dynamic-news-feed { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 14px; 
  padding: 20px; 
  box-shadow: var(--deep-shadow); 
  backdrop-filter: blur(10px); 
  margin-top: 0; 
  min-height: 120px; 
  transition: opacity 0.5s ease; 
}
.news-feed-content { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; 
}
.news-feed-img { 
  width: 100%; 
  height: 80px; 
  object-fit: cover; 
  border-radius: 8px; 
  margin-bottom: 4px; 
  display: block; 
}
.dynamic-news-feed .news-category { 
  font-size: 0.9rem; 
  font-weight: 800; 
  letter-spacing: 0.12em; 
  text-transform: uppercase; 
  color: var(--neon-purple); 
  text-shadow: 0 0 5px rgba(168, 85, 247, 0.6); 
}
.news-headline { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.05rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  line-height: 1.3; 
  text-shadow: 0 0 5px rgba(168, 85, 247, 0.3); 
}
.news-headline a { 
  color: var(--text-primary); 
  text-decoration: none; 
}
.news-headline a:hover { 
  color: var(--neon-blue); 
}
.dynamic-news-feed .news-headline a { 
  color: var(--text-primary); 
  text-decoration: none; 
}
.dynamic-news-feed .news-summary { 
  font-size: 0.85rem; 
  color: var(--text-primary); 
  line-height: 1.5; 
  opacity: 0.9; 
  display: -webkit-box; 
  -webkit-line-clamp: 3; 
  line-clamp: 3; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
}
.news-summary { 
  font-size: 0.82rem; 
  color: var(--text-primary); 
  line-height: 1.5; 
  opacity: 0.9; 
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  line-clamp: 2; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
}

/* HERO ARTICLES GRID */
.hero-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
  grid-auto-rows: 1fr;
}
.hero-article-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
}
.hero-article-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--deep-shadow);
  border-color: var(--neon-purple);
}
.hero-article-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  background: var(--obsidian);
  display: block;
}
.hero-article-body {
  padding: 10px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.hero-article-cat {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--neon-purple);
}
.hero-article-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
}
.hero-article-summary {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.45;
  opacity: 0.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 2px;
}

/* REVIEW LAYOUT */
.review-layout { 
  display: flex; 
  gap: 40px; 
  align-items: flex-start; 
}
.review-main { 
  flex: 1; 
  min-width: 0; 
}
.review-sidebar { 
  width: 280px; 
  flex-shrink: 0; 
}

/* BREADCRUMB */
.breadcrumb-wrap { 
  max-width: 100%; 
  padding: 10px 5%; 
  font-size: 0.78rem; 
  color: var(--text-primary); 
}
.breadcrumb-wrap a { 
  color: var(--neon-purple); 
  text-decoration: none; 
}
.breadcrumb-wrap a:hover { 
  text-decoration: underline; 
}
.breadcrumb-wrap span { 
  margin: 0 6px; 
  opacity: 0.5; 
}

/* REVIEW — PRODUCT HERO */
.product-hero { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  margin-bottom: 28px; 
  padding: 24px 20px; 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 14px; 
  backdrop-filter: blur(10px); 
}
.product-img-wrap { 
  max-width: 350px; 
  width: 100%; 
  background: transparent; 
  padding: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  margin-bottom: 10px; 
}
.product-img { 
  max-width: 100%; 
  height: auto; 
  max-height: 320px; 
  object-fit: contain; 
  display: block; 
}
.product-meta { 
  width: 100%; 
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 6px; 
}
.product-subtype { 
  font-size: 0.72rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.08em; 
  color: var(--neon-purple); 
}
.product-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.5rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  line-height: 1.25; 
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.3); 
}
.product-tagline { 
  font-size: 0.95rem; 
  font-weight: 600; 
  color: var(--text-primary); 
  line-height: 1.4; 
}
.product-forwho { 
  font-size: 0.82rem; 
  color: var(--text-secondary); 
  opacity: 0.8; 
}

/* REVIEW — CONTENT BLOCKS */
.content-block { 
  margin-bottom: 24px; 
  padding: 20px 24px; 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 14px; 
  backdrop-filter: blur(10px); 
}
.content-block h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.1rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 12px; 
  padding-bottom: 8px; 
  border-bottom: 1px solid var(--glass-border); 
  text-shadow: 0 0 5px rgba(168, 85, 247, 0.3); 
}
.mechanism-text { 
  font-size: 0.9rem; 
  color: var(--text-primary); 
  line-height: 1.7; 
}
.product-ingredients-inline { 
  font-size: 0.88rem; 
  color: var(--text-primary); 
  line-height: 1.7; 
}
.product-ingredients-inline strong { 
  color: var(--neon-purple); 
}

/* SPEC TABLE */
.spec-table { 
  width: 100%; 
  border-collapse: collapse; 
  font-size: 0.85rem; 
}
.spec-table tr { 
  border-bottom: 1px solid var(--glass-border); 
}
.spec-table tr:last-child { 
  border-bottom: none; 
}
.spec-table td { 
  padding: 10px 12px; 
  color: var(--text-primary); 
  vertical-align: top; 
}
.spec-table td:first-child { 
  font-weight: 600; 
  color: var(--text-secondary); 
  width: 40%; 
  opacity: 0.8; 
}

/* TESTIMONIALS */
.testimonial-list { 
  display: flex; 
  flex-direction: column; 
  gap: 14px; 
}
.testimonial-item { 
  padding: 14px 16px; 
  background: var(--obsidian); 
  border: 1px solid var(--glass-border); 
  border-radius: 10px; 
}
.testimonial-text { 
  font-size: 0.88rem; 
  color: var(--text-primary); 
  line-height: 1.6; 
  font-style: italic; 
  margin-bottom: 8px; 
}
.testimonial-author { 
  font-size: 0.8rem; 
  font-weight: 600; 
  color: var(--neon-purple); 
}
.testimonial-location { 
  font-size: 0.72rem; 
  color: var(--text-primary); 
  opacity: 0.6; 
}

/* CTA BUTTON */
.cta-btn { 
  display: inline-block; 
  background: var(--neon-purple); 
  color: var(--text-secondary); 
  padding: 14px 36px; 
  border-radius: 10px; 
  font-family: 'DM Sans', sans-serif; 
  font-weight: 700; 
  font-size: 0.95rem; 
  text-decoration: none; 
  transition: all 0.3s ease; 
  box-shadow: 0 0 15px rgba(168, 85, 247, 0.4); 
}
.cta-btn:hover { 
  opacity: 0.9; 
  transform: translateY(-2px); 
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.6); 
}
.cta-note { 
  font-size: 0.72rem; 
  color: var(--text-primary); 
  opacity: 0.5; 
  margin-top: 8px; 
}

/* REVIEW SIDEBAR */
.sidebar-box { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 14px; 
  padding: 18px; 
  backdrop-filter: blur(10px); 
  position: sticky; 
  top: 20px; 
}
.sidebar-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 0.9rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 14px; 
  padding-bottom: 8px; 
  border-bottom: 1px solid var(--glass-border); 
  text-shadow: 0 0 5px rgba(168, 85, 247, 0.3); 
}
.sidebar-product { 
  display: flex; 
  gap: 10px; 
  align-items: center; 
  padding: 9px 0; 
  border-bottom: 1px solid var(--glass-border); 
  text-decoration: none; 
  color: inherit; 
  transition: all 0.3s ease; 
}
.sidebar-product:last-child { 
  border-bottom: none; 
  padding-bottom: 0; 
}
.sidebar-product:hover { 
  transform: translateX(4px); 
}
.sidebar-product img { 
  width: 44px; 
  height: 54px; 
  object-fit: contain; 
  background: var(--obsidian); 
  border-radius: 8px; 
  padding: 4px; 
  flex-shrink: 0; 
}
.sidebar-product-name { 
  font-size: 0.8rem; 
  font-weight: 600; 
  color: var(--text-primary); 
  line-height: 1.3; 
}
.sidebar-product-sub { 
  font-size: 0.68rem; 
  color: var(--text-primary); 
  opacity: 0.7; 
  margin-top: 2px; 
}
.sidebar-compare-hint { 
  font-size: 0.65rem; 
  color: var(--neon-purple); 
  font-weight: 600; 
  margin-top: 2px; 
}

/* NOT FOUND */
.not-found { 
  text-align: center; 
  padding: 60px 24px; 
}
.not-found h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.4rem; 
  color: var(--text-primary); 
  margin-bottom: 10px; 
}
.not-found p { 
  color: var(--text-primary); 
  font-size: 0.9rem; 
  margin-bottom: 20px; 
}
.not-found a { 
  color: var(--neon-purple); 
  text-decoration: none; 
  font-weight: 600; 
}

/* COMPARE PAGE */
.compare-layout { 
  max-width: 100%; 
  padding: 0 5%; 
  margin-top: 24px; 
  margin-bottom: 40px; 
  display: grid; 
  grid-template-columns: 1fr 260px; 
  gap: 28px; 
  align-items: start; 
}
.compare-layout.full-width { 
  grid-template-columns: 1fr; 
}
.compare-main { 
  min-width: 0; 
}
/* COMPARE — VERTICAL BLOCKS */
.compare-blocks { 
  display: grid; 
  gap: 18px; 
  margin-bottom: 24px; 
}
.compare-blocks.count-1 { grid-template-columns: 1fr; max-width: 380px; }
.compare-blocks.count-2 { grid-template-columns: 1fr 1fr; }
.compare-blocks.count-3 { grid-template-columns: 1fr 1fr 1fr; }
.compare-block { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 14px; 
  padding: 20px 16px; 
  text-align: center; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 8px; 
  position: relative; 
  backdrop-filter: blur(10px); 
}
.compare-block-img { 
  padding: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
}
.compare-block-img img { 
  max-width: 120px; 
  height: auto; 
  max-height: 140px; 
  object-fit: contain; 
}
.compare-block-subtype { 
  font-size: 0.7rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.08em; 
  color: var(--neon-purple); 
}
.compare-block-name { 
  font-family: 'Playfair Display', serif; 
  font-size: 1rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 6px; 
}
.compare-block-specs { 
  width: 100%; 
}
.spec-row { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding: 8px 10px; 
  border-bottom: 1px solid var(--glass-border); 
  font-size: 0.82rem; 
}
.spec-row:last-child { 
  border-bottom: none; 
}
.spec-label { 
  color: var(--text-primary); 
  opacity: 0.7; 
  font-weight: 600; 
  text-align: left; 
  flex-shrink: 0; 
}
.spec-value { 
  color: var(--text-primary); 
  text-align: right; 
  font-weight: 500; 
}
.empty-val { 
  opacity: 0.3; 
}
.check { color: #22c55e; font-weight: 700; }
.cross { color: #ef4444; font-weight: 700; }
.compare-block-score { 
  margin-top: 8px; 
}
.score-big { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.8rem; 
  font-weight: 900; 
  color: var(--neon-purple); 
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5); 
}
.remove-btn { 
  position: absolute; 
  top: 8px; 
  right: 8px; 
  width: 24px; 
  height: 24px; 
  border: none; 
  background: rgba(255, 255, 255, 0.1); 
  border-radius: 50%; 
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  transition: all 0.3s ease; 
}
.remove-btn svg { 
  width: 14px; 
  height: 14px; 
  stroke: var(--text-primary); 
  stroke-width: 2; 
  fill: none; 
}
.remove-btn:hover svg { 
  stroke: #ef4444; 
}
.cta-btn-final { 
  display: inline-block; 
  background: var(--neon-purple); 
  color: var(--text-secondary); 
  padding: 10px 18px; 
  border-radius: 8px; 
  font-family: 'DM Sans', sans-serif; 
  font-weight: 700; 
  font-size: 0.82rem; 
  text-decoration: none; 
  text-align: center; 
  transition: all 0.3s ease; 
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.3); 
  width: 100%; 
  margin-top: 6px; 
}
.cta-btn-final:hover { 
  opacity: 0.9; 
  transform: translateY(-2px); 
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.5); 
}
.add-icon { 
  margin-left: auto; 
  flex-shrink: 0; 
  width: 20px; 
  height: 20px; 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 0.9rem; 
  color: var(--neon-blue); 
  font-weight: 700; 
  transition: all 0.3s ease; 
}
.sidebar-product:hover .add-icon { 
  background: var(--neon-blue); 
  color: var(--text-secondary); 
  border-color: var(--neon-blue); 
}
.empty-state { 
  text-align: center; 
  padding: 60px 24px; 
}
.empty-state h2 { 
  font-family: 'DM Sans', sans-serif; 
  font-size: 1.4rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 10px; 
}
.empty-state p { 
  color: var(--text-primary); 
  font-size: 0.9rem; 
  margin-bottom: 20px; 
}
.empty-state a { 
  color: var(--neon-blue); 
  text-decoration: none; 
  font-weight: 600; 
}

/* ARTICLE PAGE */
.article-wrap { 
  display: flex; 
  gap: 32px; 
  align-items: flex-start; 
}
.article-main { 
  flex: 1; 
  min-width: 0; 
}
.article-cover { 
  width: 100%; 
  max-height: 320px; 
  object-fit: cover; 
  border-radius: 14px 14px 0 0; 
  display: block; 
}
.article-body-wrap { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 0 0 14px 14px; 
  padding: 28px; 
  backdrop-filter: blur(10px); 
}
.article-body-wrap .article-cat { 
  font-size: 0.7rem; 
  font-weight: 700; 
  letter-spacing: 0.08em; 
  text-transform: uppercase; 
  color: var(--neon-purple); 
  margin-bottom: 8px; 
}
.article-body-wrap .article-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.6rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  line-height: 1.25; 
  margin-bottom: 10px; 
}
.article-body-wrap .article-meta { 
  font-size: 0.75rem; 
  color: var(--text-primary); 
  opacity: 0.6; 
  margin-bottom: 20px; 
}
.article-body-wrap .article-text { 
  font-size: 0.92rem; 
  color: var(--text-primary); 
  line-height: 1.7; 
}
.article-body-wrap .article-text p { 
  margin-bottom: 16px; 
}

/* ARTICLE SIDEBAR */
.sidebar { 
  width: 280px; 
  flex-shrink: 0; 
}
.sidebar-widget { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 14px; 
  padding: 18px; 
  backdrop-filter: blur(10px); 
  margin-bottom: 20px; 
}
.sidebar-widget p { 
  font-size: 0.82rem; 
  color: var(--text-primary); 
  line-height: 1.6; 
  opacity: 0.8; 
}
.widget-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 0.9rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 14px; 
  padding-bottom: 8px; 
  border-bottom: 1px solid var(--glass-border); 
}
.latest-list { 
  list-style: none; 
  padding: 0; 
  margin: 0; 
}
.latest-item { 
  display: flex; 
  gap: 10px; 
  padding: 10px 0; 
  border-bottom: 1px solid var(--glass-border); 
}
.latest-item:last-child { 
  border-bottom: none; 
}
.latest-img { 
  width: 50px; 
  height: 50px; 
  object-fit: cover; 
  border-radius: 8px; 
  flex-shrink: 0; 
}
.latest-info { 
  flex: 1; 
  min-width: 0; 
}
.latest-cat { 
  font-size: 0.65rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  color: var(--neon-purple); 
  margin-bottom: 3px; 
}
.latest-link { 
  font-size: 0.8rem; 
  color: var(--text-primary); 
  text-decoration: none; 
  line-height: 1.3; 
  display: -webkit-box; 
  -webkit-line-clamp: 2; 
  line-clamp: 2; 
  -webkit-box-orient: vertical; 
  overflow: hidden; 
}
.latest-link:hover { 
  color: var(--neon-purple); 
}

/* ARTICLE — RELATED PRODUCTS */
.related-products-section { 
  margin-top: 32px; 
  padding-top: 24px; 
  border-top: 1px solid var(--glass-border); 
}
.related-section-header { 
  margin-bottom: 20px; 
}
.related-section-header h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.2rem; 
  color: var(--text-primary); 
  margin-bottom: 6px; 
  text-shadow: 0 0 5px rgba(168, 85, 247, 0.3); 
}
.related-section-header p { 
  font-size: 0.82rem; 
  color: var(--text-primary); 
  opacity: 0.7; 
}
.products-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
  gap: 18px; 
}
.products-grid .product-card { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 14px; 
  overflow: hidden; 
  transition: all 0.3s ease; 
  backdrop-filter: blur(10px); 
  text-decoration: none; 
  color: inherit; 
  display: block; 
}
.products-grid .product-card:hover { 
  transform: translateY(-3px); 
  box-shadow: var(--deep-shadow); 
  border-color: var(--neon-purple); 
}
.products-grid .product-card img { 
  width: 100%; 
  height: 150px; 
  object-fit: contain; 
  background: var(--obsidian); 
  padding: 12px; 
}
.product-card-content { 
  padding: 14px; 
  display: flex; 
  flex-direction: column; 
  gap: 6px; 
}
.product-card-content h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 0.95rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  line-height: 1.3; 
}
.product-card-content p { 
  font-size: 0.78rem; 
  color: var(--text-primary); 
  opacity: 0.8; 
  line-height: 1.4; 
}
.score-badge { 
  font-size: 0.75rem; 
  font-weight: 700; 
  color: var(--neon-purple); 
}
.product-card-content .cta-btn { 
  display: block; 
  text-align: center; 
  padding: 10px 14px; 
  font-size: 0.78rem; 
  margin-top: 4px; 
}

/* HERO PRODUCT ITEMS (Top Deals) */
.deal-card.hero-product-item { 
  display: flex; 
  align-items: center; 
  padding: 14px 12px; 
  margin-bottom: 10px; 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 10px; 
  text-decoration: none; 
  color: inherit; 
  transition: all 0.3s ease; 
  backdrop-filter: blur(10px); 
}
.deal-card.hero-product-item:last-child { 
  margin-bottom: 0; 
}
.deal-card.hero-product-item:hover { 
  transform: translateY(-2px); 
  box-shadow: var(--deep-shadow); 
  border-color: var(--neon-purple); 
}
.deal-card img.hero-product-img { 
  width: 60px; 
  height: 60px; 
  object-fit: contain; 
  margin-right: 12px; 
  background: var(--glass-bg); 
  border-radius: 8px; 
  padding: 4px; 
}
.deal-info { 
  display: flex; 
  flex-direction: column; 
  gap: 2px; 
  min-width: 0; 
  overflow: hidden; 
}
.deal-name { 
  font-size: 0.82rem; 
  font-weight: 700; 
  margin: 0; 
  color: var(--text-primary); 
}
.deal-subtype { 
  font-size: 0.75rem; 
  color: var(--neon-purple); 
  font-weight: 600; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  margin-top: 2px; 
}
.deal-tagline { 
  font-size: 0.72rem; 
  color: var(--text-primary); 
  display: block; 
  width: 100%; 
  margin-top: 2px; 
  opacity: 0.65; 
  line-height: 1.4; 
}

/* SECTIONS */
.section { 
  padding: 40px 28px; 
  max-width: var(--container); 
  margin: 0 auto; 
}
.section:nth-child(even) { 
  background: var(--glass-bg); 
}
.section-header { 
  display: flex; 
  align-items: baseline; 
  justify-content: space-between; 
  margin-bottom: 24px; 
  border-bottom: 2px solid var(--glass-border); 
  padding-bottom: 12px; 
}
.section-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.2rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.3); 
}
.section-title span { 
  display: inline-block; 
  width: 5px; 
  height: 5px; 
  background: var(--neon-purple); 
  border-radius: 50%; 
  margin-right: 8px; 
  vertical-align: middle; 
  margin-bottom: 3px; 
}
.section-link { 
  font-size: 0.82rem; 
  color: var(--text-primary); 
  text-decoration: none; 
  font-weight: 500; 
}
.section-link:hover { 
  color: var(--neon-blue); 
}

/* CARDS */
.cards-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); 
  gap: 16px; 
}
.card { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 12px; 
  overflow: hidden; 
  transition: all 0.3s ease; 
  cursor: pointer; 
  text-decoration: none; 
  color: inherit; 
  display: flex; 
  flex-direction: column; 
  backdrop-filter: blur(10px); 
}
.card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--deep-shadow); 
  border-color: var(--neon-purple); 
}
.card-media { 
  position: relative; 
  width: 100%; 
  aspect-ratio: 1; 
  background: var(--obsidian); 
  overflow: hidden; 
}
.card-media img { 
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  padding: 20px; 
}
.card-body { 
  padding: 12px 14px 14px; 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  gap: 5px; 
}
.card-subtype { 
  font-size: 0.65rem; 
  font-weight: 700; 
  letter-spacing: 0.08em; 
  text-transform: uppercase; 
  color: var(--neon-purple); 
}
.card-name { 
  font-weight: 600; 
  font-size: 0.88rem; 
  color: var(--text-primary); 
  line-height: 1.3; 
}
.card-tagline { 
  font-size: 0.76rem; 
  color: var(--text-primary); 
  line-height: 1.4; 
}
.card-pro { 
  font-size: 0.76rem; 
  color: var(--neon-blue); 
  font-weight: 500; 
  margin-top: 2px; 
}
.card-pro::before { 
  content: '+ '; 
}
.card-score { 
  font-size: 0.72rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-top: 3px; 
}
.card-btn { 
  margin-top: auto; 
  padding-top: 10px; 
}
.card-btn-link { 
  display: block; 
  text-align: center; 
  background: var(--obsidian); 
  color: var(--text-secondary); 
  padding: 8px; 
  border-radius: 7px; 
  font-size: 0.78rem; 
  font-weight: 600; 
  letter-spacing: 0.02em; 
  transition: all 0.3s ease; 
  border: 1px solid var(--glass-border); 
  backdrop-filter: blur(10px); 
}
.card:hover .card-btn-link { 
  background: var(--neon-blue); 
  color: var(--text-secondary); 
  border-color: var(--neon-blue); 
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.4); 
  transform: translateY(-2px); 
}

/* SHOW MORE */
.show-more-wrap { 
  text-align: center; 
  margin-top: 20px; 
}
.show-more-btn { 
  background: var(--glass-bg); 
  border: 2px solid var(--glass-border); 
  color: var(--text-primary); 
  font-family: 'DM Sans', sans-serif; 
  font-size: 0.85rem; 
  font-weight: 600; 
  padding: 11px 32px; 
  border-radius: 50px; 
  cursor: pointer; 
  transition: all 0.3s ease; 
  backdrop-filter: blur(10px); 
}
.show-more-btn:hover { 
  border-color: var(--neon-purple); 
  color: var(--neon-purple); 
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.4); 
}

/* ARTICLES */
.articles-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
  gap: 20px; 
}
.article-card { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 12px; 
  overflow: hidden; 
  text-decoration: none; 
  color: inherit; 
  display: flex; 
  flex-direction: column; 
  transition: all 0.3s ease; 
  backdrop-filter: blur(10px); 
}
.article-card:hover { 
  transform: translateY(-3px); 
  box-shadow: var(--deep-shadow); 
  border-color: var(--neon-purple); 
}
.article-img { 
  width: 100%; 
  height: 150px; 
  object-fit: cover; 
  background: var(--obsidian); 
}
.article-body { 
  padding: 16px; 
  flex: 1; 
  display: flex; 
  flex-direction: column; 
  gap: 7px; 
}
.article-cat { 
  font-size: 0.7rem; 
  font-weight: 700; 
  letter-spacing: 0.08em; 
  text-transform: uppercase; 
  color: var(--neon-purple); 
  margin-bottom: 8px; 
}
.article-card .article-cat { 
  font-size: 0.68rem; 
  letter-spacing: 0.1em; 
  margin-bottom: 0; 
}
.article-title { 
  font-family: 'Playfair Display', serif; 
  font-size: 2.2rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  line-height: 1.2; 
  margin-bottom: 16px; 
  text-shadow: 0 0 8px rgba(168, 85, 247, 0.3); 
}
.article-card .article-title { 
  font-size: 0.95rem; 
  line-height: 1.35; 
  margin-bottom: 0; 
}
.article-text { 
  font-size: 1.05rem; 
  color: var(--text-primary); 
  line-height: 1.7; 
  margin-bottom: 24px; 
}
.article-meta { 
  font-size: 0.72rem; 
  color: var(--text-primary); 
  margin-top: auto; 
}

/* MODAL */
.modal-overlay { 
  display: none; 
  position: fixed; 
  inset: 0; 
  background: rgba(10,14,26,0.82); 
  z-index: 2000; 
  align-items: center; 
  justify-content: center; 
  padding: 20px; 
  backdrop-filter: blur(4px); 
}
.modal-overlay.open { 
  display: flex; 
}
.modal { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 16px; 
  padding: 36px; 
  max-width: 440px; 
  width: 100%; 
  text-align: center; 
  animation: modalIn 0.25s ease; 
  box-shadow: var(--deep-shadow); 
}
.modal-icon { 
  font-size: 2.2rem; 
  margin-bottom: 10px; 
}
.modal h3 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.25rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 8px; 
  text-shadow: 0 0 5px rgba(168, 85, 247, 0.6); 
}
.modal-query { 
  color: var(--neon-purple); 
  font-weight: 700; 
}
.modal p { 
  color: var(--text-primary); 
  font-size: 0.88rem; 
  line-height: 1.6; 
}
.modal-input { 
  width: 100%; 
  padding: 12px 16px; 
  border: 2px solid var(--glass-border); 
  border-radius: 10px; 
  font-family: 'DM Sans', sans-serif; 
  font-size: 0.9rem; 
  outline: none; 
  color: var(--text-primary); 
  background: var(--glass-bg); 
  transition: all 0.3s ease; 
}
.modal-input:focus { 
  border-color: var(--neon-purple); 
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.3), 0 0 10px rgba(168, 85, 247, 0.2); 
  background: var(--glass-bg); 
}
.modal-submit { 
  width: 100%; 
  background: var(--neon-purple); 
  color: var(--text-secondary); 
  font-family: 'DM Sans', sans-serif; 
  font-weight: 700; 
  font-size: 0.95rem; 
  padding: 12px; 
  border: none; 
  border-radius: 10px; 
  cursor: pointer; 
  transition: all 0.3s ease; 
}
.modal-submit:hover { 
  opacity: 0.85; 
}
.modal-close { 
  margin-top: 10px; 
  background: none; 
  border: none; 
  color: var(--text-primary); 
  font-size: 0.8rem; 
  cursor: pointer; 
  font-family: 'DM Sans', sans-serif; 
  display: block; 
  width: 100%; 
}
.modal-success { 
  display: none; 
}
.modal-success.show { 
  display: block; 
}

/* FOOTER */
footer { 
  background: var(--obsidian); 
  color: var(--text-primary); 
  padding: 40px 28px 28px; 
  border-top: 1px solid rgba(168, 85, 247, 0.15); 
}
.footer-inner { 
  max-width: var(--container); 
  margin: 0 auto; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 16px; 
  padding-bottom: 20px; 
  border-bottom: 1px solid rgba(255,255,255,0.06); 
}
.footer-logo img { 
  height: 48px; 
  width: auto; 
  opacity: 0.85; 
}
.footer-links { 
  display: flex; 
  gap: 24px; 
  flex-wrap: wrap; 
  justify-content: center; 
  align-items: center; 
  font-size: 0.82rem; 
}
.footer-links a { 
  color: var(--text-primary); 
  opacity: 0.55; 
  text-decoration: none; 
  transition: all 0.2s; 
}
.footer-links a:hover { 
  color: var(--neon-purple); 
  opacity: 1; 
}
.footer-disclaimer { 
  max-width: 640px; 
  margin: 16px auto 0; 
  font-size: 0.68rem; 
  color: var(--text-primary); 
  opacity: 0.35; 
  line-height: 1.6; 
  text-align: center; 
}
.footer-bottom { 
  max-width: var(--container); 
  margin: 12px auto 0; 
  font-size: 0.7rem; 
  display: flex; 
  justify-content: center; 
  gap: 6px; 
  color: var(--text-primary); 
  opacity: 0.3; 
}
.footer-bottom span + span::before { 
  content: '·'; 
  margin-right: 6px; 
}

/* RESPONSIVE */
@media (min-width: 1024px) {
  .hero.hero-section { 
    grid-template-columns: minmax(260px, 1fr) 2.5fr minmax(260px, 1fr); 
    gap: 40px; 
    padding: 28px 5% 32px; 
  }
  .cards-grid { 
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); 
    gap: 16px; 
  }
  .articles-grid { 
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); 
    gap: 20px; 
  }
}
@media (max-width: 1023px) {
  .hero.hero-section { 
    grid-template-columns: 1fr; 
    gap: 32px; 
    padding: 20px 16px 28px; 
    overflow-x: hidden; 
  }
  .hero-left, .hero-right { 
    border: none; 
    padding: 0; 
  }
  .hero-video-wrap, .hero-slideshow { 
    aspect-ratio: 16 / 9; 
    max-height: none; 
  }
  .cards-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
  }
  .section { 
    padding: 24px 16px; 
  }
  .articles-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
  }
  .hero { 
    padding: 0px 16px 16px; 
  }
  .main-container { 
    padding: 0 16px 40px; 
  }
  .review-layout { 
    flex-direction: column; 
    gap: 24px; 
  }
  .review-sidebar { 
    width: 100%; 
  }
  .product-img-wrap { 
    max-width: 250px; 
  }
  .product-img { 
    max-height: 240px; 
  }
  .compare-layout { 
    grid-template-columns: 1fr; 
    padding: 0 16px; 
  }
  .compare-blocks.count-2,
  .compare-blocks.count-3 { 
    grid-template-columns: 1fr 1fr; 
  }
  .article-wrap { 
    flex-direction: column; 
    gap: 24px; 
  }
  .sidebar { 
    width: 100%; 
  }
}
@media (max-width: 768px) {
  body { 
    font-size: 16px; 
  }
  .header-main { 
    flex-wrap: wrap; 
    padding: 10px 16px; 
    gap: 10px; 
  }
  .hero.hero-section { 
    grid-template-columns: 1fr; 
    padding: 20px 16px 28px; 
    overflow-x: hidden; 
  }
  .search-wrap { 
    order: 3; 
    flex: 0 0 100%; 
    max-width: 100%; 
    margin: 0; 
  }
  .search-wrap input { 
    font-size: 16px; 
    padding: 12px 46px 12px 14px; 
  }
  .search-btn { 
    width: 36px; 
    height: 36px; 
  }
  .hamburger { 
    display: flex; 
  }
  nav { 
    display: none; 
  }
  .compare-table td:first-child { 
    white-space: normal; 
    font-size: 0.72rem; 
    width: 28%; 
  }
  .compare-table td.val { 
    font-size: 0.78rem; 
  }
  .cta-btn-final { 
    width: 100%; 
    display: block; 
    text-align: center; 
    font-size: 0.72rem; 
    padding: 8px 6px; 
  }
  .score-big { 
    font-size: 1.1rem; 
  }
  .compare-block-img img { 
    max-width: 80px; 
    max-height: 100px; 
  }
  .compare-block-name { 
    font-size: 0.85rem; 
  }
  .spec-row { 
    font-size: 0.72rem; 
    padding: 6px 8px; 
  }
  .products-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .cards-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 10px; 
  }
  .section { 
    padding: 24px 16px; 
  }
  .articles-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px; 
  }
  .hero { 
    padding: 0px 16px 16px; 
  }
  .main-container { 
    padding: 0 16px 40px; 
  }
}
@media (max-width: 400px) {
  .articles-grid { 
    grid-template-columns: 1fr; 
  }
  .cards-grid { 
    grid-template-columns: 1fr; 
  }
}

/* LEGAL PAGES (privacy, terms, cookies) */
.page-hero { 
  text-align: center; 
  padding: 36px 20px 24px; 
}
.page-hero h1 { 
  font-family: 'Playfair Display', serif; 
  font-size: 2rem; 
  font-weight: 900; 
  color: var(--text-primary); 
  margin-bottom: 6px; 
}
.page-hero p { 
  font-size: 0.8rem; 
  color: var(--text-primary); 
  opacity: 0.5; 
}
.container { 
  max-width: 780px; 
  margin: 0 auto; 
  padding: 32px 5% 60px; 
}
.container section { 
  margin-bottom: 28px; 
}
.container section h2 { 
  font-family: 'Playfair Display', serif; 
  font-size: 1.15rem; 
  font-weight: 700; 
  color: var(--text-primary); 
  margin-bottom: 10px; 
}
.container section p,
.container section li { 
  font-size: 0.88rem; 
  color: var(--text-primary); 
  opacity: 0.85; 
  line-height: 1.7; 
  margin-bottom: 10px; 
}
.container section ul { 
  padding-left: 20px; 
  margin-bottom: 12px; 
}
.intro-box { 
  background: var(--glass-bg); 
  border: 1px solid var(--glass-border); 
  border-radius: 12px; 
  padding: 20px 24px; 
  margin-bottom: 28px; 
  font-size: 0.9rem; 
  color: var(--text-primary); 
  line-height: 1.7; 
  backdrop-filter: blur(10px); 
}
.contact-box { 
  margin-top: 12px; 
  font-size: 0.9rem; 
}
.contact-box a { 
  color: var(--neon-purple); 
  text-decoration: none; 
}
.contact-box a:hover { 
  text-decoration: underline; 
}
.cookie-cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
  gap: 16px; 
  margin-top: 16px; 
}
@media (max-width: 768px) {
  .page-hero h1 { font-size: 1.6rem; }
  .container { padding: 32px 16px 48px; }
  .cookie-cards { grid-template-columns: 1fr; }
}
