:root {
  --color-bg: #feebf6;
  --color-surface: #fcd8cd;
  --color-muted: #ebd6fb;
  --color-primary: #687fe5;
  --color-text: #1f2340;
  --color-error: #b3261e;
  --font-main: "Inter", "Segoe UI", Arial, sans-serif;
  --font-size-base: 16px;
  --font-size-lg: 1.125rem;
  --font-size-xl: 2.2rem;
  --shadow-sm: 0 6px 18px rgba(31, 35, 64, 0.08);
  --shadow-md: 0 12px 28px rgba(31, 35, 64, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  font-size: var(--font-size-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

main {
  overflow: clip;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover,
a:focus-visible {
  color: #3d52b0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(254, 235, 246, 0.96);
  border-bottom: 1px solid rgba(31, 35, 64, 0.1);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 72px;
  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;
  }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.main-nav a {
  color: var(--color-text);
  font-weight: 500;
}

.main-nav a:hover {
  color: var(--color-primary);
}

.hamburger {
  display: none;
  border: none;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: var(--color-text);
  border-radius: 10px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  padding: var(--space-6) 0 var(--space-5);
  background: linear-gradient(160deg, rgba(252, 216, 205, 0.55), rgba(254, 235, 246, 0.35));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-5);
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin: 0 0 var(--space-2);
}

.lead {
  font-size: var(--font-size-lg);
}

.hero-trust {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero-trust p {
  margin: 0;
  background: var(--color-muted);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
}

.pricing {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.current-price {
  font-size: 2rem;
  font-weight: 700;
  margin: var(--space-2) 0;
}

.old-price {
  margin: 0;
  color: #6f7392;
  text-decoration: line-through;
}

.hero-figure {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-md);
}

.microcopy {
  font-size: 0.92rem;
  color: #4f5578;
}

.order,
.content-section,
.disclaimer {
  padding: var(--space-5) 0;
}

.order-form {
  max-width: 640px;
  display: grid;
  gap: var(--space-1);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

label {
  margin-top: var(--space-2);
  font-weight: 600;
}

input,
textarea {
  border: 1px solid #cfd3f1;
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  font: inherit;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(104, 127, 229, 0.2);
}

.consent {
  display: flex;
  align-items: start;
  gap: var(--space-2);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(0.95);
}

.btn.secondary {
  background: #60587d;
}

.btn.ghost {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(31, 35, 64, 0.2);
}

.btn.small {
  padding: 0.55rem 0.8rem;
  font-size: 0.9rem;
}

.error-message {
  min-height: 1.1rem;
  margin: 0;
  color: var(--color-error);
  font-size: 0.9rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.info-tile {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  border: 1px solid rgba(104, 127, 229, 0.2);
  box-shadow: var(--shadow-sm);
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.alt {
  background: var(--color-muted);
}

.asym {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-4);
}

.ingredients {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: var(--space-1);
}

.faq-list {
  display: grid;
  gap: var(--space-2);
}

.faq-item {
  border: 1px solid rgba(31, 35, 64, 0.12);
  border-radius: var(--radius-md);
  background: #fff;
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq-item:hover {
  border-color: rgba(104, 127, 229, 0.45);
  transform: translateY(-1px);
}

.faq-item p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  opacity: 0;
  transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.faq-item.open p {
  max-height: 280px;
  opacity: 1;
  margin-top: var(--space-1);
}

.interactive-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin: var(--space-2) 0;
}

.tab-btn {
  border: 1px solid rgba(104, 127, 229, 0.3);
  background: #fff;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--color-primary);
  color: #fff;
}

.tab-panel {
  display: none;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: var(--space-3);
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

.contact-cta {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  display: block;
}

.site-footer {
  background: #222845;
  color: #f2f4ff;
  padding: var(--space-4) 0;
}

.footer-grid {
  display: grid;
  gap: var(--space-2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-links a,
.site-footer a {
  color: #cfd7ff;
}

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 460px;
  width: calc(100% - 2rem);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-3);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.cookie-settings {
  margin-top: var(--space-2);
  display: grid;
  gap: var(--space-1);
}

[data-animate] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {

  .hero-grid,
  .asym,
  .cards,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(31, 35, 64, 0.12);
    padding: var(--space-3);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
  }

  .hamburger {
    display: inline-block;
  }
}