:root {
  --color-primary: #2a7f62;
  --color-primary-dark: #1e5c47;
  --color-primary-light: #3a9e7c;
  --color-secondary: #1b4d3e;
  --color-accent: #a8e6cf;
  --color-accent-light: #d4f5e6;
  --color-bg: #f8faf9;
  --color-bg-alt: #eef5f1;
  --color-bg-white: #ffffff;
  --color-text: #2c3e36;
  --color-text-light: #5a6e64;
  --color-text-muted: #8a9e94;
  --color-border: #d1ddd6;
  --color-border-light: #e8efe9;
  --color-error: #d64545;
  --color-error-bg: #fef2f2;
  --color-success: #2a7f62;
  --color-success-bg: #f0faf5;
  --color-star: #f5a623;
  --color-old-price: #b0b0b0;
  --color-badge: #e8f5e9;
  --color-badge-text: #2a7f62;
  --color-overlay: rgba(0, 0, 0, 0.5);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 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;
  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;
  --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;
  --space-5xl: 8rem;
  --transition-fast: 0.2s ease;
  --transition-normal: 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-secondary);
}

.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;
  z-index: 1000;
  background-color: var(--color-bg-white);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  transition: box-shadow var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  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 i {
  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);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.nav-list a:hover {
  background-color: var(--color-bg-alt);
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  color: var(--color-text);
  font-size: var(--fs-xl);
  z-index: 1010;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.menu-toggle .icon-open,
.menu-toggle .icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.menu-toggle .icon-close {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.menu-toggle[aria-expanded="true"] .icon-open {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] .icon-close {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

.hero {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  background: linear-gradient(135deg, var(--color-bg-white) 0%, var(--color-accent-light) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-media {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-media figure {
  width: 100%;
  max-width: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-media figure img {
  width: 100%;
  height: auto;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-bg-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.hero-rating .stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
}

.hero-rating span {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  font-weight: var(--fw-medium);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background-color: var(--color-badge);
  color: var(--color-badge-text);
  border-radius: var(--radius-xl);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.hero-content h1 {
  font-size: var(--fs-3xl);
  color: var(--color-secondary);
}

.hero-content .hero-desc {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
}

.price-current {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
}

.price-old {
  font-size: var(--fs-lg);
  color: var(--color-old-price);
  text-decoration: line-through;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  background-color: var(--color-bg-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: var(--space-sm) var(--space-md);
  border: 1px 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-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--color-error);
  box-shadow: 0 0 0 3px var(--color-error-bg);
}

.form-group .error-msg {
  font-size: var(--fs-xs);
  color: var(--color-error);
  min-height: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  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: var(--lh-normal);
}

.checkbox-group label a {
  color: var(--color-primary);
  text-decoration: underline;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background-color: var(--color-primary);
  color: var(--color-bg-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: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
}

.section {
  padding: var(--space-4xl) 0;
}

.section:nth-child(even) {
  background-color: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-sm);
}

.section-header p {
  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-color: var(--color-bg-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--fs-xl);
}

.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-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.benefit-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.benefit-item:hover {
  box-shadow: var(--shadow-md);
}

.benefit-item .benefit-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
}

.benefit-item 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-content h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

.instructions-content {
  max-width: 700px;
  margin: 0 auto;
}

.instructions-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.instruction-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-radius: var(--radius-full);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  flex-shrink: 0;
}

.instruction-step h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
}

.instruction-step p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.ingredient-card {
  padding: var(--space-lg);
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ingredient-card .ingredient-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent-light);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--fs-lg);
}

.ingredient-card h3 {
  font-size: var(--fs-base);
  margin-bottom: var(--space-xs);
}

.ingredient-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.review-card {
  background-color: var(--color-bg-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-normal);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card .review-stars {
  display: flex;
  gap: 2px;
  color: var(--color-star);
  margin-bottom: var(--space-md);
}

.review-card p {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
  font-style: italic;
}

.review-card .reviewer {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-text);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background-color: var(--color-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg);
  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;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--color-bg-alt);
}

.faq-question i {
  transition: transform var(--transition-normal);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  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 var(--transition-normal), padding var(--transition-normal);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.cta-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  text-align: center;
  color: var(--color-bg-white);
}

.cta-section h2 {
  font-size: var(--fs-2xl);
  color: var(--color-bg-white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  font-size: var(--fs-md);
  opacity: 0.9;
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background-color: var(--color-bg-white);
  color: var(--color-primary);
}

.cta-section .btn-primary:hover {
  background-color: var(--color-accent-light);
  color: var(--color-primary-dark);
}

.disclaimer-section {
  padding: var(--space-2xl) 0;
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border-light);
}

.disclaimer-section p {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--lh-relaxed);
}

.site-footer {
  background-color: var(--color-secondary);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-2xl);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.footer-brand {
  max-width: 280px;
}

.footer-brand h3 {
  font-size: var(--fs-lg);
  color: var(--color-bg-white);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

.footer-links h4 {
  font-size: var(--fs-sm);
  color: var(--color-bg-white);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 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-bg-white);
}

.footer-contact p {
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact i {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: var(--fs-sm);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: var(--color-bg-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: var(--space-xl);
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.cookie-banner > .cookie-banner-inner > 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-buttons button {
  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-medium);
  cursor: pointer;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  border: 1px solid var(--color-border);
}

.btn-accept {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border-color: var(--color-primary) !important;
}

.btn-accept:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark) !important;
}

.btn-reject {
  background-color: var(--color-bg-white);
  color: var(--color-text);
}

.btn-reject:hover {
  background-color: var(--color-bg-alt);
}

.btn-settings {
  background-color: var(--color-bg-white);
  color: var(--color-text);
}

.btn-settings:hover {
  background-color: var(--color-bg-alt);
}

.cookie-settings {
  display: none;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.cookie-settings.visible {
  display: block;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
}

.cookie-toggle span {
  font-size: var(--fs-sm);
  color: var(--color-text);
}

.cookie-toggle .toggle-label {
  font-weight: var(--fw-medium);
}

.cookie-toggle .toggle-desc {
  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-bg-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;
}

.policy-page {
  padding-top: calc(var(--header-height) + var(--space-3xl));
  padding-bottom: var(--space-4xl);
  min-height: 80vh;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h1 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.policy-content .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);
}

.policy-content h3 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
  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 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-top: calc(var(--header-height) + var(--space-4xl));
  padding-bottom: var(--space-4xl);
  min-height: 80vh;
  text-align: center;
}

.thankyou-content {
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-success-bg);
  color: var(--color-success);
  border-radius: var(--radius-full);
  font-size: var(--fs-3xl);
}

.thankyou-content h1 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-md);
}

.thankyou-content p {
  font-size: var(--fs-md);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.thankyou-section {
  text-align: left;
  background-color: var(--color-bg-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
}

.thankyou-section h2 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

.thankyou-section p,
.thankyou-section li {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  line-height: var(--lh-relaxed);
}

.thankyou-section ul {
  list-style: disc;
  padding-left: var(--space-xl);
}

.thankyou-section li {
  margin-bottom: var(--space-sm);
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-media {
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 858px) {
  :root {
    --fs-3xl: 2rem;
    --fs-2xl: 1.5rem;
    --fs-xl: 1.25rem;
    --header-height: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: var(--color-bg-white);
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition-normal);
    z-index: 1005;
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .nav-list a {
    padding: var(--space-md);
    font-size: var(--fs-base);
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-overlay);
    z-index: 1000;
  }

  .nav-overlay.visible {
    display: block;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --fs-3xl: 1.75rem;
    --fs-2xl: 1.35rem;
  }

  .container {
    padding: 0 var(--space-md);
  }

  .hero {
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-2xl);
  }

  .order-form {
    padding: var(--space-lg);
  }

  .section {
    padding: var(--space-2xl) 0;
  }
}
