/* ===== SDHZJMX - Bauhaus Minimal Theme ===== */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600&display=swap');

/* --- Reset & Base --- */
.site-body, .site-body *, .site-body *::before, .site-body *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #1e40af;
  --dark: #111827;
  --light: #f8fafc;
  --accent: #3b82f6;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --white: #ffffff;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-html { scroll-behavior: smooth; font-size: 16px; }

.site-body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo circle { stroke: var(--accent); }
.preloader-logo line { stroke: var(--accent); }

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--gray-700);
  margin-top: 32px;
  border-radius: 1px;
  overflow: hidden;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 3s linear;
}

.preloader-bar-fill.active { width: 100%; }

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

/* --- Ad Disclosure --- */
.ad-disclosure {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-heading);
}

/* --- Header / Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.header.scrolled { box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06); }

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img, .nav-logo svg { height: 36px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 600 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: #1e3a8a !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
  border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Sections --- */
.section {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* --- Hero --- */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.08);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(59, 130, 246, 0.06);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { padding: 40px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 32px;
  font-family: var(--font-heading);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-title span { color: var(--accent); }

.hero-text {
  font-size: 1.0625rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 40px;
}

.hero-price-value {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.hero-price-note {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.4));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--gray-600);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: #1f2937;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.9375rem;
}

.btn-arrow::after {
  content: '\2192';
  transition: transform var(--transition);
}

.btn-arrow:hover::after { transform: translateX(4px); }

/* --- Gallery --- */
.gallery-section { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 1;
  cursor: pointer;
  group: true;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.6), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  transition: all var(--transition);
  background: var(--white);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30, 64, 175, 0.08);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.25rem;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-text {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* --- Specs Table --- */
.specs-section { background: var(--white); }

.specs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table tr { border-bottom: 1px solid var(--gray-200); }
.specs-table tr:last-child { border-bottom: none; }

.specs-table td {
  padding: 16px 0;
  font-size: 0.9375rem;
  vertical-align: top;
}

.specs-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--dark);
  width: 40%;
  padding-right: 24px;
}

.specs-table td:last-child { color: var(--gray-600); }

/* --- Pros & Cons --- */
.proscons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.proscons-card {
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
  background: var(--white);
}

.proscons-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.proscons-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proscons-card li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.pros-card h3 { color: #059669; }
.pros-card li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: #059669;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
}

.cons-card h3 { color: #dc2626; }
.cons-card li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
}

/* --- FAQ --- */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item { background: var(--white); }

.faq-question {
  width: 100%;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gray-400);
  transition: transform var(--transition);
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 32px 24px;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* --- Trust Badges --- */
.trust-section { background: var(--dark); color: var(--white); }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.trust-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--gray-700);
  border-radius: 50%;
  font-size: 1.25rem;
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.trust-text {
  font-size: 0.8125rem;
  color: var(--gray-400);
}

/* --- CTA Banner --- */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #1e3a8a);
  color: var(--white);
  text-align: center;
}

.cta-section .section-title { color: var(--white); }
.cta-section .section-subtitle { color: rgba(255, 255, 255, 0.7); margin: 0 auto 40px; }

.cta-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.cta-price-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 40px;
}

/* --- Footer --- */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 64px 0 32px;
}
.footer .base-heading,
.footer .base-link { color: inherit; }
.footer .base-link:hover { color: var(--white); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-text {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  text-decoration: none;
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.footer-logo { height: 28px; width: auto; }
.footer-logo circle, .footer-logo line { stroke: var(--gray-500); }
.footer-logo text { fill: var(--gray-500); }

/* --- Detail Page --- */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 96px;
}

.detail-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-main-image {
  width: 100%;
  border-radius: 8px;
  background: var(--gray-100);
  overflow: hidden;
}

.detail-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.detail-thumbs {
  display: flex;
  gap: 12px;
}

.detail-thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
  background: var(--gray-100);
}

.detail-thumb.active, .detail-thumb:hover { border-color: var(--primary); }

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-sidebar {
  position: sticky;
  top: 104px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 40px 32px;
}

.detail-brand {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.detail-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.detail-model {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 24px;
}

.detail-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.detail-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.detail-features li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 24px;
  position: relative;
}

.detail-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.detail-btn {
  width: 100%;
  margin-bottom: 12px;
}

.detail-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.detail-content { padding-top: 16px; }

.detail-content h2 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 16px;
}

.detail-content h2:first-of-type { margin-top: 0; }

.detail-content p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* --- Legal Pages --- */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.legal-page .legal-updated {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-bottom: 48px;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark);
  margin: 40px 0 12px;
}

.legal-page p, .legal-page li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

/* --- Contact Page --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info { padding-top: 16px; }

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--dark);
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  color: var(--primary);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.contact-detail-text p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--light);
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* --- Cookie Popup --- */
.cookie-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 480px;
  z-index: 9999;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-popup.visible { transform: translateY(0); }
.cookie-popup.dismissed { transform: translateY(120%); }

.cookie-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cookie-text a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 24px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
}

.cookie-accept:hover { background: #1e3a8a; }

.cookie-reject {
  background: var(--gray-100);
  color: var(--gray-600);
}

.cookie-reject:hover { background: var(--gray-200); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-text { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-price { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 360px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  .detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .detail-sidebar { position: static; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 96px 32px 32px;
    gap: 24px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-toggle { display: flex; z-index: 1001; }

  .gallery-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .proscons-grid { grid-template-columns: 1fr; }

  .hero-image img { max-width: 280px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .cookie-popup { left: 12px; right: 12px; padding: 20px; }
  .cookie-actions { flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .site-html { font-size: 15px; }
  .container { padding: 0 16px; }
  .hero { min-height: auto; padding: 48px 0; }
  .section { padding: 48px 0; }
  .trust-grid { grid-template-columns: 1fr; }
}
