:root {
  --c-bg: #132440;
  --c-surface: #0f1d33;
  --c-text: #eaf2ff;
  --c-muted: #b9c7e6;
  --c-accent: #FDB5CE;
  --c-accent-2: #16476A;
  --c-accent-3: #3B9797;
  --c-border: rgba(234, 242, 255, .14);
  --c-shadow: rgba(0, 0, 0, .28);

  --font-swiss: "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --fs-body: 16px;
  --fs-subtitle: 1.05rem;
  --lh-body: 1.5;

  --shadow-1: 0 10px 30px var(--c-shadow);
  --shadow-2: 0 18px 50px rgba(0, 0, 0, .35);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;

  --container: 1120px;
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: var(--font-swiss);
  font-size: var(--fs-body);
  background: linear-gradient(180deg, rgba(22, 71, 106, .28), rgba(19, 36, 64, 1) 45%);
  color: var(--c-text);
  line-height: var(--lh-body);
}

img,
svg,
iframe {
  max-width: 100%;
  height: auto
}

.skip-link-wrap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden
}

.skip-link-wrap:focus-within {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #000;
  padding: 10px 12px;
  border-radius: 12px;
  z-index: 9999
}

.skip-link {
  color: #fff;
  text-decoration: none
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(19, 36, 64, .85);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid var(--c-border);
}

.header-top-inner {
  display: flex;
  justify-content: flex-end;
}

.top-contact {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 0;
  color: var(--c-text);
  text-decoration: none;
}

.top-contact:hover {
  color: var(--c-accent)
}

.top-contact-label {
  font-weight: 600;
  letter-spacing: .2px
}

.top-contact-value {
  font-weight: 500;
  opacity: .95
}

.header-main {
  padding: var(--space-2) 0;
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.brand {
  display: block;
}

.brand img {
  width: 4rem;
  position: relative;
  z-index: 20;
}

.brand img {
  display: inline-block;
  transform: rotate(-5deg);
  transition: transform var(--transition-normal);
}

.brand:hover img {
  transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 768px) {
  .brand img {
    width: 3rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 576px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

@media (max-width: 400px) {
  .brand img {
    width: 2rem;
    position: relative;
    z-index: 20;
  }
}

.menu-toggle {
  display: none;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, .02);
  color: var(--c-text);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(253, 181, 206, .55);
  background: rgba(253, 181, 206, .08)
}

.menu-toggle-lines {
  width: 22px;
  height: 14px;
  display: block;
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  transition: transform .25s ease, top .25s ease, opacity .2s ease;
}

.menu-toggle-lines::before {
  top: 2px
}

.menu-toggle-lines::after {
  top: 10px
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.primary-nav-simple {
  gap: var(--space-3)
}

.nav-link {
  color: var(--c-text);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: transparent;
  transition: color .2s ease, text-decoration-color .2s ease, transform .2s ease;
  padding: 6px 0;
}

.nav-link:hover {
  color: var(--c-accent);
  text-decoration-color: var(--c-accent);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid rgba(253, 181, 206, .35);
  border-radius: 14px;
  background: rgba(253, 181, 206, .08);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: rgba(253, 181, 206, .14);
  border-color: rgba(253, 181, 206, .6);
  color: var(--c-text);
}

.site-main {
  padding-bottom: var(--space-6)
}

.section {
  padding: var(--space-6) 0
}

.section-alt {
  background: linear-gradient(180deg, rgba(253, 181, 206, .06), rgba(255, 255, 255, 0))
}

.hero {
  padding: var(--space-6) 0 var(--space-5)
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-5);
  align-items: start;
}

.hero-title {
  margin: 0 0 var(--space-2) 0;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: .2px;
}

.hero-subtitle {
  margin: 0 0 var(--space-4) 0;
  color: var(--c-muted);
  font-size: var(--fs-subtitle);
}

.hero-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-4) 0;
  display: grid;
  gap: 12px;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.check {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(59, 151, 151, .95);
  box-shadow: 0 0 0 6px rgba(59, 151, 151, .12);
}

.hero-rating {
  display: grid;
  gap: 8px;
  margin: var(--space-3) 0 var(--space-4) 0;
  padding: 14px 16px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, .03);
  border-radius: var(--r-md);
}

.stars {
  display: flex;
  gap: 4px;
  color: var(--c-accent)
}

.star-dim {
  color: rgba(253, 181, 206, .45)
}

.rating-text {
  font-weight: 700
}

.rating-note {
  color: var(--c-muted);
  font-size: .95rem
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 12px 16px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
  outline: none;
}

.btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(253, 181, 206, .22)
}

.btn-primary {
  background: linear-gradient(180deg, rgba(253, 181, 206, 1), rgba(253, 181, 206, .78));
  color: #132440;
  border-color: rgba(253, 181, 206, .5);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-1)
}

.btn-secondary {
  background: rgba(255, 255, 255, .03);
  color: var(--c-text);
  border-color: rgba(234, 242, 255, .16);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(253, 181, 206, .5)
}

.btn-quiet {
  background: rgba(20, 71, 106, .25);
  color: var(--c-text);
  border-color: rgba(59, 151, 151, .35);
}

.btn-quiet:hover {
  transform: translateY(-1px);
  border-color: rgba(59, 151, 151, .65)
}

.btn-compact {
  padding: 10px 12px;
  border-radius: 14px
}

.btn-ghost {
  background: transparent
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .04)
}

.btn-wide {
  min-width: 240px
}

.btn-spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(19, 36, 64, .35);
  border-top-color: #132440;
  animation: spin 1s linear infinite;
  display: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.hero-media {
  position: relative
}

.media-frame {
  position: absolute;
  inset: -14px -20px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(253, 181, 206, .35), rgba(253, 181, 206, 0) 62%);
  filter: blur(0px);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  border-radius: var(--r-lg);
  border: 1px solid rgba(253, 181, 206, .18);
  box-shadow: var(--shadow-1);
  transform: translateZ(0);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  animation: floatSoft 7s ease-in-out infinite;
  will-change: transform;
}

.hero-media:hover .hero-image {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-2);
  border-color: rgba(253, 181, 206, .35);
  animation-play-state: paused;
}

@keyframes floatSoft {

  0%,
  100% {
    transform: translateY(0) translateZ(0)
  }

  50% {
    transform: translateY(-8px) translateZ(0)
  }
}

.hero-order {
  display: flex;
  flex-direction: column;
  gap: var(--space-3)
}

.price-card {
  padding: 18px 18px;
  border-radius: var(--r-md);
  border: 1px solid rgba(253, 181, 206, .22);
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .01));
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.price-title {
  font-weight: 900;
  font-size: 1.1rem
}

.price-badge {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(59, 151, 151, .14);
  border: 1px solid rgba(59, 151, 151, .35);
  color: var(--c-text);
  font-weight: 700;
  width: max-content;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px
}

.price-current {
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-accent)
}

.price-old {
  text-decoration: line-through;
  color: rgba(234, 242, 255, .55);
  font-weight: 700
}

.price-sub {
  margin-top: 8px;
  color: var(--c-muted);
  font-weight: 600
}

.order-form {
  padding: 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, .02);
}

.form-title {
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 10px
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 14px
}

.field:first-of-type {
  margin-top: 0
}

.label {
  font-weight: 700;
  color: var(--c-muted)
}

.input,
.textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(234, 242, 255, .18);
  background: rgba(255, 255, 255, .03);
  color: var(--c-text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.textarea {
  resize: vertical;
  min-height: 110px
}

.input:focus,
.textarea:focus {
  border-color: rgba(253, 181, 206, .6);
  box-shadow: 0 0 0 4px rgba(253, 181, 206, .18);
  background: rgba(255, 255, 255, .05);
}

.field-error {
  min-height: 18px;
  font-size: .95rem;
  color: #ffb6cc;
}

.input[aria-invalid="true"],
.textarea[aria-invalid="true"] {
  border-color: rgba(255, 182, 204, .95);
  box-shadow: 0 0 0 4px rgba(255, 182, 204, .12);
}

.consent-row {
  margin-top: 16px
}

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.checkbox input {
  margin-top: 4px
}

.checkbox-label {
  color: var(--c-muted);
  font-weight: 600
}

.form-note {
  margin: 14px 0 0 0;
  color: var(--c-muted);
  font-weight: 600;
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0 0 0;
  color: var(--c-muted);
  font-weight: 700;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px
}

.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 151, 151, .14);
  border: 1px solid rgba(59, 151, 151, .35);
  color: var(--c-accent);
  font-weight: 900;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px
}

.section-title {
  margin: 0;
  font-size: 2rem;
  letter-spacing: .2px
}

.section-subtitle {
  margin: 0;
  color: var(--c-muted);
  font-weight: 600
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-5);
}

.card {
  padding: 18px;
  border-radius: var(--r-md);
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, .02);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .14);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  border-color: rgba(253, 181, 206, .35);
  box-shadow: var(--shadow-1);
}

.card-title {
  margin: 0 0 10px 0;
  font-size: 1.2rem
}

.card-text {
  margin: 0;
  color: var(--c-muted);
  font-weight: 600
}

.panel {
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(253, 181, 206, .22);
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  box-shadow: var(--shadow-1);
}

.panel-text {
  color: var(--c-muted);
  font-weight: 600
}

.panel-bullets {
  margin-top: 18px;
  display: grid;
  gap: 12px
}

.bullet-row {
  display: flex;
  gap: 12px;
  align-items: flex-start
}

.bullet-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(253, 181, 206, .95);
  margin-top: 6px;
  box-shadow: 0 0 0 6px rgba(253, 181, 206, .12)
}

.panel-media {
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, .02);
  transition: transform .35s ease, border-color .35s ease;
}

.hover-shrink:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 151, 151, .5)
}

.mini-list {
  margin: 14px 0 0 0;
  padding-left: 18px;
  color: var(--c-muted);
  font-weight: 600
}

.mini-item {
  margin: 10px 0
}

.seal {
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: var(--r-md);
  border: 1px solid rgba(59, 151, 151, .35);
  background: rgba(59, 151, 151, .08);
}

.seal-top {
  font-weight: 900
}

.seal-bottom {
  margin-top: 8px;
  color: var(--c-muted);
  font-weight: 700
}

.ingredients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-4);
}

.tabs-card {
  padding: 0;
  overflow: hidden
}

.tabs-nav {
  display: flex;
  gap: 10px;
  padding: 16px 16px 0 16px;
  flex-wrap: wrap;
  align-items: center;
}

.tab-btn {
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(234, 242, 255, .14);
  color: var(--c-text);
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.tab-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(253, 181, 206, .5);
  background: rgba(253, 181, 206, .08)
}

.tab-btn.is-active {
  border-color: rgba(253, 181, 206, .75);
  background: rgba(253, 181, 206, .12)
}

.tab-panels {
  padding: 12px 16px 16px 16px
}

.tab-panel {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease
}

.tab-panel.is-visible {
  opacity: 1;
  transform: translateY(0)
}

.ingredient-list {
  margin: 14px 0 0 0;
  padding-left: 18px;
  color: var(--c-muted);
  font-weight: 650
}

.ingredient {
  margin: 10px 0
}

.divider {
  height: 1px;
  background: rgba(234, 242, 255, .14);
  margin: 16px 0
}

.routine-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: var(--space-4);
  align-items: start;
}

.routine-card,
.routine-result {
  border-radius: var(--r-lg);
  border: 1px solid rgba(234, 242, 255, .14);
  background: rgba(255, 255, 255, .02);
  box-shadow: var(--shadow-1);
}

.routine-card {
  padding: 18px
}

.routine-result {
  padding: 18px
}

.routine-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}

.routine-option {
  width: 100%;
  text-align: left;
  border-radius: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(234, 242, 255, .14);
  background: rgba(255, 255, 255, .02);
  color: var(--c-text);
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.routine-option:hover {
  transform: translateY(-1px);
  border-color: rgba(253, 181, 206, .55);
  background: rgba(253, 181, 206, .08)
}

.routine-option.is-active {
  border-color: rgba(253, 181, 206, .8);
  background: rgba(253, 181, 206, .12)
}

.routine-text {
  color: var(--c-muted);
  font-weight: 650;
  margin: 8px 0 0 0
}

.routine-cta {
  margin-top: 14px
}

.routine-meta {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(234, 242, 255, .12)
}

.routine-meta-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap
}

.routine-meta-row .cta-meta-label {
  opacity: .95
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonials {
  margin-top: 4px
}

.testimonial-stars {
  color: var(--c-accent);
  font-size: 1.1rem
}

.quote {
  margin: 12px 0 0 0;
  color: var(--c-muted);
  font-weight: 650
}

.author {
  margin: 12px 0 0 0;
  color: rgba(234, 242, 255, .7);
  font-weight: 800
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--c-text);
  text-align: left;
  padding: 16px 16px;
  cursor: pointer;
  font-weight: 900;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-question::after {
  content: "+";
  color: var(--c-accent);
  font-weight: 900;
}

.faq-item[aria-expanded="true"] .faq-question::after {
  content: "–"
}

.faq-answer {
  padding: 0 16px 16px 16px;
  color: var(--c-muted);
  font-weight: 650
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

.cta-card {
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(253, 181, 206, .22);
  background: rgba(255, 255, 255, .02);
  box-shadow: var(--shadow-1);
}

.cta-text {
  color: var(--c-muted);
  font-weight: 650;
  margin-top: 10px
}

.cta-meta {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(234, 242, 255, .12)
}

.cta-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

.cta-meta-label {
  color: var(--c-muted);
  font-weight: 800
}

.cta-meta-value {
  font-weight: 900
}

.cta-map {
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, .02);
}

.map-head {
  display: grid;
  gap: 8px;
  margin-bottom: 14px
}

.map-title {
  font-weight: 900;
  font-size: 1.1rem
}

.map-address {
  color: var(--c-muted);
  font-weight: 650
}

.map-frame {
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(234, 242, 255, .12);
}

.map-frame iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block
}

.disclaimer {
  border-top: 1px solid rgba(234, 242, 255, .12);
}

.disclaimer-text {
  color: var(--c-muted);
  font-weight: 650
}

.site-footer {
  border-top: 1px solid rgba(234, 242, 255, .14);
  background: rgba(0, 0, 0, .08);
}

.footer-inner {
  padding: var(--space-4) 0
}

.footer-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}

.footer-line-single {
  justify-content: space-between;
}

.footer-link {
  color: var(--c-muted);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
  text-decoration-color: transparent;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.footer-link:hover {
  color: var(--c-accent);
  text-decoration-color: var(--c-accent);
}

.footer-copy {
  margin: 0;
  color: rgba(234, 242, 255, .7);
  font-weight: 700;
}

.policy {
  padding: var(--space-6) 0
}

.policy-article {
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, .02);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.policy-title {
  margin: 0 0 10px 0;
  font-size: 2rem
}

.policy-intro {
  margin: 0 0 18px 0;
  color: var(--c-muted);
  font-weight: 650
}

.policy-section {
  margin-top: 18px
}

.policy-h {
  margin: 0 0 10px 0;
  font-size: 1.2rem
}

.policy-p {
  margin: 10px 0 0 0;
  color: var(--c-muted);
  font-weight: 650
}

.policy-list {
  margin: 12px 0 0 0;
  padding-left: 18px
}

.policy-li {
  margin: 10px 0;
  color: var(--c-muted);
  font-weight: 650
}

.policy-link {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 4px
}

.thankyou-card {
  padding: 22px;
  border-radius: var(--r-lg);
  border: 1px solid rgba(253, 181, 206, .22);
  background: rgba(255, 255, 255, .02);
  box-shadow: var(--shadow-1);
}

.thankyou-title {
  margin: 0 0 10px 0;
  font-size: 2rem
}

.thankyou-text {
  margin: 0;
  color: var(--c-muted);
  font-weight: 650
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px
}

.thankyou-meta {
  margin-top: 16px;
  border-top: 1px solid rgba(234, 242, 255, .12);
  padding-top: 14px
}

.thankyou-meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.muted {
  color: var(--c-muted);
  font-weight: 800
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: rgba(19, 36, 64, .96);
  border-top: 1px solid rgba(234, 242, 255, .14);
  padding: 16px 0;
  transform: translateY(0);
  transition: transform .25s ease, opacity .25s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px
}

.cookie-title {
  font-weight: 900
}

.cookie-desc {
  color: var(--c-muted);
  font-weight: 650;
  margin-top: 4px
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0, 0, 0, .6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.is-open {
  display: flex
}

.cookie-modal-inner {
  width: min(620px, 100%);
  border-radius: var(--r-lg);
  border: 1px solid rgba(234, 242, 255, .18);
  background: rgba(19, 36, 64, .98);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}

.cookie-modal-head {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(234, 242, 255, .14);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-modal-title {
  font-weight: 900
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(234, 242, 255, .16);
  background: rgba(255, 255, 255, .02);
  color: var(--c-text);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(253, 181, 206, .55);
  background: rgba(253, 181, 206, .08)
}

.cookie-modal-body {
  padding: 16px
}

.cookie-toggle {
  padding: 14px 0;
  border-bottom: 1px solid rgba(234, 242, 255, .12)
}

.cookie-toggle:last-child {
  border-bottom: 0
}

.cookie-toggle-row {
  display: flex;
  align-items: flex-start;
  gap: 12px
}

.cookie-toggle-row input {
  margin-top: 3px
}

.cookie-toggle-desc {
  margin-top: 8px;
  color: var(--c-muted);
  font-weight: 650
}

.cookie-modal-actions {
  padding: 16px;
  border-top: 1px solid rgba(234, 242, 255, .14);
  display: flex;
  justify-content: flex-end
}

.order-form.is-submitting .btn-spinner {
  display: inline-block
}

.order-form.is-submitting button {
  pointer-events: none
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4)
  }

  .two-col {
    grid-template-columns: 1fr
  }

  .cta-grid {
    grid-template-columns: 1fr
  }

  .routine-grid {
    grid-template-columns: 1fr
  }

  .three-col {
    grid-template-columns: 1fr;
    gap: var(--space-3)
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3)
  }
}

@media (max-width: 760px) {
  .header-top-inner {
    justify-content: flex-start
  }

  .menu-toggle {
    display: inline-flex
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: rgba(19, 36, 64, .98);
    border-bottom: 1px solid rgba(234, 242, 255, .14);
    padding: 16px var(--space-3);
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .btn-wide {
    min-width: 0;
    width: 100%
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start
  }

  .cookie-actions {
    width: 100%
  }

  .cookie-actions .btn {
    flex: 1
  }

  .cookie-modal-actions {
    justify-content: stretch
  }

  .cookie-modal-actions .btn-wide {
    width: 100%
  }

  .map-frame iframe {
    height: 210px
  }

  .routine-options {
    gap: 8px
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important
  }
}