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

:root {
  --color-primary: rgb(31, 31, 32);
  --color-secondary: rgb(74, 136, 17);
  --color-accent: rgb(59, 10, 150);
  --color-bg: #F9FAFB;
  --color-bg-alt: #FFFFFF;
  --color-bg-dark: rgb(31, 31, 32);
  --color-text: #111827;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #059669;
  --color-error: #DC2626;
  --color-warning: #D97706;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-green: 0 8px 30px rgba(74,136,17,0.2);
  --shadow-accent: 0 8px 30px rgba(59,10,150,0.2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;

  --container-max: 1200px;
  --header-height: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section { padding: var(--space-20) 0; }
.section-alt { background: var(--color-bg-alt); }
.section-dark { background: var(--color-bg-dark); color: #F9FAFB; }

.section-label {
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: var(--space-4);
}

.section-dark .section-title { color: #F9FAFB; }

.section-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 600px;
}

.section-header {
  margin-bottom: var(--space-12);
}

.section-header.center {
  text-align: center;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--font-size-base);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-primary:hover {
  background: rgb(60, 112, 12);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(74,136,17,0.35);
  color: #fff;
}

.btn-primary:active { transform: translateY(0); }

.btn-accent {
  background: var(--color-accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-accent:hover {
  background: rgb(45, 8, 115);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(59,10,150,0.35);
  color: #fff;
}

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

.btn-outline:hover {
  background: var(--color-secondary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: var(--space-4) var(--space-10); font-size: var(--font-size-lg); }
.btn-sm { padding: var(--space-2) var(--space-5); font-size: var(--font-size-sm); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.badge-trust {
  background: rgba(74,136,17,0.12);
  color: rgb(55, 102, 12);
  border: 1px solid rgba(74,136,17,0.25);
}

.badge-accent {
  background: rgba(59,10,150,0.1);
  color: var(--color-accent);
  border: 1px solid rgba(59,10,150,0.2);
}

.card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(249, 250, 251, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-primary);
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--color-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.site-nav { display: flex; align-items: center; gap: var(--space-8); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links a {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
  position: relative;
}

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

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6);
  flex-direction: column;
  gap: var(--space-4);
  z-index: 99;
  box-shadow: var(--shadow-md);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu a:last-child { border-bottom: none; }

.hero {
  padding: var(--space-16) 0 var(--space-20);
  background: linear-gradient(135deg, #F9FAFB 0%, #EFF6E8 50%, #F0EEFF 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74,136,17,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59,10,150,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: var(--space-5);
}

.hero-title .highlight {
  color: var(--color-secondary);
  position: relative;
}

.hero-desc {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.price-block {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.price-current {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-primary);
}

.price-old {
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price-save {
  background: rgba(74,136,17,0.12);
  color: rgb(55,102,12);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-frame {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,136,17,0.04) 0%, rgba(59,10,150,0.04) 100%);
}

.hero-image-frame img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.hero-image-placeholder {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-4);
  background: linear-gradient(135deg, #EFF6E8, #F0EEFF);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.hero-image-placeholder i {
  font-size: 80px;
  color: var(--color-secondary);
  opacity: 0.4;
}

.hero-image-placeholder p {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.order-form-wrap {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-top: var(--space-8);
}

.order-form-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  text-align: center;
}

.form-group { margin-bottom: var(--space-5); }

.form-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.form-label .required { color: var(--color-error); margin-left: 2px; }

.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(74,136,17,0.1);
  background: white;
}

.form-control.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.08);
}

.form-control.success {
  border-color: var(--color-success);
}

.form-error {
  display: none;
  color: var(--color-error);
  font-size: var(--font-size-xs);
  margin-top: var(--space-1);
  align-items: center;
  gap: var(--space-1);
}

.form-error.visible { display: flex; }

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.checkbox-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-secondary);
  cursor: pointer;
}

.checkbox-wrap label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-wrap label a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.benefit-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition-base);
  transform-origin: left;
}

.benefit-card:hover::before { transform: scaleX(1); }

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

.benefit-icon {
  width: 56px;
  height: 56px;
  background: rgba(74,136,17,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-secondary);
  margin-bottom: var(--space-5);
}

.benefit-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.benefit-desc {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.65;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-base);
}

.ingredient-item:hover { box-shadow: var(--shadow-sm); }

.ingredient-dot {
  width: 10px;
  height: 10px;
  background: var(--color-secondary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.ingredient-name {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-1);
  font-size: var(--font-size-sm);
}

.ingredient-desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.specs-table th, .specs-table td {
  padding: var(--space-4) var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.specs-table th {
  font-weight: 700;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #F3F4F6;
  width: 40%;
}

.specs-table td {
  font-weight: 500;
  color: var(--color-text);
}

.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: rgba(74,136,17,0.03); }

.faq-list { display: flex; flex-direction: column; gap: var(--space-4); }

.faq-item {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-weight: 600;
  color: var(--color-text);
  font-size: var(--font-size-base);
  text-align: left;
  background: none;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.faq-trigger:hover { color: var(--color-secondary); }

.faq-trigger i {
  font-size: 18px;
  color: var(--color-secondary);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-item.open .faq-trigger i { transform: rotate(180deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-body { max-height: 300px; }

.faq-body-inner {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-secondary), var(--color-accent));
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  position: relative;
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--color-secondary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--font-size-lg);
  flex-shrink: 0;
  box-shadow: var(--shadow-green);
  position: relative;
  z-index: 1;
}

.step-body { padding-top: var(--space-3); }

.step-title {
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.step-desc {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.65;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, rgb(45,45,50) 100%);
  color: white;
  text-align: center;
  padding: var(--space-20) 0;
}

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

.legal-box {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  gap: var(--space-4);
}

.legal-box i { color: var(--color-warning); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.legal-box p { font-size: var(--font-size-sm); color: #92400E; line-height: 1.6; }

.disclaimer-box {
  background: #F8F8F8;
  border-left: 4px solid var(--color-text-muted);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-6);
  margin-top: var(--space-8);
}

.disclaimer-box p { font-size: var(--font-size-xs); color: var(--color-text-muted); line-height: 1.7; }

.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.8);
  padding: var(--space-16) 0 var(--space-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer-brand .brand { color: white; margin-bottom: var(--space-4); }
.footer-desc { font-size: var(--font-size-sm); line-height: 1.7; margin-bottom: var(--space-5); }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: white;
  margin-bottom: var(--space-5);
}

.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }

.footer-links a {
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copy { font-size: var(--font-size-xs); color: rgba(255,255,255,0.4); }

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.footer-legal-links a {
  font-size: var(--font-size-xs);
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: white;
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
  padding: var(--space-6);
  display: none;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.cookie-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
  line-height: 1.6;
}

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

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.cookie-settings-panel {
  display: none;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.cookie-settings-panel.open { display: block; }

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-toggle-row:last-child { border-bottom: none; }

.cookie-toggle-label { font-size: var(--font-size-sm); font-weight: 600; color: var(--color-text); }
.cookie-toggle-desc { font-size: var(--font-size-xs); color: var(--color-text-muted); }

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle input { opacity: 0; width: 0; height: 0; }

.toggle-track {
  position: absolute;
  inset: 0;
  background: #D1D5DB;
  border-radius: 24px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.toggle input:checked + .toggle-track { background: var(--color-secondary); }
.toggle input:disabled + .toggle-track { opacity: 0.6; cursor: not-allowed; }

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-xs);
}

.toggle input:checked + .toggle-track::after { transform: translateX(20px); }

.policy-page { padding: var(--space-16) 0 var(--space-24); }

.policy-content h2 {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin: var(--space-8) 0 var(--space-4);
}

.policy-content h3 {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin: var(--space-6) 0 var(--space-3);
}

.policy-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.75;
  font-size: var(--font-size-sm);
}

.policy-content ul {
  margin: var(--space-4) 0;
  padding-left: var(--space-5);
}

.policy-content ul li {
  list-style: disc;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-2);
  line-height: 1.65;
}

.policy-content a { color: var(--color-secondary); text-decoration: underline; }

.policy-header {
  padding: var(--space-16) 0 var(--space-10);
  background: linear-gradient(135deg, #F9FAFB, #EFF6E8);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-10);
}

.policy-header h1 {
  font-family: var(--font-heading);
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.policy-header p { color: var(--color-text-muted); font-size: var(--font-size-base); }

.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, #F9FAFB, #EFF6E8);
}

.thank-you-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--space-16) var(--space-12);
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: rgba(74,136,17,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--color-secondary);
  margin: 0 auto var(--space-6);
}

.not-found-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-20) 0;
}

.not-found-num {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 700;
  color: var(--color-secondary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.detail-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

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

.detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.detail-image-placeholder {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-3);
  background: linear-gradient(135deg, #EFF6E8, #F0EEFF);
}

.detail-image-placeholder i { font-size: 60px; color: var(--color-secondary); opacity: 0.4; }

.legal-finland {
  background: #F0F4FF;
  border: 1px solid #C7D2FE;
  border-radius: var(--radius-md);
  padding: var(--space-6);
}

.legal-finland-title {
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-base);
}

.legal-finland p { font-size: var(--font-size-sm); color: #3730A3; line-height: 1.65; margin-bottom: var(--space-3); }
.legal-finland p:last-child { margin-bottom: 0; }

.contact-info { display: flex; flex-direction: column; gap: var(--space-3); }

.contact-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  color: rgba(255,255,255,0.7);
}

.contact-row i { color: var(--color-secondary); width: 18px; }

@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 848px) {
  :root { --header-height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .site-nav .btn { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .hero-image-wrap { order: -1; }

  .section { padding: var(--space-16) 0; }
  .section-title { font-size: var(--font-size-2xl); }
  .section-header { margin-bottom: var(--space-8); }

  .benefits-grid { grid-template-columns: 1fr; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .detail-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .price-current { font-size: var(--font-size-3xl); }
  .cookie-actions { flex-direction: column; align-items: flex-start; }
  .cookie-actions .btn { width: 100%; }
  .policy-header h1 { font-size: var(--font-size-3xl); }
  .thank-you-card { padding: var(--space-10) var(--space-6); }
}

@media (max-width: 480px) {
  .flex-column{
    display: flex !important;
    flex-direction: column;
  }
  .container { padding: 0 var(--space-4); }
  .order-form-wrap { padding: var(--space-6); }
  .hero { padding: var(--space-10) 0 var(--space-16); }
  .brand{
    font-size: 1rem;
  }
  .btn-lg{
    font-size: 0.9rem;
  }
  table th,td{
    font-size: 0.6rem;
  }
}
