@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700&display=swap');

:root {
  --color-primary: #2a7d5f;
  --color-primary-dark: #1e5c45;
  --color-primary-light: #e8f5ef;
  --color-primary-rgb: 42, 125, 95;
  --color-secondary: #d4a04a;
  --color-secondary-dark: #b8862e;
  --color-secondary-light: #fef8ec;
  --color-bg: #ffffff;
  --color-bg-alt: #f7f9f8;
  --color-bg-dark: #1a2e28;
  --color-text: #2d3436;
  --color-text-light: #636e72;
  --color-text-inverse: #ffffff;
  --color-border: #dfe6e9;
  --color-error: #d63031;
  --color-success: #00b894;
  --color-warning: #fdcb6e;

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Poppins', 'Inter', 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-regular: 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: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --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;

  --max-width: 1200px;
  --header-height: 72px;
  --transition: 0.3s ease;
}

*,
*::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);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  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);
}

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: 1.3;
  color: var(--color-text);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.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-xl);
}

.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;
  flex-shrink: 0;
}

.brand-link:hover {
  color: var(--color-primary-dark);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.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);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-list a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  font-size: var(--fs-xl);
  border-radius: var(--radius-md);
  transition: background var(--transition);
  position: relative;
  z-index: 1001;
}

.nav-toggle:hover {
  background: var(--color-bg-alt);
}

.nav-toggle .fa-xmark {
  display: none;
}

.nav-toggle.active .fa-bars {
  display: none;
}

.nav-toggle.active .fa-xmark {
  display: block;
}

.hero {
  padding-top: calc(var(--header-height) + var(--space-4xl));
  padding-bottom: var(--space-4xl);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-bg) 50%, var(--color-secondary-light) 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;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero-stars {
  display: flex;
  gap: 2px;
  color: var(--color-secondary);
  font-size: var(--fs-md);
}

.hero-rating-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.hero-badge {
  position: absolute;
  top: -10px;
  right: 10px;
  width: 80px;
  height: 80px;
  z-index: 2;
}

.hero-ingredients {
  position: absolute;
  bottom: 20px;
  left: -20px;
  width: 100px;
  height: 100px;
  z-index: 2;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.product-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.product-hero-image {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.hero-title {
  font-size: var(--fs-4xl);
  margin-bottom: var(--space-md);
  color: var(--color-text);
  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: 540px;
  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);
  font-family: var(--font-heading);
}

.price-old {
  font-size: var(--fs-lg);
  color: var(--color-text-light);
  text-decoration: line-through;
}

.order-form {
  background: var(--color-bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-width: 480px;
}

.order-form-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-lg);
  position: relative;
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xs);
  color: var(--color-text);
}

.form-group label .required {
  color: var(--color-error);
}

.form-group label .optional-tag {
  color: var(--color-text-light);
  font-weight: var(--fw-regular);
  font-size: var(--fs-xs);
}

.form-input {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--fs-base);
  font-family: var(--font-primary);
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.15);
}

.form-input.error {
  border-color: var(--color-error);
}

.form-input.success {
  border-color: var(--color-success);
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--color-error);
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible {
  display: block;
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.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-md);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  width: 100%;
  padding: var(--space-lg);
  font-size: var(--fs-md);
  border-radius: var(--radius-lg);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--color-text-inverse);
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text-inverse);
}

.btn-secondary:hover {
  background: var(--color-secondary-dark);
  color: var(--color-text-inverse);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.section {
  padding: var(--space-4xl) 0;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--color-bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--color-border);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--fs-xl);
}

.feature-title {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.feature-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.benefits-list {
  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-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--color-secondary-light);
  color: var(--color-secondary-dark);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.benefit-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.benefit-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.product-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.detail-text h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.detail-text p {
  margin-bottom: var(--space-lg);
  color: var(--color-text-light);
  line-height: 1.8;
}

.detail-highlights {
  background: var(--color-primary-light);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
}

.detail-highlights h3 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  color: var(--color-primary-dark);
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(var(--color-primary-rgb), 0.15);
  font-weight: var(--fw-medium);
}

.highlight-list li:last-child {
  border-bottom: none;
}

.highlight-list li i {
  color: var(--color-primary);
  font-size: var(--fs-md);
}

.instructions-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  counter-reset: step;
}

.step-card {
  text-align: center;
  padding: var(--space-2xl);
  background: var(--color-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  font-family: var(--font-heading);
}

.step-title {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.step-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.ingredient-card {
  padding: var(--space-xl);
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.ingredient-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.ingredient-icon {
  font-size: var(--fs-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.ingredient-name {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

.ingredient-desc {
  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-bg);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  display: flex;
  gap: 2px;
  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);
  margin-bottom: var(--space-lg);
  font-style: italic;
  line-height: 1.7;
}

.review-author {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
}

.review-date {
  font-size: var(--fs-xs);
  color: var(--color-text-light);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.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: var(--color-bg);
  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;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-bg-alt);
}

.faq-question i {
  transition: transform var(--transition);
  color: var(--color-primary);
  font-size: var(--fs-sm);
  flex-shrink: 0;
  margin-left: var(--space-md);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.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-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  color: var(--color-text-inverse);
}

.cta-section .section-title {
  color: var(--color-text-inverse);
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.cta-section .btn {
  background: var(--color-secondary);
  color: var(--color-text);
  font-size: var(--fs-lg);
  padding: var(--space-lg) var(--space-3xl);
  border-radius: var(--radius-lg);
}

.cta-section .btn:hover {
  background: var(--color-secondary-dark);
  color: var(--color-text-inverse);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.disclaimer-section {
  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-light);
  line-height: 1.8;
}

.disclaimer-content i {
  font-size: var(--fs-xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 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-text-inverse);
  margin-bottom: var(--space-md);
}

.footer-about {
  font-size: var(--fs-sm);
  line-height: 1.8;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-text-inverse);
  margin-bottom: var(--space-lg);
}

.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);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--fs-sm);
}

.footer-contact i {
  color: var(--color-secondary);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.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;
  background: var(--color-bg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid var(--color-primary);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-xl);
}

.cookie-text {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: var(--space-sm) var(--space-xl);
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

.cookie-btn-accept:hover {
  background: var(--color-primary-dark);
}

.cookie-btn-reject {
  background: var(--color-bg-alt);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.cookie-btn-reject:hover {
  background: var(--color-border);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.cookie-btn-settings:hover {
  background: var(--color-primary-light);
}

.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-of-type {
  border-bottom: none;
}

.cookie-category-info h4 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.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;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-border);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-bg);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.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-lg);
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.thank-you-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.thank-you-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: var(--space-4xl) var(--space-xl);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-xl);
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: var(--fs-3xl);
}

.thank-you-title {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-md);
}

.thank-you-text {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  margin-bottom: var(--space-2xl);
}

.next-steps {
  background: var(--color-bg-alt);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  margin-bottom: var(--space-2xl);
  text-align: left;
}

.next-steps h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.next-steps ol {
  list-style: decimal;
  padding-left: var(--space-xl);
}

.next-steps li {
  padding: var(--space-sm) 0;
  color: var(--color-text-light);
  font-size: var(--fs-sm);
}

.help-section {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
}

.help-section h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-md);
}

.help-section p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
}

.policy-page {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  min-height: 70vh;
}

.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-light);
  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 {
  padding: var(--space-xs) 0;
  color: var(--color-text-light);
  line-height: 1.7;
}

.policy-content a {
  color: var(--color-primary);
  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);
  border: 1px solid var(--color-border);
  text-align: left;
  font-size: var(--fs-sm);
}

.policy-content th {
  background: var(--color-bg-alt);
  font-weight: var(--fw-semibold);
}

@media (max-width: 1024px) {
  :root {
    --fs-4xl: 2.5rem;
    --fs-3xl: 2rem;
  }

  .hero-grid {
    gap: var(--space-xl);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .instructions-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .product-detail-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 882px) {
  :root {
    --fs-4xl: 2rem;
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.5rem;
    --space-4xl: 3.5rem;
    --space-3xl: 2.5rem;
    --header-height: 64px;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .header-inner {
    padding: 0 var(--space-md);
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-bg);
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .nav-overlay.visible {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
  }

  .nav-list a {
    padding: var(--space-md);
    font-size: var(--fs-base);
    border-radius: var(--radius-md);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-price {
    justify-content: center;
  }

  .hero-rating {
    justify-content: center;
  }

  .order-form {
    margin: 0 auto;
  }

  .product-hero-image {
    max-width: 280px;
  }

  .hero-badge {
    width: 60px;
    height: 60px;
    top: -5px;
    right: 0;
  }

  .hero-ingredients {
    width: 70px;
    height: 70px;
    left: 0;
    bottom: 10px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .instructions-steps {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .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: 2.5rem;
  }

  .order-form {
    padding: var(--space-lg);
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .section {
    padding: var(--space-3xl) 0;
  }
}
