:root {
  --color-primary: #1a7a6d;
  --color-primary-dark: #145f55;
  --color-primary-light: #2eb8a6;
  --color-secondary: #d4a94c;
  --color-secondary-dark: #b8922e;
  --color-accent: #e8f5f2;
  --color-bg: #fafcfb;
  --color-bg-alt: #f0f7f5;
  --color-bg-dark: #0d3d36;
  --color-text: #2c3e3a;
  --color-text-light: #5a7a73;
  --color-text-muted: #8a9e99;
  --color-white: #ffffff;
  --color-border: #d4e5e0;
  --color-error: #d94848;
  --color-success: #2eb87a;
  --color-star: #f0b429;
  --color-overlay: rgba(13, 61, 54, 0.85);
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', 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;
  --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 12px 40px rgba(0, 0, 0, 0.15);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50%;
  --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;
  --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);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -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);
  color: var(--color-text);
  line-height: 1.3;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  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: var(--header-height);
}

.brand-link {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.brand-link:hover {
  color: var(--color-primary-dark);
}

.brand-link .brand-icon {
  font-size: var(--fs-xl);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--fs-xl);
  color: var(--color-primary);
  cursor: pointer;
  padding: var(--space-sm);
  line-height: 1;
  z-index: 1100;
  transition: color var(--transition-fast);
}

.nav-toggle:hover {
  color: var(--color-primary-dark);
}

.nav-toggle .fa-xmark {
  display: none;
}

.nav-toggle.active .fa-bars {
  display: none;
}

.nav-toggle.active .fa-xmark {
  display: inline;
}

.main-nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.main-nav-list a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  color: var(--color-text);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.main-nav-list a:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
}

.hero {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-xl);
  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-star);
}

.hero-title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.15;
}

.hero-title span {
  color: var(--color-primary);
}

.hero-description {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  max-width: 520px;
  line-height: 1.8;
}

.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-bold);
  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;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper figure {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: var(--space-xl);
  max-width: 480px;
  width: 100%;
}

.hero-image-wrapper figure img {
  border-radius: var(--radius-md);
  width: 100%;
}

.order-form {
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.order-form h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  text-align: center;
  color: var(--color-primary-dark);
}

.form-group {
  margin-bottom: var(--space-md);
  position: relative;
}

.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-tag {
  font-weight: var(--fw-normal);
  color: var(--color-text-muted);
  font-size: var(--fs-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  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-color: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26, 122, 109, 0.12);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-error);
}

.form-group .error-message {
  display: none;
  color: var(--color-error);
  font-size: var(--fs-xs);
  margin-top: var(--space-xs);
}

.form-group .error-message.visible {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.5;
}

.checkbox-group label a {
  text-decoration: underline;
}

.checkbox-group .error-message {
  display: none;
  color: var(--color-error);
  font-size: var(--fs-xs);
  margin-top: var(--space-xs);
}

.checkbox-group .error-message.visible {
  display: block;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  width: 100%;
  padding: 14px var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  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: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-title {
  text-align: center;
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  text-align: center;
  font-size: var(--fs-md);
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto var(--space-3xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--fs-xl);
  margin: 0 auto var(--space-md);
}

.feature-card h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
  line-height: 1.6;
}

.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-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: var(--fs-lg);
}

.benefit-item h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.benefit-item p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

.description-content {
  max-width: 800px;
  margin: 0 auto;
}

.description-content p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.description-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.highlight-box {
  text-align: center;
  padding: var(--space-xl);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-white) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.highlight-box .highlight-number {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  display: block;
}

.highlight-box .highlight-label {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  counter-reset: step;
}

.instruction-step {
  position: relative;
  padding: var(--space-xl) var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  counter-increment: step;
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  margin: 0 auto var(--space-md);
}

.instruction-step h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.instruction-step p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

.ingredients-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}

.ingredient-item:hover {
  box-shadow: var(--shadow-md);
}

.ingredient-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: var(--fs-base);
}

.ingredient-item h4 {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.ingredient-item 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 {
  padding: var(--space-xl);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--color-star);
  margin-bottom: var(--space-md);
  font-size: var(--fs-sm);
}

.review-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
}

.review-author-info strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.review-author-info span {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  overflow: hidden;
  background-color: var(--color-white);
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
  text-align: left;
  gap: var(--space-md);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-question i {
  transition: transform var(--transition-base);
  flex-shrink: 0;
  color: var(--color-primary);
}

.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: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  padding: var(--space-4xl) 0;
}

.cta-section .section-title {
  color: var(--color-white);
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.cta-section .btn-primary {
  width: auto;
  padding: 16px var(--space-3xl);
  font-size: var(--fs-md);
}

.disclaimer-section {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
}

.disclaimer-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.disclaimer-text i {
  display: block;
  font-size: var(--fs-xl);
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.site-footer {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-brand-text {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact-item i {
  color: var(--color-primary-light);
  width: 20px;
  text-align: center;
}

.footer-heading {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
}

.footer-links li {
  margin-bottom: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  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-sm);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background-color: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: var(--space-xl) 0;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xl);
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  font-family: var(--font-primary);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.cookie-text p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.6;
}

.cookie-text a {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  white-space: nowrap;
}

.cookie-btn-accept {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.cookie-btn-accept:hover {
  background-color: var(--color-primary-dark);
}

.cookie-btn-reject {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.cookie-btn-reject:hover {
  border-color: var(--color-text-muted);
}

.cookie-btn-settings {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.cookie-btn-settings:hover {
  background-color: var(--color-accent);
}

.cookie-settings-panel {
  display: none;
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.cookie-settings-panel.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);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category-info h4 {
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

.cookie-category-info p {
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  border-radius: 24px;
  transition: background-color var(--transition-fast);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
}

.toggle-switch input:checked + .toggle-slider {
  background-color: 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;
}

.cookie-save-btn {
  margin-top: var(--space-md);
  padding: 10px 24px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.cookie-save-btn:hover {
  background-color: var(--color-primary-dark);
}

.thankyou-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-height) - 200px);
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-3xl);
  text-align: center;
}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-success);
  border-radius: var(--radius-full);
  font-size: var(--fs-3xl);
  margin: 0 auto var(--space-xl);
}

.thankyou-content h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.thankyou-content > p {
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
}

.thankyou-section {
  text-align: left;
  background-color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}

.thankyou-section h2 {
  font-family: var(--font-primary);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-md);
  color: var(--color-primary-dark);
}

.thankyou-steps {
  counter-reset: thankyou-step;
}

.thankyou-steps li {
  counter-increment: thankyou-step;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.thankyou-steps li:last-child {
  border-bottom: none;
}

.thankyou-steps li::before {
  content: counter(thankyou-step);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
}

.thankyou-section .contact-line {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-sm);
}

.thankyou-section .contact-line i {
  color: var(--color-primary);
  width: 20px;
  text-align: center;
}

.thankyou-back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 12px var(--space-xl);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  font-weight: var(--fw-semibold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.thankyou-back-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--color-white);
}

.policy-page {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  overflow: 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-3xl);
}

.policy-content h2 {
  font-size: var(--fs-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary-dark);
}

.policy-content h3 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.policy-content p {
  margin-bottom: var(--space-md);
  color: var(--color-text-light);
  line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.policy-content ul {
  list-style: disc;
}

.policy-content ol {
  list-style: decimal;
}

.policy-content li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-light);
  line-height: 1.7;
}

.policy-content a {
  text-decoration: underline;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-xl);
}

.policy-content th,
.policy-content td {
  padding: var(--space-md);
  text-align: left;
  border: 1px solid var(--color-border);
  font-size: var(--fs-sm);
}

.policy-content th {
  background-color: var(--color-bg-alt);
  font-weight: var(--fw-semibold);
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .instructions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --fs-4xl: 2.25rem;
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.5rem;
    --header-height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 1050;
    padding-top: calc(var(--header-height) + var(--space-lg));
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav-list {
    flex-direction: column;
    align-items: stretch;
    padding: 0 var(--space-lg);
  }

  .main-nav-list a {
    padding: var(--space-md);
    font-size: var(--fs-base);
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--color-overlay);
    z-index: 1040;
  }

  .nav-overlay.visible {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-image-wrapper figure {
    max-width: 360px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .description-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .ingredient-list {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .cookie-inner {
    flex-direction: column;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-4xl: 1.75rem;
    --fs-3xl: 1.5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .instructions-grid {
    grid-template-columns: 1fr;
  }

  .description-highlights {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-2xl);
  }

  .order-form {
    padding: var(--space-lg);
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
