/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CSS RESET & VARIABLES ===== */
:root {
  --primary: #1e3a8a;
  --primary-light: #3b82f6;
  --primary-dark: #172554;
  --primary-pale: #eff6ff;
  --accent: #d97706;
  --accent-light: #f59e0b;
  --accent-dark: #b45309;
  --warm-bg: #fffbeb;
  --dark: #020617;
  --dark-light: #0f172a;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --shadow-sm: 0 1px 3px rgba(30,58,95,0.06);
  --shadow-md: 0 4px 12px rgba(30,58,95,0.08);
  --shadow-lg: 0 10px 30px rgba(30,58,95,0.10);
  --shadow-xl: 0 20px 50px rgba(30,58,95,0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE RESET ===== */
.site-body, .site-body *, .site-body *::before, .site-body *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

.base-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.base-link {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.base-list {
  list-style: none;
}

.base-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8f0fa 0%, #f0f7ff 50%, #e8f0fa 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 140px;
  margin-bottom: 28px;
  animation: preloaderFloat 2s ease-in-out infinite;
}

@keyframes preloaderFloat {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-8px); opacity: 0.85; }
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(74,127,193,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader-text {
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  color: var(--primary);
  letter-spacing: 3px;
  font-weight: 600;
}

/* ===== AD DISCLOSURE BANNER ===== */
.ad-disclosure {
  background: var(--dark);
  color: #a8c4e0;
  font-size: 0.75rem;
  text-align: center;
  padding: 8px 20px;
  line-height: 1.5;
  font-family: var(--font-body);
}

.ad-disclosure a {
  color: var(--accent-light);
  text-decoration: underline;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 14px rgba(232,130,74,0.35);
}

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

.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,130,74,0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1.4;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(232,130,74,0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232,130,74,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(30,58,95,0.2);
}

.btn-dark:hover {
  background: var(--dark-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30,58,95,0.3);
}

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

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

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

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #e8f0fa 0%, #f0f7ff 40%, #fafcff 70%, #fff 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(74,127,193,0.07) 0%, transparent 65%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 40%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(232,130,74,0.05) 0%, transparent 65%);
  border-radius: 50%;
}

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

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(74,127,193,0.25);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-badge svg {
  width: 15px;
  height: 15px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--dark);
}

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

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.8;
}

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

.hero-price .current {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark);
}

.hero-price .original {
  font-size: 1.3rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.hero-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.hero-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.hero-image-badge .label {
  font-size: 0.7rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.hero-image-badge .value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0;
}

.section-light {
  background: var(--gray-50);
}

.section-warm {
  background: var(--warm-bg);
}

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

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

.section-header-left {
  margin-bottom: 40px;
  text-align: left;
}

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

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-title-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto;
}

.subtitle-left {
  text-align: left;
  margin: 0;
}

/* ===== PRODUCT GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

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

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(30,58,95,0.5));
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
}

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

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(74,127,193,0.3);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== COMFORT SHOWCASE ===== */
.comfort-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.comfort-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.comfort-image img {
  width: 100%;
  display: block;
}

.comfort-title {
  font-size: 2.2rem;
  margin-bottom: 16px;
  margin-top: 8px;
}

.comfort-text {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.comfort-text-last {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.comfort-points {
  list-style: none;
  margin-top: 28px;
}

.comfort-points li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 1rem;
  color: var(--gray-700);
}

.comfort-points li:last-child {
  border-bottom: none;
}

.comfort-points li svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== SPECS TABLE ===== */
.specs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.specs-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.specs-content p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.specs-table {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}

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

.specs-table th,
.specs-table td {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.95rem;
}

.specs-table th {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.specs-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table tr:nth-child(even) {
  background: var(--gray-50);
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  width: 40%;
}

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

/* ===== PROS / CONS ===== */
.pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pros-card, .cons-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid;
}

.pros-card {
  border-color: #3b9e6a;
}

.cons-card {
  border-color: var(--gray-300);
}

.pros-card h3, .cons-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.pros-card h3 svg { color: #3b9e6a; }
.cons-card h3 svg { color: var(--gray-400); }

.pros-card li, .cons-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.pros-card li:last-child, .cons-card li:last-child {
  border-bottom: none;
}

.pros-card li svg, .cons-card li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pros-card li svg { color: #3b9e6a; }
.cons-card li svg { color: var(--gray-400); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(74,127,193,0.3);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  transition: var(--transition);
  gap: 16px;
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.faq-item.active .faq-icon svg {
  color: var(--white);
}

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

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ===== TRUST BADGES ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.trust-card h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2c4f7c 50%, #3a6090 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -15%;
  width: 50%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(74,127,193,0.15) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -10%;
  width: 40%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(232,130,74,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 1.12rem;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.7;
}

.cta-section .btn {
  position: relative;
}

.cta-price-box {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
}

.cta-price-box .current {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
}

.cta-price-box .original {
  font-size: 1.25rem;
  text-decoration: line-through;
  opacity: 0.5;
}

/* ===== FOOTER ===== */
.footer {
  background: #152d4a;
  color: #7a9cc0;
  padding: 60px 0 0;
}

.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: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.9rem;
  color: #7a9cc0;
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.8rem;
  color: #4a6a8a;
}

.footer-bottom a {
  color: #7a9cc0;
}

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

/* ===== COOKIE POPUP ===== */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(30,58,95,0.12);
  z-index: 9998;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 3px solid var(--primary);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

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

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ===== DETAIL PAGE ===== */
.detail-hero {
  padding: 40px 0 80px;
  background: linear-gradient(160deg, #e8f0fa 0%, #f0f7ff 50%, #fff 100%);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-gallery {
  position: relative;
}

.detail-main-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  margin-bottom: 16px;
}

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

.detail-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  opacity: 0.6;
}

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

.detail-sidebar {
  position: sticky;
  top: 120px;
}

.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.price-card-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  font-weight: 600;
  margin-bottom: 8px;
}

.price-card-title {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.price-card-subtitle {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.price-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}

.price-card .price-current {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--dark);
}

.price-card .price-original {
  font-size: 1.15rem;
  color: var(--gray-400);
  text-decoration: line-through;
}

.price-card .price-save {
  display: inline-block;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.price-card-specs {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  font-weight: 600;
}

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

.price-card-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.price-card-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-600);
}

.price-card-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
}

/* ===== LEGAL / STATIC PAGES ===== */
.legal-page {
  padding: 80px 0;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--dark);
}

.legal-page h3 {
  font-size: 1.1rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-page p {
  color: var(--gray-700);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-page ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-page ul li {
  color: var(--gray-700);
  font-size: 0.95rem;
  margin-bottom: 8px;
  line-height: 1.7;
}

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

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-card h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.contact-item-text h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

.contact-link {
  color: var(--primary);
}

.contact-info-text {
  padding: 20px 0;
}

.contact-info-text h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.heading-gap {
  margin-top: 24px;
}

.contact-info-text p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--gray-500);
}

.breadcrumb a {
  color: var(--primary);
}

.breadcrumb span {
  margin: 0 8px;
  color: var(--gray-300);
}

/* ===== RESPONSIVE: 1024px ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-grid {
    gap: 40px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .specs-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-grid {
    gap: 40px;
  }

  .comfort-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 0;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
  }

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

  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--gray-100);
  }

  .nav-cta {
    margin-top: 16px;
    width: 100%;
    text-align: center;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30,58,95,0.4);
    z-index: 999;
  }

  .mobile-overlay.active {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-price .current {
    font-size: 2.2rem;
  }

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

  .hero-image {
    order: -1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .pros-cons-grid {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    position: static;
  }

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

  .cta-section h2 {
    font-size: 2rem;
  }

  .cta-price-box .current {
    font-size: 2.2rem;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ===== RESPONSIVE: 480px ===== */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-price .current {
    font-size: 1.9rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

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

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .detail-thumbs {
    flex-wrap: wrap;
  }

  .price-card {
    padding: 24px;
  }

  .price-card .price-current {
    font-size: 2rem;
  }

  .ad-disclosure {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .nav-container {
    height: 60px;
  }

  .nav-logo img {
    height: 34px;
  }
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-2 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 32px; }
