:root {
  --color-primary: #2A7F62;
  --color-primary-dark: #1E5E48;
  --color-primary-light: #3DA87E;
  --color-secondary: #E8B931;
  --color-secondary-dark: #C9A02A;
  --color-accent: #4A90A4;
  --color-bg: #FAFBFC;
  --color-bg-alt: #F0F4F3;
  --color-bg-dark: #1B2A2A;
  --color-text: #2D3436;
  --color-text-light: #636E72;
  --color-text-muted: #B2BEC3;
  --color-text-white: #FFFFFF;
  --color-border: #DFE6E9;
  --color-border-light: #EDF2F1;
  --color-error: #D63031;
  --color-success: #00B894;
  --color-warning: #FDCB6E;
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --shadow-card: 0 2px 8px rgba(42,127,98,0.08);
  --shadow-hover: 0 8px 24px rgba(42,127,98,0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 1200px;
  --header-height: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--color-text);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.brand-link:hover {
  color: var(--color-primary-dark);
}

.brand-link .brand-icon {
  font-size: var(--fs-xl);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-list a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
  position: absolute;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.nav-toggle span:nth-child(2) {
  transform: translateY(0);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-content {
  order: 1;
}

.hero-visual {
  order: 2;
  display: flex;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--color-text-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.hero-stars {
  color: var(--color-secondary);
}

.hero-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-description {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.price-current {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
}

.price-old {
  font-size: var(--fs-lg);
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.hero-image-wrapper {
  position: relative;
  max-width: 420px;
}

.hero-image-wrapper figure {
  position: relative;
}

.hero-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.order-form-section {
  background: var(--color-text-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  max-width: 480px;
}

.order-form-section h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-group label .optional-label {
  font-weight: var(--fw-normal);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  color: var(--color-text);
  background: var(--color-bg);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(42,127,98,0.12);
  background: var(--color-text-white);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px rgba(214,48,49,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.error-message {
  display: none;
  font-size: var(--fs-xs);
  color: var(--color-error);
  margin-top: var(--space-xs);
  align-items: center;
  gap: var(--space-xs);
}

.error-message.visible {
  display: flex;
}

.consent-group {
  margin-bottom: var(--space-lg);
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  cursor: pointer;
  line-height: var(--lh-normal);
}

.consent-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
  width: 16px;
  height: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-text-white);
  padding: var(--space-md) var(--space-xl);
  font-size: var(--fs-md);
  border-radius: var(--radius-md);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--color-text-white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--color-text-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  background: rgba(42,127,98,0.1);
  color: var(--color-primary);
}

.feature-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.benefit-item {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-xl);
  background: var(--color-text-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.benefit-item:hover {
  box-shadow: var(--shadow-hover);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  flex-shrink: 0;
  background: rgba(42,127,98,0.1);
  color: var(--color-primary);
}

.benefit-content h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-xs);
}

.benefit-content p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
}

.description-content p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.description-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-text-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.highlight-item i {
  color: var(--color-primary);
  font-size: var(--fs-lg);
}

.highlight-item span {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: var(--color-text-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid var(--color-border-light);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  margin: 0 auto var(--space-md);
}

.step-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.step-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.ingredients-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-text-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.ingredient-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.ingredient-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  flex-shrink: 0;
  background: rgba(42,127,98,0.1);
  color: var(--color-primary);
}

.ingredient-info h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.ingredient-info p {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.review-card {
  background: var(--color-text-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: all var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-hover);
}

.review-stars {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  font-size: var(--fs-sm);
}

.review-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
}

.review-name {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.review-date {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  background: var(--color-text-white);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
}

.faq-question i {
  transition: transform var(--transition-base);
  color: var(--color-primary);
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: var(--space-4xl) 0;
  text-align: center;
  color: var(--color-text-white);
}

.cta-section h2 {
  font-size: var(--fs-3xl);
  color: var(--color-text-white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: var(--fs-md);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-cta {
  background: var(--color-text-white);
  color: var(--color-primary);
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.cta-section .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--color-primary-dark);
}

.disclaimer-section {
  padding: var(--space-2xl) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.disclaimer-content p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: var(--lh-relaxed);
}

.disclaimer-content i {
  color: var(--color-warning);
  margin-right: var(--space-xs);
}

.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-white);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  line-height: var(--lh-relaxed);
  margin-top: var(--space-md);
  max-width: 300px;
}

.footer-brand .brand-link {
  color: var(--color-text-white);
}

.footer-heading {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  color: rgba(255,255,255,0.5);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-text-white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
}

.footer-contact i {
  margin-top: 3px;
  color: var(--color-primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-xl);
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text-white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  z-index: 9999;
  padding: var(--space-xl) var(--space-lg);
  transform: translateY(100%);
  transition: transform var(--transition-base);
  border-top: 2px solid var(--color-primary);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.cookie-content > p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-relaxed);
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.cookie-btn {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 2px solid transparent;
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.cookie-btn-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.cookie-btn-reject:hover {
  border-color: var(--color-text);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cookie-btn-settings:hover {
  background: var(--color-primary);
  color: var(--color-text-white);
}

.cookie-settings {
  display: none;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.cookie-settings.visible {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.cookie-category-info p {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-text-white);
  top: 3px;
  left: 3px;
  transition: all var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--color-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.save-preferences-btn {
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-lg);
  background: var(--color-primary);
  color: var(--color-text-white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.save-preferences-btn:hover {
  background: var(--color-primary-dark);
}

.policy-page {
  padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-4xl);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-sm);
}

.policy-date {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.policy-content h2 {
  font-size: var(--fs-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border-light);
}

.policy-content h3 {
  font-size: var(--fs-lg);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.policy-content p {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.policy-content ul {
  list-style: disc;
  padding-left: var(--space-xl);
  margin-bottom: var(--space-md);
}

.policy-content ul li {
  font-size: var(--fs-base);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.policy-content a {
  color: var(--color-primary);
  text-decoration: underline;
}

.thankyou-page {
  padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  font-size: 4rem;
  color: var(--color-success);
  margin-bottom: var(--space-xl);
}

.thankyou-content h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.thankyou-content > p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
}

.thankyou-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  text-align: left;
  margin-bottom: var(--space-2xl);
}

.thankyou-card {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}

.thankyou-card h2 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.thankyou-card h2 i {
  color: var(--color-primary);
}

.thankyou-card ol {
  list-style: decimal;
  padding-left: var(--space-xl);
}

.thankyou-card ol li,
.thankyou-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-sm);
}

.thankyou-card a {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

@media (max-width: 1024px) {
  :root {
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instructions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 948px) {
  :root {
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.5rem;
    --space-4xl: 4rem;
    --space-3xl: 3rem;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--color-text-white);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-xl) var(--space-xl);
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a {
    padding: var(--space-md) var(--space-md);
    font-size: var(--fs-base);
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
  }

  .nav-overlay.visible {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .hero-content {
    order: 1;
    text-align: center;
  }

  .hero-visual {
    order: 2;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-price {
    justify-content: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .order-form-section {
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .instructions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ingredients-list {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .description-highlights {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-cards {
    grid-template-columns: 1fr;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
    --space-4xl: 3rem;
    --space-3xl: 2rem;
    --header-height: 64px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .header-inner {
    padding: 0 var(--space-md);
  }

  .instructions-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: calc(var(--header-height) + var(--space-xl)) 0 var(--space-2xl);
  }

  .order-form-section {
    padding: var(--space-lg);
  }
}
