:root {
  --color-bg: #F7F6E5;
  --color-bg-alt: #ffffff;
  --color-primary: #36064D;
  --color-accent: #76D2DB;
  --color-cta: #DA4848;
  --color-text: #1a1a1a;
  --color-text-muted: #4a4a4a;
  --color-border: rgba(54, 6, 77, 0.15);
  --font-heading: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(54, 6, 77, 0.08);
  --shadow-md: 0 4px 12px rgba(54, 6, 77, 0.1);
  --shadow-lg: 0 8px 24px rgba(54, 6, 77, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --margin-section: 3rem;
  --margin-block: 1.5rem;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (min-width: 360px) {
  body {
    font-size: 1rem;
  }
}

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-cta);
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: var(--margin-block);
}

h1 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.875rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }

@media (min-width: 360px) {
  h1 { font-size: clamp(1.6rem, 4vw, 2.25rem); }
  h2 { font-size: clamp(1.45rem, 3vw, 1.875rem); }
}

p {
  margin-top: 0;
  margin-bottom: var(--margin-block);
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0.75rem;
}

@media (min-width: 360px) {
  .container {
    padding: 0 1rem;
  }
}

@media (min-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 2rem;
  }
}

header {
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-sm);
  padding: 15px;
  z-index: 100;
}

header .container,
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 360px) {
  header .container,
  .header-inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 101;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(54, 6, 77, 0.08);
}

.nav-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-accent);
}

.nav-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 18px;
  pointer-events: none;
}

.nav-icon-burger {
  display: block;
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary) 2px, transparent 2px, transparent 7px, var(--color-primary) 7px, var(--color-primary) 9px, transparent 9px, transparent 14px, var(--color-primary) 14px, var(--color-primary) 16px);
  background-size: 22px 18px;
  background-repeat: no-repeat;
  background-position: center;
}

.nav-icon-close {
  display: none;
  width: 20px;
  height: 20px;
  background: none;
}

.nav-icon-close::before,
.nav-icon-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  margin-left: -1px;
  margin-top: -10px;
  background: var(--color-primary);
  border-radius: 1px;
  transform-origin: center center;
}

.nav-icon-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-icon-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

header.nav-open .nav-icon-burger {
  display: none;
}

header.nav-open .nav-icon-close {
  display: block;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg-alt);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 2rem;
  overflow-y: auto;
}

.nav-overlay.is-open {
  display: flex;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
  border-bottom: 2px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.nav-menu a:hover {
  color: var(--color-cta);
  border-bottom-color: var(--color-accent);
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    position: static;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    background: transparent;
    padding: 0;
    overflow: visible;
  }

  .nav-overlay.is-open {
    display: flex;
  }

  .nav-menu ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: flex-end;
  }

  .nav-menu a {
    padding: 0.25rem 0;
    font-size: 1rem;
  }
}

.brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
}

@media (min-width: 360px) {
  .brand {
    font-size: 1.1rem;
    max-width: none;
  }
}

@media (min-width: 480px) {
  .brand {
    font-size: 1.25rem;
  }
}

.brand:hover {
  color: var(--color-primary);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

@media (min-width: 480px) {
  nav ul {
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  nav ul {
    gap: 1.25rem;
  }
}

nav a {
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 0.2rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

@media (min-width: 360px) {
  nav a {
    font-size: 0.875rem;
  }
}

@media (min-width: 480px) {
  nav a {
    font-size: 0.9375rem;
  }
}

@media (min-width: 768px) {
  nav a {
    font-size: 1rem;
  }
}

nav a:hover {
  border-bottom-color: var(--color-accent);
}

main {
  padding-bottom: var(--margin-section);
}

section {
  padding: 1.5rem 0;
}

@media (min-width: 360px) {
  section {
    padding: 2rem 0;
  }
}

@media (min-width: 480px) {
  section {
    padding: 2.5rem 0;
  }
}

@media (min-width: 768px) {
  section {
    padding: var(--margin-section) 0;
  }
}

section:nth-of-type(even) {
  background: var(--color-bg-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 1.25rem;
  color: var(--color-primary);
  font-size: 1.25rem;
}

@media (min-width: 360px) {
  .section-title {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
  }
}

@media (min-width: 480px) {
  .section-title {
    margin-bottom: 2rem;
    font-size: clamp(1.35rem, 3vw, 1.875rem);
  }
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-normal), transform var(--transition-fast), box-shadow var(--transition-normal);
  text-align: center;
  min-height: 44px;
}

@media (min-width: 360px) {
  .btn {
    font-size: 1rem;
    padding: 0.8125rem 1.5rem;
  }
}

@media (min-width: 480px) {
  .btn {
    padding: 0.875rem 1.75rem;
  }
}

.btn-primary {
  background: var(--color-cta);
  color: #fff;
}

.btn-primary:hover {
  background: #c23d3d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: #F7F6E5;
}

.btn-secondary {
  background: var(--color-primary);
  color: #fff;
}

.btn-secondary:hover {
  background: #2a0540;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn-accent:hover {
  background: #5fc4cc;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.hero {
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 360px) {
  .hero {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 480px) {
  .hero {
    padding-top: 1.75rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 768px) {
  .hero {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .hero .container {
    gap: 3rem;
  }
}

.hero-content {
  order: 2;
}

@media (min-width: 992px) {
  .hero-content {
    order: 1;
  }
}

.hero-image-wrap {
  order: 1;
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 360px) {
  .hero-image-wrap {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 480px) {
  .hero-image-wrap {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 992px) {
  .hero-image-wrap {
    order: 2;
    margin-bottom: 0;
  }
}

.hero-image-wrap figure {
  margin: 0;
  display: inline-block;
  max-width: 100%;
}

.hero-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--color-bg-alt);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
}

@media (min-width: 360px) {
  .rating-badge {
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}

.rating-badge .stars {
  color: #e6b800;
}

.trust-badge {
  display: inline-block;
  background: rgba(118, 210, 219, 0.25);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

@media (min-width: 360px) {
  .trust-badge {
    padding: 0.35rem 0.75rem;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 480px) {
  .trust-badge {
    margin-bottom: 1rem;
  }
}

.price-wrap {
  margin: 1rem 0;
}

@media (min-width: 360px) {
  .price-wrap {
    margin: 1.25rem 0;
  }
}

.price-current {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-cta);
  display: block;
}

@media (min-width: 360px) {
  .price-current {
    font-size: 1.6rem;
    display: inline;
  }
}

@media (min-width: 480px) {
  .price-current {
    font-size: 1.75rem;
  }
}

.price-old {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  margin-left: 0;
  display: block;
}

@media (min-width: 360px) {
  .price-old {
    font-size: 1rem;
    margin-left: 0.5rem;
    display: inline;
  }
}

.shipping-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

@media (min-width: 360px) {
  .shipping-badge {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}

.order-form {
  background: var(--color-bg-alt);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

@media (min-width: 360px) {
  .order-form {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
  }
}

@media (min-width: 480px) {
  .order-form {
    padding: 1.5rem;
  }
}

.order-form h2 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

@media (min-width: 480px) {
  .order-form h2 {
    font-size: 1.35rem;
  }
}

.form-group {
  margin-bottom: 0.875rem;
}

@media (min-width: 360px) {
  .form-group {
    margin-bottom: 1rem;
  }
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 0.3rem;
  color: var(--color-text);
}

@media (min-width: 480px) {
  .form-group label {
    font-size: 1rem;
    margin-bottom: 0.35rem;
  }
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 44px;
}

@media (min-width: 360px) {
  .form-group input,
  .form-group textarea {
    padding: 0.65rem 0.9rem;
    font-size: 1rem;
  }
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(118, 210, 219, 0.25);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--color-cta);
}

.form-group .error-msg {
  font-size: 0.85rem;
  color: var(--color-cta);
  margin-top: 0.25rem;
  display: none;
}

.form-group .error-msg.visible {
  display: block;
}

.form-group textarea {
  min-height: 90px;
  resize: vertical;
}

@media (min-width: 360px) {
  .form-group textarea {
    min-height: 100px;
  }
}

.form-group.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-group.checkbox-group input[type="checkbox"] {
  width: auto;
  min-width: 18px;
  min-height: 18px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.form-group.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
}

@media (min-width: 360px) {
  .form-group.checkbox-group label {
    font-size: 0.875rem;
  }
}

@media (min-width: 480px) {
  .form-group.checkbox-group label {
    font-size: 0.9375rem;
  }
}

.order-form .btn {
  width: 100%;
  padding: 0.875rem 1rem;
  margin-top: 0.5rem;
}

@media (min-width: 480px) {
  .order-form .btn {
    padding: 1rem;
  }
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 360px) {
  .specs-grid {
    gap: 1rem;
  }
}

@media (min-width: 480px) {
  .specs-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 600px) {
  .specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .specs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.spec-card {
  background: var(--color-bg);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-normal);
}

@media (min-width: 360px) {
  .spec-card {
    padding: 1.25rem;
  }
}

.spec-card:hover {
  box-shadow: var(--shadow-md);
}

.spec-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--color-primary);
}

.spec-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

@media (min-width: 360px) {
  .benefits-grid {
    gap: 1rem;
  }
}

@media (min-width: 480px) {
  .benefits-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 600px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.benefit-card {
  background: var(--color-bg);
  padding: 1rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

@media (min-width: 360px) {
  .benefit-card {
    padding: 1.25rem;
  }
}

@media (min-width: 480px) {
  .benefit-card {
    padding: 1.5rem;
  }
}

.benefit-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.content-block {
  max-width: 720px;
  margin: 0 auto;
}

.content-block p {
  font-size: 0.9375rem;
}

@media (min-width: 480px) {
  .content-block p {
    font-size: 1rem;
  }
}

.content-block ul {
  padding-left: 1rem;
  margin-bottom: var(--margin-block);
}

@media (min-width: 360px) {
  .content-block ul {
    padding-left: 1.25rem;
  }
}

.content-block li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

@media (min-width: 480px) {
  .content-block li {
    font-size: 1rem;
  }
}

.ingredients-list {
  list-style: none;
  padding-left: 0;
}

.ingredients-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  font-size: 0.9375rem;
}

@media (min-width: 480px) {
  .ingredients-list li {
    font-size: 1rem;
  }
}

.ingredients-list li:last-child {
  border-bottom: none;
}

.reviews-grid {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  background: var(--color-bg-alt);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-normal);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.review-stars {
  color: #e6b800;
  margin-bottom: 0.25rem;
}

.review-name {
  font-weight: 600;
  color: var(--color-primary);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  padding: 0.875rem 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  transition: color var(--transition-fast);
  min-height: 44px;
}

@media (min-width: 360px) {
  .faq-question {
    padding: 1rem 0;
    font-size: 1rem;
    gap: 1rem;
  }
}

.faq-question:hover {
  color: var(--color-cta);
}

.faq-question::after {
  content: '+';
  font-size: 1.15rem;
  flex-shrink: 0;
  transition: transform var(--transition-normal);
}

@media (min-width: 480px) {
  .faq-question::after {
    font-size: 1.25rem;
  }
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 0.875rem 0;
  display: none;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

@media (min-width: 480px) {
  .faq-answer {
    padding: 0 0 1rem 0;
    font-size: 1rem;
  }
}

.faq-answer p {
  margin-bottom: 0.5rem;
}

.faq-item.active .faq-answer {
  display: block;
}

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, rgba(54, 6, 77, 0.06) 0%, rgba(118, 210, 219, 0.15) 100%);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
}

@media (min-width: 360px) {
  .cta-section {
    padding: 1.75rem 1rem;
    border-radius: var(--radius-lg);
  }
}

@media (min-width: 480px) {
  .cta-section {
    padding: 2rem 1.25rem;
  }
}

@media (min-width: 768px) {
  .cta-section {
    padding: 2.5rem 1.5rem;
  }
}

.cta-section h2 {
  font-size: 1.25rem;
}

@media (min-width: 480px) {
  .cta-section h2 {
    font-size: 1.5rem;
  }
}

.cta-section .btn {
  margin-top: 1rem;
}

.contact-cta {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 360px) {
  .contact-cta {
    padding: 1.75rem 1rem;
    border-radius: var(--radius-lg);
  }
}

@media (min-width: 480px) {
  .contact-cta {
    padding: 2rem 1rem;
  }
}

.contact-cta h2 {
  font-size: 1.25rem;
}

@media (min-width: 480px) {
  .contact-cta h2 {
    font-size: 1.5rem;
  }
}

.contact-cta .btn {
  margin-top: 0.75rem;
}

footer {
  background: var(--color-primary);
  color: #fff;
  padding: 2rem 0 1.25rem;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  footer {
    padding: 2.5rem 0 1.5rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 768px) {
  footer {
    padding: var(--margin-section) 0 1.5rem;
    margin-top: var(--margin-section);
  }
}

footer a {
  color: var(--color-accent);
}

footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 360px) {
  .footer-grid {
    gap: 1.5rem;
    margin-bottom: 1.75rem;
  }
}

@media (min-width: 600px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-section h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

@media (min-width: 360px) {
  .footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0.3rem;
}

.footer-section p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 360px) {
  .footer-section p {
    font-size: 0.9rem;
  }
}

.footer-bottom {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.85);
}

@media (min-width: 360px) {
  .footer-bottom {
    font-size: 0.875rem;
    padding-top: 1.5rem;
  }
}

@media (min-width: 480px) {
  .footer-bottom {
    font-size: 0.9rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 0.875rem 0.75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 1000;
  display: none;
}

@media (min-width: 360px) {
  .cookie-banner {
    padding: 1rem 1rem;
  }
}

@media (min-width: 480px) {
  .cookie-banner {
    padding: 1.25rem 1.5rem;
  }
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.75rem;
  justify-content: space-between;
}

@media (min-width: 480px) {
  .cookie-banner .container {
    align-items: center;
    gap: 1rem;
  }
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 100%;
  font-size: 0.8125rem;
  line-height: 1.5;
  min-width: 0;
}

@media (min-width: 360px) {
  .cookie-banner p {
    font-size: 0.875rem;
    flex: 1 1 260px;
  }
}

@media (min-width: 480px) {
  .cookie-banner p {
    font-size: 0.95rem;
    flex: 1 1 280px;
  }
}

.cookie-banner .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
}

@media (min-width: 360px) {
  .cookie-banner .actions {
    gap: 0.5rem;
    width: auto;
  }
}

.cookie-banner .btn {
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
  min-height: 40px;
}

@media (min-width: 360px) {
  .cookie-banner .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    min-height: 44px;
  }
}

.cookie-banner .btn-primary {
  background: var(--color-cta);
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(54, 6, 77, 0.6);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

@media (min-width: 360px) {
  .cookie-settings-modal {
    padding: 1rem;
  }
}

.cookie-settings-modal.visible {
  display: flex;
}

.cookie-settings-content {
  background: var(--color-bg-alt);
  max-width: 480px;
  width: 100%;
  min-width: 0;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  max-height: 85vh;
  overflow-y: auto;
}

@media (min-width: 360px) {
  .cookie-settings-content {
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    max-height: 90vh;
  }
}

.cookie-settings-content h3 {
  margin-top: 0;
  color: var(--color-primary);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.cookie-toggle:last-of-type {
  border-bottom: none;
}

.cookie-toggle.disabled label {
  opacity: 0.7;
}

.cookie-toggle input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.small {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.switch {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.switch::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: #fff;
  top: 2px;
  left: 2px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast);
}

input:checked + .switch {
  background: var(--color-accent);
}

input:checked + .switch::after {
  transform: translateX(20px);
}

input[type="checkbox"].switch-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.page-header {
  padding: 1.25rem 0.75rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
}

@media (min-width: 360px) {
  .page-header {
    padding: 1.5rem 0 1rem;
    margin-bottom: 1.75rem;
  }
}

@media (min-width: 480px) {
  .page-header {
    padding: 2rem  1rem;
    margin-bottom: 2rem;
  }
}

.page-header h1 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

@media (min-width: 480px) {
  .page-header h1 {
    font-size: 1.5rem;
  }
}

.page-header p {
  font-size: 0.875rem;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

@media (min-width: 360px) {
  .legal-content h2 {
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 480px) {
  .legal-content h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}

.legal-content h3 {
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
}

@media (min-width: 480px) {
  .legal-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
}

.legal-content p,
.legal-content li {
  font-size: 0.9375rem;
}

@media (min-width: 480px) {
  .legal-content p,
  .legal-content li {
    font-size: 1rem;
  }
}

.legal-content ul {
  padding-left: 1rem;
  margin-bottom: 0.875rem;
}

@media (min-width: 360px) {
  .legal-content ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
  }
}

.thank-you-page main {
  padding: 1.25rem 0 2rem;
}

@media (min-width: 360px) {
  .thank-you-page main {
    padding: 1.5rem 0 2.5rem;
  }
}

@media (min-width: 480px) {
  .thank-you-page main {
    padding: 2rem 0 3rem;
  }
}

.thank-you-box {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

@media (min-width: 360px) {
  .thank-you-box {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.75rem;
  }
}

@media (min-width: 480px) {
  .thank-you-box {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

.thank-you-box h1 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

@media (min-width: 480px) {
  .thank-you-box h1 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}

.thank-you-box .subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
}

@media (min-width: 480px) {
  .thank-you-box .subtitle {
    margin-bottom: 1.5rem;
    font-size: 1rem;
  }
}

.thank-you-box h2 {
  font-size: 1.15rem;
}

@media (min-width: 480px) {
  .thank-you-box h2 {
    font-size: 1.35rem;
  }
}

.steps-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

@media (min-width: 480px) {
  .steps-list {
    margin: 1.5rem 0;
  }
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

@media (min-width: 360px) {
  .steps-list li {
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
}

.steps-list .step-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

@media (min-width: 360px) {
  .steps-list .step-num {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}

.order-summary {
  background: var(--color-bg);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin: 1.25rem 0;
}

@media (min-width: 480px) {
  .order-summary {
    padding: 1.25rem;
    margin: 1.5rem 0;
  }
}

.order-summary h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 480px) {
  .order-summary h3 {
    font-size: 1rem;
  }
}

.order-summary .product-name {
  font-weight: 600;
  color: var(--color-primary);
}

.thank-you-contact {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border);
}

@media (min-width: 480px) {
  .thank-you-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }
}

.thank-you-contact h3 {
  font-size: 1rem;
}

.thank-you-contact a[href^="mailto:"] {
  font-weight: 600;
  word-break: break-all;
  font-size: 0.9375rem;
}

@media (min-width: 480px) {
  .thank-you-contact a[href^="mailto:"] {
    font-size: 1rem;
  }
}

.thank-you-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 480px) {
  .thank-you-badges {
    gap: 1rem;
    margin-top: 1.5rem;
  }
}

.thank-you-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

@media (min-width: 360px) {
  .thank-you-badge {
    font-size: 0.875rem;
    gap: 0.5rem;
  }
}

@media (min-width: 480px) {
  .thank-you-badge {
    font-size: 0.9rem;
  }
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.25rem;
}

@media (min-width: 360px) {
  .thank-you-actions {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
}

.thank-you-actions .btn {
  min-width: 0;
  width: 100%;
}

@media (min-width: 480px) {
  .thank-you-actions .btn {
    width: auto;
  }
}

@media (max-width: 479px) {
  .thank-you-actions {
    flex-direction: column;
  }
}

@media (max-width: 319px) {
  .container {
    padding: 0 0.5rem;
  }

  .brand {
    font-size: 0.9375rem;
  }

  nav a {
    font-size: 0.75rem;
  }

  .hero-image-wrap img {
    max-width: 280px;
    margin: 0 auto;
  }

  .order-form {
    padding: 0.875rem;
  }

  .cookie-banner .actions .btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}
