:root {
  color-scheme: light;
  --bg: #f7ebe2;
  --bg-muted: #fdf1e6;
  --surface: #fff8f3;
  --surface-strong: #f2d7c4;
  --surface-muted: #fffaf5;
  --brand: #c96b4e;
  --brand-dark: #7b422b;
  --gold: #d9a84f;
  --text: #2d2d2d;
  --text-muted: #6a5147;
  --border: #e4cdb9;
  --shadow: 0 18px 40px rgba(140, 92, 63, 0.14);
  --radius-lg: 18px;
  --radius: 12px;
  --font-heading: "Playfair Display", "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(circle at 20% 20%, rgba(217, 168, 79, 0.12), transparent 32%),
    radial-gradient(circle at 78% -6%, rgba(201, 107, 78, 0.14), transparent 30%),
    linear-gradient(180deg, #fff8f3 0%, #f5e2d4 48%, #fff8f3 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  padding: 0.6rem 1rem;
  background: var(--brand);
  color: #fff;
  border-radius: 8px;
  z-index: 1001;
}

.skip-link:focus-visible {
  top: 1rem;
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 1.75rem);
}

.security-banner {
  background: #0f5132;
  color: #f1f7f3;
  font-size: 0.95rem;
}

.banner-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #f8f9fa;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 1.15rem;
  color: var(--brand-dark);
}

.brand-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.primary-nav ul {
  display: flex;
  gap: 1.1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav a {
  font-weight: 600;
  padding: 0.35rem 0.25rem;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--brand);
  border-color: var(--brand);
}

.header-actions {
  justify-self: end;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-toggle span[aria-hidden] {
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
}

.nav-toggle span[aria-hidden]::before,
.nav-toggle span[aria-hidden]::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--text);
  left: 0;
}

.nav-toggle span[aria-hidden]::before {
  top: -6px;
}

.nav-toggle span[aria-hidden]::after {
  top: 6px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 45, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
}

.mobile-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-overlay a {
  display: block;
  padding: 0.8rem 1.2rem;
  color: #fffaf4;
  font-weight: 600;
  font-size: 1.25rem;
}

.hero {
  padding: clamp(3rem, 5vw, 4.75rem) 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
}

.hero-media picture {
  display: block;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -10px -14px -12px -14px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(200, 110, 75, 0.2), rgba(217, 168, 79, 0.08));
  z-index: -1;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  margin: 0 0 0.4rem;
}

.hero-copy .subhead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 0.6rem;
}

.hero-copy .lede {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 0 1.1rem;
}

.hero-note {
  font-size: 0.9rem;
  max-width: 420px;
  margin: 0.9rem 0 0;
  color: var(--text-muted);
}

.hero-media img {
  border-radius: 22px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  min-height: 260px;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--brand-dark);
  margin: 0 0 0.6rem;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 0.45rem;
}

h3 {
  font-family: var(--font-heading);
  margin: 0 0 0.35rem;
}

.lede {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pill-muted {
  background: var(--bg-muted);
}

.justine-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.65rem 0 0.3rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-weight: 700;
  color: var(--text);
}

.justine-badge img {
  width: 120px;
  height: auto;
  object-fit: contain;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.btn.small {
  padding: 0.65rem 0.95rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn .btn-logo {
  height: 22px;
  width: auto;
  margin-right: 0.35rem;
  position: relative;
  top: 1px;
}

.btn.primary:hover {
  transform: translateY(-1px);
  background: var(--brand-dark);
}

.btn.secondary {
  background: #fff;
  border-color: var(--brand);
  color: var(--brand-dark);
}

.btn.ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn.tertiary {
  background: var(--surface-strong);
  border-color: var(--border);
  color: var(--brand-dark);
}

.btn:focus-visible,
.text-link:focus-visible,
.primary-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-dark);
  font-weight: 700;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.section {
  padding: clamp(3rem, 5vw, 4.75rem) 0;
  border-top: 1px solid rgba(228, 205, 185, 0.9);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 1.75rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
  align-items: stretch;
}

.concern-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
}

.product-grid .product-card {
  display: grid;
  grid-template-columns: minmax(240px, 1.3fr) 1fr;
  gap: 1.2rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  height: 100%;
}

.product-card img {
  align-self: center;
  box-shadow: var(--shadow);
}

.product-photo {
  width: 100%;
  max-width: 310px;
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-muted);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  font-weight: 700;
  color: var(--text);
}

.product-price {
  padding: 0.25rem 0.6rem;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.product-size,
.product-rating {
  color: var(--text-muted);
  font-weight: 600;
}

.product-card .product-copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.product-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.product-copy .bullet-list {
  margin: 0 0 1rem;
}

.bullet-list {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0 0 0.6rem;
  color: var(--text);
}

.conversion-copy {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  background: rgba(255, 255, 255, 0.6);
  margin: 0.75rem 0;
}

.conversion-group + .conversion-group {
  margin-top: 0.45rem;
}

.conversion-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  margin: 0 0 0.25rem;
  color: var(--text-muted);
}

.conversion-list {
  list-style: disc;
  padding-left: 1rem;
  margin: 0;
  color: var(--text);
}

.catalog-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.95rem;
  box-shadow: var(--shadow);
}

.catalog-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-muted);
}

.catalog-card-body h3 {
  margin: 0 0 0.2rem;
}

.catalog-card .product-meta {
  margin: 0.1rem 0;
}

.concern-card,
.category-card,
.curated-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}

.concern-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.75rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.concern-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(140, 92, 63, 0.18);
}

.concern-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
}

.concern-head img {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.concern-card .pill {
  display: inline-flex;
  margin-bottom: 0.25rem;
}

.concern-card .text-link {
  margin-top: auto;
  font-size: 0.98rem;
}

.accordion-panel {
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.accordion-panel[hidden] {
  display: none;
}

.concern-card .accordion-panel {
  background: var(--bg-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 0.9rem;
  margin-top: 0.5rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 1.25rem;
}

.plan-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.65rem;
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.plan-card--modal {
  max-width: 640px;
  margin: 0 auto;
}

.plan-details.is-collapsed .plan-grid {
  display: none;
}

.plan-details {
  display: none;
}

.plan-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.plan-benefit {
  margin: 0;
  font-weight: 600;
  color: var(--text);
}

.plan-body {
  display: grid;
  gap: 0.4rem;
}

.plan-label {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.plan-viewer {
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 45, 0.55);
  display: none;
  place-items: center;
  padding: 1rem;
  z-index: 1100;
}

.plan-viewer.is-open {
  display: grid;
}

.plan-viewer__surface {
  background: var(--surface);
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  padding: 1.25rem 1.25rem 1.5rem;
}

.plan-viewer__close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.plan-viewer__body {
  margin-top: 0.4rem;
}

.plan-viewer__body a {
  color: var(--brand-dark);
  text-decoration: underline;
  font-weight: 600;
}

.plan-viewer__body .product-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.65rem;
  align-items: center;
  padding: 0.35rem 0;
  color: inherit;
  text-decoration: none;
}

.plan-viewer__body .product-row img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
}

.plan-viewer__body .product-row__name {
  font-weight: 700;
  display: block;
}

.plan-viewer__body .product-row__price {
  display: block;
  color: var(--brand-dark);
  font-weight: 700;
  margin-top: 0.15rem;
}

.plan-viewer__body .category-title {
  font-size: 1.25rem;
  font-family: var(--font-heading);
  margin: 0 0 0.35rem;
}

.plan-viewer__body .category-lede {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}

.category-card img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.category-body {
  padding: 0.85rem 0 0.35rem;
}

.curated-card img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.curated-body {
  padding-top: 0.75rem;
}

.trust-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.trust-card {
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.trust-card h3 {
  margin-top: 0.2rem;
}

.trust-card .pill-row {
  margin-top: 0.75rem;
}

.trust-card .bullet-list.tight li {
  margin-bottom: 0.25rem;
}

.trust-badges {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.75rem;
}

.trust-badge {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  font-size: 1.15rem;
}

.badge-title {
  margin: 0;
  font-weight: 700;
}

.badge-text {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
}

.testimonial-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
  display: grid;
  gap: 0.4rem;
}

.testimonial-list strong {
  display: block;
  margin-bottom: 0.1rem;
}

.trust-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.guide-page {
    background: linear-gradient(180deg, #fffaf4 0%, #f3e6d7 45%, #fffaf4 100%);
  }

  .guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0 0.5rem;
}

.guide-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  align-items: center;
}

  .guide-main {
    padding-bottom: 2rem;
  }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.guide-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}

  .guide-step h2 {
    margin-top: 0;
  }

  .guide-faq {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

  .guide-faq h2 {
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  .guide-faq .faq-item + .faq-item {
    margin-top: 0.75rem;
  }

  .guide-faq h3 {
    margin: 0 0 0.25rem;
    font-size: 1rem;
  }

  .guide-faq p {
    margin: 0;
    color: var(--text-muted);
  }

.guide-products {
  margin-top: 1.5rem;
}

.guide-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.guide-product {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
}

.guide-product h3 {
  margin: 0 0 0.25rem;
}

.guide-product p {
  margin: 0 0 0.4rem;
  color: var(--text-muted);
}

.guide-product .product-price {
  display: block;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.35rem;
}

.guide-cta {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.guide-note {
  margin: 0;
  color: var(--text-muted);
}

.solutions .card-grid {
  gap: 0.9rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.9rem;
}

.solution-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(200, 110, 75, 0.05), rgba(217, 168, 79, 0.04));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.6rem;
}

.solution-card h3 {
  margin: 0.1rem 0;
}

.solution-card p {
  margin: 0;
}

.pill-row.wrap {
  flex-wrap: wrap;
}

.routines .section-heading {
  max-width: 780px;
}

.quiz-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.2rem 1.3rem 1.1rem;
  box-shadow: var(--shadow);
  max-width: 680px;
}

.quiz-question {
  margin: 0 0 0.85rem;
  font-weight: 600;
}

.quiz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.quiz-option {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-muted);
  font-size: 0.95rem;
  cursor: pointer;
}

.quiz-option[aria-pressed="true"] {
  background: var(--brand);
  border-color: var(--brand-dark);
  color: #fff;
}

.quiz-result {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.35rem;
  display: grid;
  gap: 0.4rem;
}

.quiz-result-label {
  margin: 0;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.quiz-result-text {
  margin: 0;
}

.quiz-reset {
  margin-top: 0.5rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  text-decoration: underline;
}

.routine-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.routine-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.8rem;
  padding: 1.1rem 1.2rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.routine-head p {
  margin: 0.25rem 0 0.5rem;
  color: var(--text-muted);
}

.routine-body {
  display: grid;
  gap: 0.35rem;
}

.routine-label {
  margin: 0;
  font-weight: 700;
  color: var(--text);
}

.routine-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  align-items: center;
}

.routine-actions .btn {
  flex-shrink: 0;
}

.whatsapp-cta {
  border-color: #25d366;
}

.whatsapp-cta:hover,
.whatsapp-cta:focus-visible {
  background: rgba(37, 211, 102, 0.1);
  color: #0b4d24;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  background: #25d366;
  color: #0b2213;
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  font-weight: 700;
  z-index: 1100;
  border: 1px solid #1dae59;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  background: #1fb455;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.8rem;
  background: var(--surface);
}

.faq summary {
  font-weight: 700;
  cursor: pointer;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 1rem;
}

.contact-meta {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.hero-ctas,
.contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.site-footer {
  background: var(--brand-dark);
  color: #fffaf4;
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  margin-top: 3rem;
}

.site-footer a {
  color: #fffaf4;
  text-decoration: underline;
}

.disclaimer {
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1rem;
  padding: 1rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  z-index: 1200;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.cookie-actions .btn {
  padding: 0.55rem 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
  }

  .primary-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    display: none;
  }

  .mobile-overlay.active {
    display: flex;
  }

  .product-grid .product-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .concern-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-layout {
    grid-template-columns: 1fr;
  }

  .sticky-cta-bar {
    bottom: 0.5rem;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    inset: auto 0.75rem 0.75rem 0.75rem;
  }

  .whatsapp-fab {
    right: 0.75rem;
  }
}

@media (max-width: 640px) {
  .shell {
    padding: 0 1.6rem;
  }

  .hero-ctas,
  .contact-actions {
    flex-direction: column;
  }

  .hero {
    padding-bottom: 2.25rem;
  }

  .section {
    padding: 2.4rem 0;
  }

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

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

  .hero-media img {
    min-height: 220px;
  }

  .hero-ctas .btn,
  .contact-actions .btn {
    width: 100%;
  }

  .guide-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .whatsapp-fab {
    left: 1rem;
    right: 1rem;
    justify-content: center;
  }

  .quiz-card {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
