:root {
  --primary: #FF9F1C;
  --secondary: #E71D36;
  --accent: #2EC4B6;
  --background: #FDFFFC;
  --text: #011627;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;
  --shadow-sm: 0 1px 2px rgba(1, 22, 39, 0.05);
  --shadow-md: 0 4px 6px rgba(1, 22, 39, 0.07);
  --shadow-lg: 0 10px 15px rgba(1, 22, 39, 0.1);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-2xl: 64px;
  --spacing-3xl: 80px;
  --spacing-4xl: 120px;
  --spacing-5xl: 160px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(253, 255, 252, 0.8);
  border-bottom: 1px solid rgba(1, 22, 39, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-md) 0;
}

.brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.01em;
  z-index: 1001;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger-line {
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

nav ul {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
}

nav a {
  font-weight: 500;
  position: relative;
  padding: var(--spacing-xs) 0;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

.hero {
  padding: var(--spacing-4xl) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.2), transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.rating {
  display: flex;
  gap: 4px;
  color: var(--primary);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(46, 196, 182, 0.1);
  border: 1px solid rgba(46, 196, 182, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.hero-content h1 {
  margin-bottom: var(--spacing-md);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(1, 22, 39, 0.7);
  margin-bottom: var(--spacing-lg);
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
}

.old-price {
  font-size: 1.5rem;
  color: rgba(1, 22, 39, 0.4);
  text-decoration: line-through;
}

.order-form {
  background: rgba(255, 255, 252, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(1, 22, 39, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.form-group {
  position: relative;
  margin-bottom: var(--spacing-md);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-sm);
  border: 1px solid rgba(1, 22, 39, 0.2);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  background: var(--background);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.1);
}

.form-group label {
  position: absolute;
  left: var(--spacing-sm);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(1, 22, 39, 0.5);
  pointer-events: none;
  transition: all 0.3s ease;
  background: var(--background);
  padding: 0 4px;
}

.form-group textarea + label {
  top: var(--spacing-md);
  transform: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 0.75rem;
  color: var(--primary);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.875rem;
  color: rgba(1, 22, 39, 0.7);
  cursor: pointer;
}

.error-message {
  color: var(--secondary);
  font-size: 0.875rem;
  margin-top: 4px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input,
.form-group.error textarea {
  border-color: var(--secondary);
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.125rem;
  text-align: center;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--primary);
  color: var(--background);
  width: 100%;
}

.btn-primary:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
  box-shadow: 0 8px 20px rgba(255, 159, 28, 0.3);
}

.btn-secondary {
  background: var(--accent);
  color: var(--background);
}

.btn-secondary:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

section {
  padding: var(--spacing-4xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.section-subtitle {
  color: rgba(1, 22, 39, 0.6);
  font-size: 1.125rem;
  margin-top: var(--spacing-sm);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
}

.bento-card {
  background: rgba(255, 255, 252, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(1, 22, 39, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all 0.4s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 159, 28, 0.3);
  box-shadow: 0 12px 24px rgba(1, 22, 39, 0.08);
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--spacing-md);
  stroke: var(--primary);
  stroke-width: 1.5;
}

.bento-card h3 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.bento-card p {
  color: rgba(1, 22, 39, 0.7);
  line-height: 1.7;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-md);
  background: rgba(255, 255, 252, 0.6);
  border: 1px solid rgba(1, 22, 39, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.spec-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.spec-label {
  font-weight: 600;
  color: var(--text);
}

.spec-value {
  font-family: var(--font-mono);
  color: rgba(1, 22, 39, 0.7);
  font-size: 0.9rem;
}

.content-block {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-block p {
  margin-bottom: var(--spacing-md);
  color: rgba(1, 22, 39, 0.8);
}

.content-block ul {
  list-style: none;
  margin-bottom: var(--spacing-md);
}

.content-block li {
  padding-left: var(--spacing-lg);
  position: relative;
  margin-bottom: var(--spacing-sm);
}

.content-block li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.cta-section {
  text-align: center;
  padding: var(--spacing-5xl) 0;
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.05), rgba(46, 196, 182, 0.05));
}

.cta-section h2 {
  margin-bottom: var(--spacing-md);
}

.cta-section p {
  font-size: 1.125rem;
  color: rgba(1, 22, 39, 0.7);
  margin-bottom: var(--spacing-lg);
}

.instructions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.instruction-step {
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--background);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
}

.ingredient-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-md);
}

.ingredient-item {
  padding: var(--spacing-md);
  background: rgba(255, 255, 252, 0.6);
  border: 1px solid rgba(1, 22, 39, 0.08);
  border-radius: var(--radius-md);
}

.ingredient-item h4 {
  color: var(--primary);
  margin-bottom: var(--spacing-xs);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.review-card {
  padding: var(--spacing-lg);
  background: rgba(255, 255, 252, 0.6);
  border: 1px solid rgba(1, 22, 39, 0.08);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(1, 22, 39, 0.08);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-md);
}

.reviewer-name {
  font-weight: 600;
}

.review-rating {
  color: var(--primary);
}

.review-text {
  color: rgba(1, 22, 39, 0.7);
  line-height: 1.7;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--spacing-md);
  border: 1px solid rgba(1, 22, 39, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--spacing-md);
  background: rgba(255, 255, 252, 0.6);
  text-align: left;
  font-weight: 600;
  font-size: 1.125rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: rgba(255, 159, 28, 0.05);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: var(--spacing-md);
  color: rgba(1, 22, 39, 0.7);
  line-height: 1.7;
}

.disclaimer {
  max-width: 900px;
  margin: var(--spacing-2xl) auto 0;
  padding: var(--spacing-lg);
  background: rgba(231, 29, 54, 0.05);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: rgba(1, 22, 39, 0.7);
  line-height: 1.6;
}

footer {
  background: var(--text);
  color: var(--background);
  padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.footer-section h3 {
  margin-bottom: var(--spacing-md);
  color: var(--primary);
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: rgba(253, 255, 252, 0.7);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(253, 255, 252, 0.1);
  color: rgba(253, 255, 252, 0.6);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(1, 22, 39, 0.98);
  backdrop-filter: blur(16px);
  color: var(--background);
  padding: var(--spacing-lg);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.btn-cookie {
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-accept {
  background: var(--primary);
  color: var(--text);
}

.btn-reject {
  background: transparent;
  border: 1px solid rgba(253, 255, 252, 0.3);
  color: var(--background);
}

.btn-settings {
  background: transparent;
  border: 1px solid rgba(253, 255, 252, 0.3);
  color: var(--background);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(1, 22, 39, 0.8);
  backdrop-filter: blur(8px);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: var(--background);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-lg);
}

.cookie-close {
  background: none;
  font-size: 1.5rem;
  color: var(--text);
  padding: 0;
  width: 32px;
  height: 32px;
}

.cookie-category {
  padding: var(--spacing-md);
  border: 1px solid rgba(1, 22, 39, 0.1);
  border-radius: var(--radius-sm);
  margin-bottom: var(--spacing-md);
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--spacing-xs);
}

.cookie-category h4 {
  font-size: 1rem;
}

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 24px;
  background: rgba(1, 22, 39, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--background);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active {
  background: var(--accent);
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  font-size: 0.875rem;
  color: rgba(1, 22, 39, 0.7);
}

.cookie-modal-buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

.thank-you-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-2xl);
}

.thank-you-content {
  max-width: 600px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-size: 2.5rem;
}

.policy-hero {
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.08), rgba(46, 196, 182, 0.08));
  padding: var(--spacing-4xl) 0 var(--spacing-2xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.policy-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.1), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.policy-hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.1), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.policy-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.policy-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--spacing-md);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-date {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  background: rgba(255, 255, 252, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(1, 22, 39, 0.1);
  border-radius: var(--radius-lg);
  font-weight: 600;
  color: var(--text);
  margin-top: var(--spacing-md);
}

.policy-date svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--spacing-4xl) var(--spacing-md);
}

.policy-section {
  background: rgba(255, 255, 252, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(1, 22, 39, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
  transition: all 0.3s ease;
}

.policy-section:hover {
  border-color: rgba(255, 159, 28, 0.2);
  box-shadow: 0 8px 24px rgba(1, 22, 39, 0.06);
}

.policy-section h2 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
  color: var(--text);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.policy-section h2::before {
  content: '';
  width: 4px;
  height: 28px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.policy-section h3 {
  font-size: 1.25rem;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
  color: var(--primary);
}

.policy-section p {
  margin-bottom: var(--spacing-md);
  color: rgba(1, 22, 39, 0.8);
  line-height: 1.8;
}

.policy-section ul {
  margin-bottom: var(--spacing-md);
  padding-left: 0;
  list-style: none;
}

.policy-section li {
  margin-bottom: var(--spacing-sm);
  color: rgba(1, 22, 39, 0.8);
  padding-left: var(--spacing-lg);
  position: relative;
}

.policy-section li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.policy-highlight {
  background: rgba(255, 159, 28, 0.08);
  border-left: 4px solid var(--primary);
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-sm);
  margin: var(--spacing-lg) 0;
}

.policy-contact-box {
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.05), rgba(46, 196, 182, 0.05));
  border: 2px solid rgba(255, 159, 28, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
  text-align: center;
}

.policy-contact-box h3 {
  color: var(--text);
  margin-bottom: var(--spacing-md);
}

.policy-contact-box p {
  margin-bottom: var(--spacing-xs);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  :root {
    --spacing-4xl: 64px;
    --spacing-5xl: 80px;
  }

  .burger-menu {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(253, 255, 252, 0.98);
    backdrop-filter: blur(20px);
    padding: 80px 24px 24px;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -4px 0 24px rgba(1, 22, 39, 0.1);
  }

  nav.active {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav li {
    border-bottom: 1px solid rgba(1, 22, 39, 0.1);
  }

  nav a {
    display: block;
    padding: var(--spacing-md) 0;
    font-size: 1.125rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

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

  .bento-grid,
  .spec-grid,
  .ingredient-list,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .btn-cookie {
    width: 100%;
  }

  .price {
    font-size: 2rem;
  }

  .old-price {
    font-size: 1.25rem;
  }

  .policy-section {
    padding: var(--spacing-md);
  }

  .policy-hero {
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: var(--spacing-sm) 0;
  }

  .brand {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .instructions-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  :root {
    --spacing-md: 16px;
    --spacing-lg: 20px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-4xl: 48px;
  }

  .container {
    padding: 0 16px;
  }

  .brand {
    font-size: 1.125rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.375rem;
  }

  .hero {
    padding: var(--spacing-2xl) 0;
  }

  .price {
    font-size: 1.75rem;
  }

  .old-price {
    font-size: 1.125rem;
  }

  .btn {
    padding: var(--spacing-sm) var(--spacing-md);
    font-size: 1rem;
  }

  .order-form {
    padding: var(--spacing-md);
  }

  .bento-card,
  .policy-section {
    padding: var(--spacing-md);
  }

  .policy-hero h1 {
    font-size: 1.75rem;
  }

  .policy-date {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.875rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  nav {
    width: 100%;
    right: -100%;
  }

  nav.active {
    right: 0;
  }
}
