/* ==========================================================================
   DermaSun Design System — styles.css
   A premium CSS design system for DermaSun, a Mexican sunscreen brand.
   Version: 1.0.0
   ========================================================================== */

/* --------------------------------------------------------------------------
   §1  GOOGLE FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* --------------------------------------------------------------------------
   §2  DESIGN TOKENS (Custom Properties)
   -------------------------------------------------------------------------- */
:root {
  /* ── Colour palette ─────────────────────────────────────────────────── */
  --ds-primary:          #F7941D;
  --ds-primary-dark:     #E07A0A;
  --ds-secondary:        #005C8D;
  --ds-secondary-light:  #0284C7;
  --ds-accent:           #FCB813;
  --ds-bg-light:         #F0F9FF;
  --ds-bg-white:         #FFFFFF;
  --ds-foreground:       #0F172A;
  --ds-muted:            #64748B;
  --ds-success:          #15803D;
  --ds-destructive:      #DC2626;
  --ds-border:           #E0F0F8;

  /* Semi-transparent helpers */
  --ds-primary-a10:      rgba(247, 148, 29, 0.10);
  --ds-primary-a40:      rgba(247, 148, 29, 0.40);
  --ds-secondary-a10:    rgba(0, 92, 141, 0.10);
  --ds-white-80:         rgba(255, 255, 255, 0.80);
  --ds-white-60:         rgba(255, 255, 255, 0.60);
  --ds-black-50:         rgba(0, 0, 0, 0.50);

  /* ── Typography ─────────────────────────────────────────────────────── */
  --font-heading:        'Poppins', system-ui, -apple-system, sans-serif;
  --font-body:           'Poppins', system-ui, -apple-system, sans-serif;

  /* Responsive font sizes (min — preferred — max) */
  --fs-xs:   clamp(0.700rem, 0.66rem + 0.20vw, 0.800rem);   /* ~11-13px */
  --fs-sm:   clamp(0.800rem, 0.76rem + 0.20vw, 0.875rem);   /* ~13-14px */
  --fs-base: clamp(0.938rem, 0.88rem + 0.28vw, 1.000rem);   /* ~15-16px */
  --fs-md:   clamp(1.000rem, 0.93rem + 0.36vw, 1.125rem);   /* ~16-18px */
  --fs-lg:   clamp(1.125rem, 1.02rem + 0.52vw, 1.375rem);   /* ~18-22px */
  --fs-xl:   clamp(1.375rem, 1.18rem + 0.98vw, 1.750rem);   /* ~22-28px */
  --fs-2xl:  clamp(1.750rem, 1.46rem + 1.44vw, 2.250rem);   /* ~28-36px */
  --fs-3xl:  clamp(2.000rem, 1.60rem + 2.00vw, 3.000rem);   /* ~32-48px */
  --fs-4xl:  clamp(2.500rem, 1.90rem + 3.00vw, 3.750rem);   /* ~40-60px */
  --fs-5xl:  clamp(3.000rem, 2.20rem + 4.00vw, 4.500rem);   /* ~48-72px */

  /* ── Spacing (4 px base) ────────────────────────────────────────────── */
  --space-1:   0.25rem;  /*  4px */
  --space-2:   0.50rem;  /*  8px */
  --space-3:   0.75rem;  /* 12px */
  --space-4:   1.00rem;  /* 16px */
  --space-5:   1.25rem;  /* 20px */
  --space-6:   1.50rem;  /* 24px */
  --space-8:   2.00rem;  /* 32px */
  --space-10:  2.50rem;  /* 40px */
  --space-12:  3.00rem;  /* 48px */
  --space-14:  3.50rem;  /* 56px */
  --space-16:  4.00rem;  /* 64px */
  --space-20:  5.00rem;  /* 80px */

  /* ── Shadows ────────────────────────────────────────────────────────── */
  --shadow-sm:   0 1px  3px rgba(0, 0, 0, 0.06), 0 1px  2px rgba(0, 0, 0, 0.04);
  --shadow-md:   0 4px  6px rgba(0, 0, 0, 0.07), 0 2px  4px rgba(0, 0, 0, 0.04);
  --shadow-lg:   0 10px 24px rgba(0, 0, 0, 0.10), 0 4px  8px rgba(0, 0, 0, 0.04);
  --shadow-xl:   0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  --shadow-glow: 0 0 20px 4px var(--ds-primary-a40);

  /* ── Border radius ──────────────────────────────────────────────────── */
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  /* ── Transitions ────────────────────────────────────────────────────── */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease-in-out;

  /* ── Z-index scale ──────────────────────────────────────────────────── */
  --z-base:     1;
  --z-dropdown: 100;
  --z-sticky:   500;
  --z-modal:    1000;
  --z-toast:    1500;
}

/* --------------------------------------------------------------------------
   §3  MODERN CSS RESET
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 5rem; /* offset for fixed navbar */
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/* Remove default fieldset appearance */
fieldset {
  border: none;
}

/* --------------------------------------------------------------------------
   §4  BASE TYPOGRAPHY
   -------------------------------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--ds-foreground);
  background-color: var(--ds-bg-light);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ds-foreground);
  text-wrap: balance;
}

h1 { font-size: var(--fs-5xl); }
h2 { font-size: var(--fs-4xl); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); font-weight: 600; }
h5 { font-size: var(--fs-xl);  font-weight: 600; }
h6 { font-size: var(--fs-lg);  font-weight: 600; }

/* Heading utility classes */
.heading-xl  { font-family: var(--font-heading); font-size: var(--fs-5xl); font-weight: 700; line-height: 1.1; }
.heading-lg  { font-family: var(--font-heading); font-size: var(--fs-4xl); font-weight: 700; line-height: 1.15; }
.heading-md  { font-family: var(--font-heading); font-size: var(--fs-3xl); font-weight: 600; line-height: 1.2; }
.heading-sm  { font-family: var(--font-heading); font-size: var(--fs-2xl); font-weight: 600; line-height: 1.25; }

/* Body text */
p {
  max-width: 65ch;
  margin-bottom: var(--space-4);
  color: var(--ds-muted);
  line-height: 1.7;
}

/* Section lead / subtitle */
.lead {
  font-size: var(--fs-lg);
  color: var(--ds-muted);
  max-width: 56ch;
  line-height: 1.7;
}

/* Links */
a:not([class]) {
  color: var(--ds-secondary-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

a:not([class]):hover {
  color: var(--ds-primary);
  text-decoration-color: var(--ds-primary);
}

strong { font-weight: 600; color: var(--ds-foreground); }
small  { font-size: var(--fs-sm); }

/* --------------------------------------------------------------------------
   §5  LAYOUT SYSTEM
   -------------------------------------------------------------------------- */

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-6); }
}

@media (min-width: 1440px) {
  .container { max-width: 1320px; }
}

/* Generic responsive grid */
.grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}

/* Fixed-column grids (mobile-first: 1 col → specified cols) */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex utilities */
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col     { display: flex; flex-direction: column; }
.flex-wrap    { display: flex; flex-wrap: wrap; }

/* Sections */
.section {
  padding-block: var(--space-16);
}

.section--sm {
  padding-block: var(--space-10);
}

.section--dark {
  background-color: var(--ds-secondary);
  color: var(--ds-bg-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
  color: var(--ds-bg-white);
}

.section--dark p {
  color: var(--ds-white-80);
}

/* Section header (centred title + subtitle) */
.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section__header p {
  margin-inline: auto;
}

/* --------------------------------------------------------------------------
   §6  COMPONENTS
   -------------------------------------------------------------------------- */

/* ── 6A  BUTTONS ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-base);
  line-height: 1;
  padding: 0.75rem 1.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-base),
    transform var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
}

.btn:focus-visible {
  outline: 3px solid var(--ds-primary);
  outline-offset: 3px;
}

.btn:active {
  transform: scale(0.98);
}

/* Primary (orange CTA) */
.btn--primary {
  background-color: var(--ds-primary);
  color: var(--ds-bg-white);
}

.btn--primary:hover {
  background-color: var(--ds-primary-dark);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

/* Secondary (blue) */
.btn--secondary {
  background-color: var(--ds-secondary);
  color: var(--ds-bg-white);
}

.btn--secondary:hover {
  background-color: var(--ds-secondary-light);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

/* Outline */
.btn--outline {
  background-color: transparent;
  border-color: var(--ds-primary);
  color: var(--ds-primary);
}

.btn--outline:hover {
  background-color: var(--ds-primary);
  color: var(--ds-bg-white);
}

/* Ghost (nav links, subtle actions) */
.btn--ghost {
  background-color: transparent;
  color: var(--ds-foreground);
}

.btn--ghost:hover {
  background-color: var(--ds-primary-a10);
  color: var(--ds-primary);
}

/* White (on dark backgrounds) */
.btn--white {
  background-color: var(--ds-bg-white);
  color: var(--ds-secondary);
}

.btn--white:hover {
  background-color: var(--ds-bg-light);
  box-shadow: var(--shadow-md);
}

/* Size variants */
.btn--lg {
  font-size: var(--fs-md);
  padding: 1rem 2.25rem;
}

.btn--sm {
  font-size: var(--fs-sm);
  padding: 0.5rem 1.25rem;
}

/* Icon-only button */
.btn--icon {
  padding: 0.625rem;
  border-radius: var(--radius-md);
}

/* ── 6B  CARDS ────────────────────────────────────────────────────────── */
.card {
  background: var(--ds-bg-white);
  border: 1px solid var(--ds-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__body {
  padding: var(--space-5);
}

.card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
  color: var(--ds-foreground);
}

.card__text {
  font-size: var(--fs-base);
  color: var(--ds-muted);
  line-height: 1.6;
}

.card__footer {
  padding: var(--space-4) var(--space-5);
  border-top: 1px solid var(--ds-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── 6C  PRODUCT CARD ─────────────────────────────────────────────────── */
.product-card {
  background: var(--ds-bg-white);
  border: 1px solid var(--ds-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  min-height: 260px;
  max-height: 320px;
  background: linear-gradient(135deg, var(--ds-bg-light) 0%, var(--ds-bg-white) 100%);
}

.product-card__image img {
  max-height: 280px;
  width: auto;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

/* FPS badge — positioned top-right */
.product-card__fps-badge {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  background-color: var(--ds-accent);
  color: var(--ds-foreground);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
  line-height: 1;
  box-shadow: var(--shadow-sm);
  z-index: var(--z-base);
}

.product-card__body {
  padding: var(--space-4) var(--space-5);
}

.product-card__category {
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ds-muted);
  margin-bottom: var(--space-1);
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--ds-foreground);
  margin-bottom: var(--space-2);
}

.product-card__price {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--ds-primary);
}

.product-card__price small {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--ds-muted);
}

.product-card__footer {
  padding: var(--space-3) var(--space-5) var(--space-5);
}

/* ── 6D  BADGES ───────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-full);
  line-height: 1.3;
  white-space: nowrap;
}

/* FPS badge — gold */
.badge--fps {
  background-color: var(--ds-accent);
  color: var(--ds-foreground);
}

/* Eco badge — green */
.badge--eco {
  background-color: rgba(21, 128, 61, 0.12);
  color: var(--ds-success);
  border: 1px solid rgba(21, 128, 61, 0.25);
}

/* Feature badge — blue */
.badge--feature {
  background-color: var(--ds-secondary-a10);
  color: var(--ds-secondary);
  border: 1px solid rgba(0, 92, 141, 0.25);
}

/* ── 6E  NAVBAR ───────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  padding-block: var(--space-3);
  transition:
    background-color var(--transition-base),
    backdrop-filter var(--transition-base),
    box-shadow var(--transition-base);
}

/* Scrolled state — glassmorphism */
.navbar--scrolled {
  background-color: var(--ds-white-80);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 0 var(--ds-border), var(--shadow-sm);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.navbar__logo {
  max-height: 50px;
  width: auto;
  flex-shrink: 0;
}

/* Desktop links */
.navbar__links {
  display: none;
  gap: var(--space-1);
  align-items: center;
}

@media (min-width: 768px) {
  .navbar__links { display: flex; }
}

.navbar__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--ds-secondary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  text-decoration: none;
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--ds-primary);
  background-color: var(--ds-primary-a10);
}

.navbar__link--active {
  font-weight: 600;
}

.navbar__cta {
  margin-left: var(--space-3);
}

/* Hamburger toggle */
.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  cursor: pointer;
  border: none;
  background: none;
}

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--ds-secondary);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

@media (min-width: 768px) {
  .navbar__toggle { display: none; }
}

/* Mobile menu overlay */
.navbar__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  height: 100dvh;
  background: var(--ds-bg-white);
  box-shadow: var(--shadow-xl);
  padding: var(--space-16) var(--space-6) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.navbar__mobile-menu.is-open {
  transform: translateX(0);
}

.navbar__mobile-menu .navbar__link {
  font-size: var(--fs-md);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
}

/* Mobile backdrop */
.navbar__backdrop {
  position: fixed;
  inset: 0;
  background: var(--ds-black-50);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.navbar__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── 6F  HERO SECTION ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Background layer */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 92, 141, 0.85) 0%,
    rgba(0, 92, 141, 0.45) 50%,
    rgba(247, 148, 29, 0.20) 100%
  );
}

/* Content */
.hero__content {
  position: relative;
  z-index: var(--z-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding-block: var(--space-20);
  width: 100%;
  max-width: 640px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ds-bg-white);
  text-wrap: balance;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--ds-white-80);
  line-height: 1.6;
  max-width: 50ch;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-2);
}

/* Hero product image (right side on desktop) */
.hero__image {
  display: none;
}

@media (min-width: 1024px) {
  .hero__content { max-width: 50%; }

  .hero__image {
    display: block;
    position: absolute;
    right: 5%;
    bottom: 10%;
    max-width: 380px;
    z-index: var(--z-base);
    animation: float 4s ease-in-out infinite;
  }
}

/* Hero mascot */
.hero__mascot {
  position: absolute;
  bottom: var(--space-4);
  left: var(--space-4);
  width: 100px;
  z-index: var(--z-base);
  animation: bounce 3s ease-in-out infinite;
}

@media (min-width: 768px) {
  .hero__mascot { width: 140px; }
}

/* ── 6G  VALUE SECTION (icon boxes) ───────────────────────────────────── */
.value-section {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .value-section { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .value-section { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  border-radius: var(--radius-md);
  background: var(--ds-bg-white);
  border: 1px solid var(--ds-border);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  margin-bottom: var(--space-4);
  color: var(--ds-primary);
}

.value-card__icon svg {
  width: 100%;
  height: 100%;
}

.value-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.value-card__text {
  color: var(--ds-muted);
  line-height: 1.6;
  max-width: 36ch;
  margin-inline: auto;
}

/* ── 6H  FOOTER ───────────────────────────────────────────────────────── */
.footer {
  background-color: var(--ds-secondary);
  color: var(--ds-bg-white);
  padding-block: var(--space-16) var(--space-8);
}

.footer__grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr repeat(3, 1fr); }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__logo {
  max-height: 48px;
  width: auto;
}

.footer__description {
  color: var(--ds-white-60);
  font-size: var(--fs-sm);
  max-width: 32ch;
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-base);
  margin-bottom: var(--space-4);
  color: var(--ds-bg-white);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__links a {
  color: var(--ds-white-80);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--ds-primary);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--ds-white-80);
  font-size: var(--fs-sm);
}

.footer__contact a {
  color: var(--ds-white-80);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__contact a:hover {
  color: var(--ds-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-6);
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--ds-white-60);
}

/* ── 6I  FORMS ────────────────────────────────────────────────────────── */
.form-group {
  margin-bottom: var(--space-5);
}

.form-label {
  display: block;
  font-weight: 500;
  font-size: var(--fs-sm);
  margin-bottom: var(--space-1);
  color: var(--ds-foreground);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--fs-base);
  border: 1.5px solid var(--ds-border);
  border-radius: var(--radius-sm);
  background-color: var(--ds-bg-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--ds-secondary-light);
  box-shadow: 0 0 0 3px var(--ds-secondary-a10);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--ds-muted);
  opacity: 0.7;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8.825a.5.5 0 0 1-.354-.146l-4-4a.5.5 0 0 1 .708-.708L6 7.617l3.646-3.646a.5.5 0 0 1 .708.708l-4 4A.5.5 0 0 1 6 8.825z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--ds-destructive);
  margin-top: var(--space-1);
}

.form-success {
  font-size: var(--fs-xs);
  color: var(--ds-success);
  margin-top: var(--space-1);
}

/* --------------------------------------------------------------------------
   §7  ANIMATIONS & KEYFRAMES
   -------------------------------------------------------------------------- */

/* ── Float (hero product) ─────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-15px); }
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

/* ── Bounce (mascot) ──────────────────────────────────────────────────── */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.animate-bounce {
  animation: bounce 3s ease-in-out infinite;
}

/* ── Pulse glow (CTA emphasis) ────────────────────────────────────────── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 var(--ds-primary-a40); }
  50%      { box-shadow: 0 0 20px 5px rgba(247, 148, 29, 0.20); }
}

.animate-pulse-glow {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ── Scroll-reveal (JS toggles .revealed) ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggerable delay modifiers */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Fade-in variants ─────────────────────────────────────────────────── */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.revealed,
.fade-in-left.revealed,
.fade-in-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ── Spin (loading) ───────────────────────────────────────────────────── */
@keyframes spin {
  to { transform: rotate(360deg); }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ── Scroll-driven animation (progressive enhancement) ────────────────── */
@supports (animation-timeline: scroll()) {
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--ds-primary);
    transform-origin: left;
    animation: grow-progress auto linear;
    animation-timeline: scroll();
    z-index: calc(var(--z-sticky) + 1);
  }

  @keyframes grow-progress {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
  }
}

/* --------------------------------------------------------------------------
   §8  RESPONSIVE BREAKPOINTS — Additional mobile-first overrides
   --------------------------------------------------------------------------
   Breakpoints summary:
     Mobile:   < 768px   (base styles)
     Tablet:   ≥ 768px
     Desktop:  ≥ 1024px
     Wide:     ≥ 1440px
   Specific component overrides are co-located with their components above.
   Below are additional cross-cutting responsive rules.
   -------------------------------------------------------------------------- */

/* ─ Tablet (≥ 768px) ──────────────────────────────────────────────────── */
@media (min-width: 768px) {
  .section {
    padding-block: var(--space-16);
  }

  .hero__content {
    padding-block: var(--space-20);
  }

  /* Hide on tablet+ */
  .mobile-only { display: none !important; }
}

/* ─ Desktop (≥ 1024px) ────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  .section {
    padding-block: var(--space-20);
  }

  /* Hide on desktop+ */
  .tablet-only { display: none !important; }
}

/* ─ Wide (≥ 1440px) ───────────────────────────────────────────────────── */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

/* ─ Small mobile (≤ 375px) ────────────────────────────────────────────── */
@media (max-width: 375px) {
  .hero__title {
    font-size: var(--fs-3xl);
  }

  .btn--lg {
    width: 100%;
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   §9  UTILITY CLASSES
   -------------------------------------------------------------------------- */

/* ── Text alignment ───────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

/* ── Text colour ──────────────────────────────────────────────────────── */
.text-primary   { color: var(--ds-primary); }
.text-secondary { color: var(--ds-secondary); }
.text-accent    { color: var(--ds-accent); }
.text-muted     { color: var(--ds-muted); }
.text-white     { color: var(--ds-bg-white); }
.text-success   { color: var(--ds-success); }
.text-danger    { color: var(--ds-destructive); }

/* ── Background colour ────────────────────────────────────────────────── */
.bg-primary   { background-color: var(--ds-primary); }
.bg-secondary { background-color: var(--ds-secondary); }
.bg-accent    { background-color: var(--ds-accent); }
.bg-white     { background-color: var(--ds-bg-white); }
.bg-light     { background-color: var(--ds-bg-light); }

/* ── Spacing utilities (margin & padding) ─────────────────────────────── */
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: var(--space-1); }
.mt-2  { margin-top: var(--space-2); }
.mt-3  { margin-top: var(--space-3); }
.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }

.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: var(--space-1); }
.mb-2  { margin-bottom: var(--space-2); }
.mb-3  { margin-bottom: var(--space-3); }
.mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); }
.mb-8  { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

.py-4  { padding-block: var(--space-4); }
.py-6  { padding-block: var(--space-6); }
.py-8  { padding-block: var(--space-8); }
.py-10 { padding-block: var(--space-10); }
.py-12 { padding-block: var(--space-12); }
.py-16 { padding-block: var(--space-16); }
.py-20 { padding-block: var(--space-20); }

.px-4  { padding-inline: var(--space-4); }
.px-6  { padding-inline: var(--space-6); }
.px-8  { padding-inline: var(--space-8); }

.mx-auto { margin-inline: auto; }

/* ── Gap utilities ────────────────────────────────────────────────────── */
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ── Display ──────────────────────────────────────────────────────────── */
.block        { display: block; }
.inline-block { display: inline-block; }
.inline       { display: inline; }
.hidden       { display: none; }

/* ── Sizing ───────────────────────────────────────────────────────────── */
.w-full { width: 100%; }
.h-full { height: 100%; }

/* ── Overflow ─────────────────────────────────────────────────────────── */
.overflow-hidden { overflow: hidden; }

/* ── Border radius ────────────────────────────────────────────────────── */
.rounded-sm   { border-radius: var(--radius-sm); }
.rounded-md   { border-radius: var(--radius-md); }
.rounded-lg   { border-radius: var(--radius-lg); }
.rounded-full { border-radius: var(--radius-full); }

/* ── Shadows ──────────────────────────────────────────────────────────── */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ── Accessibility helpers ────────────────────────────────────────────── */
.sr-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Focus-visible: show outline only for keyboard users */
:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--ds-primary);
  outline-offset: 3px;
}

/* ── Skip link (accessibility) ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--ds-primary);
  color: var(--ds-bg-white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: var(--z-toast);
  transition: top var(--transition-fast);
}

.skip-link:focus {
  top: var(--space-2);
}

/* --------------------------------------------------------------------------
   §10  PRINT & REDUCED MOTION
   -------------------------------------------------------------------------- */

/* ── Reduced motion preference ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .fade-in-up,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
  }
}

/* ── Print styles ─────────────────────────────────────────────────────── */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .navbar,
  .navbar__mobile-menu,
  .navbar__backdrop,
  .footer,
  .btn,
  .hero__bg::after {
    display: none !important;
  }

  a[href]::after {
    content: ' (' attr(href) ')';
    font-size: 0.85em;
    color: #555;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  h2, h3 {
    page-break-after: avoid;
  }
}

/* ==========================================================================
   Missing Components (Modal, Quiz, Table, Filters, About, Contact, Utilities)
   ========================================================================== */

/* Product Filters */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--ds-border);
  color: var(--ds-muted);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast) ease;
}
.filter-btn:hover {
  border-color: var(--ds-primary-dark);
  color: var(--ds-primary-dark);
}
.filter-btn--active {
  background: var(--ds-primary);
  border-color: var(--ds-primary);
  color: var(--ds-bg-white);
}

/* Modal Overlay & Dialog */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base) ease;
}
.modal-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--ds-bg-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform var(--transition-base) cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay--visible .modal {
  transform: scale(1);
}
.modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: var(--ds-bg-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  font-size: 24px;
  line-height: 1;
  color: var(--ds-foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.modal__close:hover {
  background: var(--ds-border);
  color: var(--ds-destructive);
}
.modal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .modal__grid { grid-template-columns: 1fr 1fr; }
}
.modal__images {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: center;
}
.modal__main-image {
  max-height: 350px;
  object-fit: contain;
}

.modal__main-image--showcase {
  width: 100%;
  max-height: 360px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 18px rgba(0, 60, 135, 0.12);
}
.modal__lifestyle-image {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.modal__title {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--ds-foreground);
}
.modal__price {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--ds-primary);
  margin: var(--space-4) 0;
}
.modal__description {
  color: var(--ds-muted);
  line-height: 1.6;
  margin-bottom: var(--space-6);
}
.modal__features h4 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-3);
}
.modal__feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
}
.modal__feature {
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--ds-border);
  color: var(--ds-foreground);
}
.modal__feature--yes {
  color: var(--ds-success);
  font-weight: 500;
}
.modal__feature--no {
  color: var(--ds-muted);
}
.modal__actions {
  margin-top: var(--space-6);
}

/* Quiz FPS */
.quiz-container {
  background: var(--ds-bg-white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.quiz-step {
  transition: opacity var(--transition-base) ease, transform var(--transition-base) ease;
}
.quiz-step--hidden {
  display: none;
}
.quiz-question {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  text-align: center;
  margin-bottom: var(--space-8);
  color: var(--ds-foreground);
}
.quiz-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .quiz-options { grid-template-columns: 1fr 1fr; }
}
.quiz-option {
  background: var(--ds-bg-light);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
  transition: all var(--transition-fast) ease;
}
.quiz-option:hover {
  background: var(--ds-bg-white);
  border-color: var(--ds-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.quiz-option__icon {
  font-size: 2.5rem;
}
.quiz-option__text {
  font-weight: 600;
  color: var(--ds-foreground);
}
.quiz-progress {
  height: 6px;
  background: var(--ds-bg-light);
  border-radius: var(--radius-full);
  margin-top: var(--space-8);
  overflow: hidden;
}
.quiz-progress__bar {
  height: 100%;
  background: var(--ds-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition-slow) ease;
}
.quiz-result-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  align-items: center;
  text-align: center;
  background: var(--ds-bg-light);
  padding: var(--space-6);
  border-radius: var(--radius-md);
}
@media (min-width: 640px) {
  .quiz-result-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
}
.quiz-result__image {
  max-width: 150px;
  object-fit: contain;
}
.quiz-result__name {
  font-size: var(--fs-xl);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.quiz-result__actions {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  flex-wrap: wrap;
}

/* Comparison Table */
.table-wrapper {
  overflow-x: auto;
  background: var(--ds-bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-8);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}
.comparison-table th,
.comparison-table td {
  padding: var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--ds-border);
}
.comparison-table th {
  background: var(--ds-bg-light);
  font-weight: 600;
  color: var(--ds-secondary);
  white-space: nowrap;
}
.comparison-table tbody tr:hover {
  background: var(--ds-bg-light);
}
.table-product {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.table-product__image {
  object-fit: contain;
}
.table-product__name {
  font-weight: 600;
  color: var(--ds-foreground);
}

/* About Grid & Mascot */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1.5fr; }
}
.about-grid__image {
  display: flex;
  justify-content: center;
}
.about-mascot {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.about-stats {
  display: flex;
  gap: var(--space-6);
  margin: var(--space-8) 0;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
}
.about-stat__number {
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--ds-primary);
  font-family: var(--font-heading);
}
.about-stat__label {
  font-size: var(--fs-sm);
  color: var(--ds-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.about-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* CTA Section */
.cta-section {
  background: var(--ds-secondary);
  padding: var(--space-20) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247,148,29,0.2) 0%, rgba(0,92,141,0) 70%);
  border-radius: 50%;
}

/* Contact Page Specific */
.contact-hero {
  background: var(--ds-bg-light);
  padding: var(--space-24) 0 var(--space-12) 0;
  text-align: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1.5fr; }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--ds-bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.contact-info__icon {
  color: var(--ds-primary);
  flex-shrink: 0;
}
.contact-info__item strong {
  display: block;
  margin-bottom: var(--space-1);
}
.contact-info__item a, .contact-info__item span {
  color: var(--ds-muted);
  text-decoration: none;
}
.contact-info__item a:hover {
  color: var(--ds-primary);
}
.contact-mascot {
  margin-top: auto;
  text-align: center;
  padding-top: var(--space-8);
}
.contact-mascot img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.contact-form-wrapper {
  background: var(--ds-bg-white);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Form Messages & Spinner */
.form-message {
  display: none;
  padding: var(--space-4);
  border-radius: var(--radius-md);
  margin-top: var(--space-4);
  font-weight: 500;
}
.form-message--success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.form-message--error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.form-message--info { background: var(--ds-bg-light); color: var(--ds-secondary); border: 1px solid var(--ds-border); }

.btn-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  vertical-align: middle;
  margin-right: var(--space-2);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  background: var(--ds-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base) ease;
  z-index: var(--z-sticky);
}
.scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--ds-primary-dark);
  transform: translateY(-3px);
}

/* ==========================================================================
   DermaSun 2026: lenguaje visual inspirado en la lista de precios oficial.
   Capas azul, naranja y blanco crean continuidad entre todas las secciones.
   ========================================================================== */

:root {
  --ds-navy: #003c87;
  --ds-blue: #07489a;
  --ds-blue-deep: #002e73;
  --ds-ink: #10254a;
  --ds-paper: #fbfdff;
  --ds-wave-orange: #ff9f0a;
  --wave-shadow: 0 18px 48px rgba(0, 57, 135, 0.12);
}

body.page {
  background:
    radial-gradient(circle at 0 16%, rgba(0, 72, 154, 0.12) 0 1px, transparent 1.5px) 0 0 / 13px 13px,
    var(--ds-paper);
  color: var(--ds-ink);
}

body.page::before {
  content: '';
  position: fixed;
  z-index: -1;
  inset: 0 auto auto 0;
  width: min(28vw, 330px);
  height: 320px;
  opacity: 0.36;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 60, 135, 0.55) 0 1.3px, transparent 1.8px) 0 0 / 11px 11px;
  mask-image: linear-gradient(135deg, #000 0%, transparent 72%);
}

.navbar {
  padding-block: 0.85rem;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(0, 60, 135, 0.09);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.navbar::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ds-blue-deep) 0 62%, var(--ds-wave-orange) 62% 80%, var(--ds-blue-deep) 80%);
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 7px 28px rgba(0, 45, 112, 0.08);
}

.navbar__logo { max-height: 54px; }
.navbar__link { color: var(--ds-blue-deep); font-weight: 600; }
.navbar__link:hover,
.navbar__link--active { color: var(--ds-blue-deep); background: rgba(255, 159, 10, 0.14); }

.btn {
  min-height: 44px;
  border-radius: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 5px 0 rgba(0, 46, 115, 0.13);
}

.btn--primary { background: var(--ds-wave-orange); color: var(--ds-blue-deep); }
.btn--primary:hover { background: #ffb01d; box-shadow: 0 7px 0 rgba(0, 46, 115, 0.18); }
.btn--outline { border-color: var(--ds-blue-deep); color: var(--ds-blue-deep); background: rgba(255,255,255,0.82); }
.btn--outline:hover { background: var(--ds-blue-deep); border-color: var(--ds-blue-deep); color: #fff; }

.hero {
  min-height: 780px;
  isolation: isolate;
  align-items: stretch;
  background: linear-gradient(120deg, #fff 0 49%, #eef6ff 49% 100%);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -16vw;
  bottom: -16vw;
  width: min(78vw, 920px);
  aspect-ratio: 1.04;
  border-radius: 51% 0 0 0;
  transform: rotate(-7deg);
  pointer-events: none;
}

.hero::before {
  background: var(--ds-wave-orange);
  box-shadow: -18px -24px 0 #fff, -31px -38px 0 var(--ds-blue-deep);
}

.hero::after {
  right: -19vw;
  bottom: -19vw;
  width: min(72vw, 850px);
  background: radial-gradient(circle at 25% 20%, #176ac0 0, var(--ds-blue-deep) 58%, #00275f 100%);
}

.hero__bg { display: none; }

.hero__content {
  z-index: 2;
  max-width: 1280px;
  margin-inline: auto;
  padding-top: clamp(9rem, 16vw, 12rem);
  padding-bottom: clamp(10rem, 12vw, 13rem);
  padding-inline: var(--space-4);
  justify-content: center;
}

.hero__text { max-width: 590px; }
.hero .badge--eco { color: var(--ds-blue-deep); border-color: rgba(0, 60, 135, 0.2); background: #fff; box-shadow: var(--shadow-sm); }
.hero__title { color: var(--ds-blue-deep); font-family: var(--font-body); font-weight: 800; letter-spacing: -0.065em; line-height: 0.96; }
.hero__title .text-accent { color: var(--ds-wave-orange); }
.hero__subtitle { color: #3a4b68; font-size: clamp(1rem, 1.1vw, 1.15rem); max-width: 54ch; }

.hero__visual {
  position: relative;
  z-index: 3;
  min-height: 345px;
  display: grid;
  place-items: end center;
}

.hero__product-image {
  width: min(60vw, 390px);
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(0, 30, 80, 0.28));
  transform: translateX(8%);
}

.hero__mascot {
  z-index: 4;
  left: 5%;
  bottom: 2%;
  width: clamp(104px, 14vw, 180px);
  border-radius: 50%;
  border: 7px solid #fff;
  box-shadow: 0 14px 34px rgba(0, 35, 99, 0.26);
}

.section { position: relative; padding-block: clamp(4.5rem, 8vw, 7rem); }
.section__header { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.section__title { color: var(--ds-blue-deep); font-family: var(--font-body); font-weight: 800; letter-spacing: -0.045em; }
.section__subtitle { color: #536582; }
.text-primary { color: var(--ds-wave-orange); }

.value-section::before,
.section--light::before,
.contact-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 24px;
  background: linear-gradient(90deg, transparent 0 10%, var(--ds-wave-orange) 10% 34%, #fff 34% 37%, var(--ds-blue-deep) 37% 70%, transparent 70%);
  clip-path: ellipse(63% 100% at 50% 0%);
}

.value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 72, 154, 0.15);
  border-radius: 1.35rem;
  box-shadow: var(--wave-shadow);
  text-align: left;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--ds-blue-deep) 0 67%, var(--ds-wave-orange) 67%);
}

.value-card__icon { margin-inline: 0; color: var(--ds-blue); }
.value-card__title { color: var(--ds-blue-deep); font-family: var(--font-body); font-weight: 800; }
.value-card__text { margin-inline: 0; }

.section--light { background: #eef6ff; overflow: hidden; }
.section--light::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -190px;
  bottom: -210px;
  width: 520px;
  height: 520px;
  border: 34px solid var(--ds-wave-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 14px #fff, 0 0 0 28px var(--ds-blue-deep);
}

.section--light .container { position: relative; z-index: 1; }
.product-filters { gap: 0.65rem; }
.filter-btn {
  border: 1px solid rgba(0, 60, 135, 0.18);
  border-radius: 999px;
  color: var(--ds-blue-deep);
  font-weight: 700;
  background: rgba(255,255,255,0.88);
}
.filter-btn--active, .filter-btn:hover { background: var(--ds-blue-deep); color: #fff; }

.product-card {
  border: 1px solid rgba(0, 60, 135, 0.14);
  border-radius: 1.25rem;
  box-shadow: 0 10px 26px rgba(0, 57, 135, 0.10);
}
.product-card::before { content: ''; position: absolute; z-index: 2; inset: 0 auto auto 0; width: 100%; height: 6px; background: linear-gradient(90deg, var(--ds-blue-deep) 0 72%, var(--ds-wave-orange) 72%); }
.product-card__image { min-height: 280px; background: linear-gradient(150deg, #fff 0 65%, #e9f3ff 65%); }
.product-card__fps-badge { background: var(--ds-wave-orange); color: var(--ds-blue-deep); border-radius: 0.65rem; }
.product-card__category { color: var(--ds-blue); font-weight: 700; }
.product-card__title { color: var(--ds-blue-deep); font-family: var(--font-body); font-weight: 800; }
.product-card__price { color: var(--ds-blue-deep); }

.section--dark,
.cta-section {
  background: var(--ds-blue-deep);
  overflow: hidden;
}
.section--dark::before,
.cta-section::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: -8vw;
  bottom: -10vw;
  width: min(64vw, 760px);
  aspect-ratio: 1.3;
  border: 22px solid var(--ds-wave-orange);
  border-radius: 48% 52% 0 0;
  box-shadow: 0 -14px 0 #fff, 0 -28px 0 #0a57ad;
  transform: rotate(7deg);
}
.section--dark .container, .cta-section .container { position: relative; z-index: 1; }
.quiz-container { border: 1px solid rgba(255,255,255,0.28); box-shadow: 0 24px 60px rgba(0,0,0,0.23); }

.table-wrapper { border: 1px solid rgba(0, 60, 135, 0.18); border-radius: 1.15rem; box-shadow: var(--wave-shadow); }
.comparison-table thead { background: var(--ds-blue-deep); }
.comparison-table thead th { color: #fff; font-family: var(--font-body); font-weight: 800; }
.comparison-table tbody tr:nth-child(even) { background: #f1f7ff; }

.section--accent { background: #fff; overflow: hidden; }
.about-grid__image { position: relative; }
.about-grid__image::before {
  content: '';
  position: absolute;
  inset: 9% 4% 6% 10%;
  border-radius: 48% 52% 43% 57%;
  background: var(--ds-wave-orange);
  box-shadow: 18px -14px 0 #fff, 32px -28px 0 var(--ds-blue-deep);
  transform: rotate(-8deg);
}
.about-mascot { position: relative; z-index: 1; border: 8px solid #fff; border-radius: 46% 54% 50% 50%; }
.about-stat__number { color: var(--ds-blue-deep); font-family: var(--font-body); font-weight: 800; }

.footer {
  position: relative;
  overflow: hidden;
  background: var(--ds-blue-deep);
  padding-top: clamp(6rem, 12vw, 9rem);
}
.footer::before {
  content: '';
  position: absolute;
  top: -95px;
  right: -6%;
  left: -6%;
  height: 150px;
  border-radius: 0 0 50% 50%;
  background: #fff;
  box-shadow: 0 14px 0 var(--ds-wave-orange), 0 28px 0 var(--ds-blue);
}
.footer .container { position: relative; z-index: 1; }
.footer__logo { filter: drop-shadow(0 5px 10px rgba(0,0,0,.2)); }
.footer__slogan, .footer__made-in { color: rgba(255,255,255,.84); }

.contact-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(10rem, 15vw, 12rem);
  padding-bottom: clamp(5rem, 9vw, 7rem);
  background: linear-gradient(120deg, #fff 0 58%, #eef6ff 58% 100%);
}
.contact-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -190px;
  width: 490px;
  height: 360px;
  border-radius: 50% 0 0 0;
  background: var(--ds-blue-deep);
  box-shadow: -17px -12px 0 #fff, -31px -24px 0 var(--ds-wave-orange);
}
.contact-info__item, .contact-form-wrapper { border: 1px solid rgba(0, 60, 135, 0.14); box-shadow: var(--wave-shadow); }
.contact-info__item { border-left: 6px solid var(--ds-blue-deep); }
.contact-info__icon { color: var(--ds-wave-orange); }
.contact-mascot img { border: 7px solid #fff; border-radius: 50%; box-shadow: 0 16px 36px rgba(0, 57, 135, 0.2); }
.contact-form-wrapper { border-radius: 1.25rem; position: relative; overflow: hidden; }
.contact-form-wrapper::before { content: ''; position: absolute; inset: 0 0 auto; height: 7px; background: linear-gradient(90deg, var(--ds-blue-deep) 0 72%, var(--ds-wave-orange) 72%); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--ds-blue); box-shadow: 0 0 0 4px rgba(7, 72, 154, 0.12); }

@media (min-width: 768px) {
  .hero { min-height: 720px; }
  .hero__content { display: grid; grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.76fr); align-items: center; max-width: 1280px; }
  .hero__visual { min-height: 500px; align-self: end; }
  .hero__product-image { width: min(29vw, 390px); max-height: 490px; transform: translate(7%, -2%); }
  .hero__mascot { left: 3%; bottom: 12%; }
}

@media (max-width: 767px) {
  .navbar__cta { display: none; }
  .hero { min-height: auto; }
  .hero::before { width: 125vw; right: -60vw; bottom: -64vw; }
  .hero::after { width: 117vw; right: -66vw; bottom: -71vw; }
  .hero__content { padding-top: 8rem; padding-bottom: 7rem; }
  .hero__visual { margin-top: -1.5rem; }
  .hero__mascot { width: 108px; left: 2%; bottom: 3%; }
  .hero__product-image { transform: translateX(12%); }
  .footer::before { top: -65px; height: 108px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__product-image, .hero__mascot, .about-mascot { animation: none !important; }
}

/* Sprint 2: campaign hero and product showcase. The selectors below match the
   markup emitted by app.js, so the packshots keep their natural proportions. */
.hero__product-note {
  position: absolute;
  z-index: 5;
  top: 9%;
  right: 0;
  display: grid;
  gap: 0.05rem;
  min-width: 142px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 1rem;
  color: var(--ds-blue-deep);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(0, 39, 93, 0.19);
  backdrop-filter: blur(10px);
}

.hero__product-kicker {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ds-blue);
}

.hero__product-note strong { font-size: 1.55rem; line-height: 1; }
.hero__product-note span:last-child { font-size: 0.73rem; font-weight: 600; color: #536582; }
.hero__mascot { animation: none; }

.section__eyebrow {
  margin: 0 0 0.45rem;
  color: var(--ds-blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-card__image-container {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  overflow: hidden;
  padding: 1.5rem;
  background: linear-gradient(150deg, #fff 0 65%, #e9f3ff 65%);
  color: inherit;
  text-decoration: none;
  outline-offset: -4px;
}

.product-card__image-container:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--ds-orange) 72%, white);
}

.product-card__image-container::after {
  content: '';
  position: absolute;
  right: -18px;
  bottom: -29px;
  width: 116px;
  height: 116px;
  border: 13px solid rgba(255, 159, 10, 0.74);
  border-radius: 50%;
  box-shadow: 0 0 0 6px #fff, 0 0 0 12px rgba(0, 60, 135, 0.84);
}

.product-card__image-container .product-card__image {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: 224px;
  max-height: 224px;
  min-height: 0;
  object-fit: contain;
  background: transparent;
}

.product-card__image-container--showcase {
  padding: 0;
  background: #fff;
}

.product-card__image-container--showcase::after { display: none; }

.product-card__image-container .product-card__image--showcase {
  width: 100%;
  height: 100%;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: center 54%;
  box-shadow: none;
}

.product-card__badge { position: absolute; z-index: 3; top: 1rem; left: 1rem; }
.product-card__fps-badge, .product-card__badge { background: var(--ds-wave-orange); color: var(--ds-blue-deep); border-radius: 0.65rem; }
.product-card__body { flex: 1; }
.product-card__footer { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.product-card__footer .btn { min-width: 0; padding-inline: 0.6rem; }

@media (min-width: 768px) {
  .hero__product-note { top: 15%; right: 2%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1120px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .hero__product-note { top: 3%; right: 2%; transform: scale(0.88); transform-origin: top right; }
}

/* Layout corrections observed in the live page. */
html { scroll-padding-top: 6.5rem; }

/* The grid belongs to the cards, not to the section container. */
.value-section { display: block; }
.value-section .container > .grid { width: 100%; }

/* Contrast and content safeguards for the blue comparison and quiz surfaces. */
.comparison-table thead th {
  background: var(--ds-blue-deep);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.comparison-table th:nth-child(n + 2):nth-child(-n + 7),
.comparison-table td:nth-child(n + 2):nth-child(-n + 7) {
  text-align: center;
}

.comparison-table td:nth-child(n + 4):nth-child(-n + 7) {
  font-size: 1.15rem;
  font-weight: 700;
}

.section--dark .quiz-question,
.section--dark .quiz-result__name {
  color: var(--ds-blue-deep);
}

.section--dark .quiz-option {
  color: var(--ds-ink);
  background: #fff;
}

.section--dark .quiz-option__text { color: var(--ds-ink); }
.section--dark .quiz-option:hover { background: #fff8ed; border-color: var(--ds-wave-orange); }

.quiz-container { background: #fff; }
.quiz-question { font-family: var(--font-body); font-weight: 800; letter-spacing: -0.035em; }
.quiz-options { gap: 1rem; }
.quiz-option { min-height: 112px; border-color: #dbeafe; }

/* Replace the circular bubbles behind the mascot with the curved brand waves. */
.about-grid__image { overflow: visible; min-height: 390px; }
.about-grid__image::before {
  inset: auto -8% 5% -10%;
  width: 118%;
  height: 62%;
  border: 0;
  border-radius: 48% 52% 36% 64% / 58% 38% 62% 42%;
  background: var(--ds-blue-deep);
  box-shadow: 0 -18px 0 #fff, 0 -34px 0 var(--ds-wave-orange), 0 -48px 0 var(--ds-blue);
  transform: rotate(-8deg);
}

.about-grid__image::after {
  content: '';
  position: absolute;
  z-index: 0;
  right: -4%;
  bottom: 3%;
  left: 8%;
  height: 48%;
  border-radius: 55% 45% 64% 36% / 40% 62% 38% 60%;
  background: rgba(255, 159, 10, 0.92);
  transform: rotate(7deg);
}

.about-mascot { z-index: 2; }

.cta-section .section__title { color: #fff; }
.cta-section .section__subtitle { color: rgba(255, 255, 255, 0.84); }
.cta-section .btn--outline { color: #fff !important; border-color: #fff !important; background: rgba(255,255,255,0.12); }
.cta-section .btn--outline:hover { color: var(--ds-blue-deep) !important; background: #fff; }

.footer__logo {
  width: 158px !important;
  max-width: 158px;
  max-height: none;
  height: auto;
}

/* Product lifestyle artwork is editorial material, never a cropped thumbnail. */
.modal__lifestyle-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 360px;
  margin-inline: auto;
  border: 1px solid rgba(0, 60, 135, 0.1);
  object-fit: contain;
  aspect-ratio: auto;
  background: #f7fbff;
}

@media (max-width: 767px) {
  .modal__lifestyle-image { max-height: 300px; }
}

/* ==========================================================================
   Visual guide alignment: source of truth for DermaSun 2026.
   ========================================================================== */
:root {
  --guide-blue: #003087;
  --guide-orange: #ff7a00;
  --guide-yellow: #ffc107;
  --guide-cream: #f6efe6;
  --guide-surface: #f2f4f7;
  --guide-border: #e2e8f2;
  --guide-text: #18345f;
  --guide-muted: #63718a;
  --guide-shadow: 0 10px 28px rgba(0, 48, 135, 0.09);
}

body.page {
  background: var(--guide-surface);
  color: var(--guide-text);
}

body.page::before {
  width: 240px;
  height: 210px;
  opacity: 0.28;
  background: radial-gradient(circle, rgba(0, 48, 135, 0.52) 0 1.2px, transparent 1.8px) 0 0 / 11px 11px;
}

h1, h2, h3, h4, h5, h6,
.section__title,
.hero__title,
.product-card__title,
.modal__title {
  font-family: var(--font-body);
}

.navbar {
  padding-block: 0.65rem;
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 12px rgba(0, 48, 135, .06);
}

.navbar::after { height: 2px; background: linear-gradient(90deg, var(--guide-blue) 0 62%, var(--guide-orange) 62% 80%, var(--guide-blue) 80%); }
.navbar__container { max-width: 1280px; }
.navbar__logo { max-height: 48px; }
.navbar__link { color: var(--guide-text); font-size: .83rem; }
.navbar__link:hover, .navbar__link--active { color: var(--guide-blue); background: #f6efe6; }
.catalog-menu { position: relative; }
.catalog-menu details { position: relative; }
.catalog-menu summary { list-style: none; cursor: pointer; }
.catalog-menu summary::-webkit-details-marker { display: none; }
.catalog-menu summary::after { content: '⌄'; margin-left: .35rem; font-size: .9em; }
.catalog-menu[open] summary::after, .catalog-menu details[open] summary::after { content: '⌃'; }
.catalog-menu__panel {
  position: absolute;
  z-index: 700;
  top: calc(100% + .45rem);
  left: 0;
  display: grid;
  min-width: 210px;
  padding: .45rem;
  border: 1px solid var(--guide-border);
  border-radius: .75rem;
  background: #fff;
  box-shadow: var(--guide-shadow);
}
.catalog-menu__panel a { padding: .62rem .7rem; border-radius: .45rem; color: var(--guide-text); font-size: .78rem; font-weight: 600; }
.catalog-menu__panel a:hover { color: var(--guide-blue); background: #edf4fc; }
.catalog-menu--mobile .catalog-menu__panel { position: static; margin-top: .35rem; box-shadow: none; }

.btn {
  min-height: 42px;
  border-radius: .6rem;
  box-shadow: none;
  font-size: .86rem;
  font-weight: 700;
}
.btn--primary { color: #fff; background: var(--guide-orange); }
.btn--primary:hover { color: #fff; background: #e96900; box-shadow: 0 7px 14px rgba(255,122,0,.2); }
.btn--outline { color: var(--guide-blue); border-color: var(--guide-blue); background: #fff; }
.btn--outline:hover { color: #fff; background: var(--guide-blue); }

.hero {
  min-height: auto;
  padding: 7.25rem 1rem 3.5rem;
  background: transparent;
  overflow: visible;
}
.hero::before, .hero::after { display: none; }
.hero__content {
  display: grid;
  max-width: 1200px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--guide-border);
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: var(--guide-shadow);
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.4rem);
}
.hero__title {
  max-width: 9ch;
  color: var(--guide-blue);
  font-size: clamp(2.25rem, 4.7vw, 4.35rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.065em;
}
.hero__title .text-accent { color: var(--guide-blue); }
.hero__subtitle { color: var(--guide-muted); font-size: 1rem; line-height: 1.65; }
.hero .badge--eco { display: none; }
.hero__cta-group { gap: .7rem; }
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  margin-top: 2rem;
}
.hero__trust span {
  padding: .75rem .45rem;
  border: 1px solid var(--guide-border);
  border-radius: .75rem;
  color: var(--guide-blue);
  font-size: .66rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
.hero__visual {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}
.hero__product-image,
.hero__product-image--showcase {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
}
.hero__product-note {
  top: 1.25rem;
  right: 1.25rem;
  border: 0;
  border-radius: .7rem;
  background: rgba(255,255,255,.93);
  box-shadow: 0 8px 20px rgba(0,48,135,.13);
}
.hero__mascot { display: none; }


.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
.section__header { margin-bottom: 2.4rem; }
.section__title { color: var(--guide-blue); font-size: clamp(1.85rem, 3.2vw, 2.7rem); font-weight: 800; letter-spacing: -0.055em; }
.section__subtitle { color: var(--guide-muted); font-size: .98rem; }
.section__eyebrow { color: var(--guide-blue); font-size: .72rem; }
.text-primary { color: var(--guide-orange); }

.value-section { background: transparent; }
.value-section::before { display: none; }
.value-card {
  min-height: 214px;
  padding: 1.6rem;
  border: 1px solid var(--guide-border);
  border-radius: 1rem;
  box-shadow: 0 5px 18px rgba(0,48,135,.05);
}
.value-card::before { display: none; }
.value-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 1rem;
  padding: .75rem;
  border: 1px solid #d7e0ef;
  border-radius: 50%;
  color: var(--guide-blue);
}
.value-card__title { color: var(--guide-blue); font-size: 1.05rem; }
.value-card__text { color: var(--guide-muted); font-size: .84rem; }

.section--light { background: #edf3fa; }
.section--light::before, .section--light::after { display: none; }
.product-filters { gap: .55rem; }
.filter-btn { padding: .62rem 1rem; border-color: #d6e0ee; color: var(--guide-blue); font-size: .82rem; }
.filter-btn--active, .filter-btn:hover { background: var(--guide-blue); color: #fff; }
.product-grid { gap: 1.25rem; }
.product-card {
  border: 1px solid var(--guide-border);
  border-radius: .95rem;
  box-shadow: 0 5px 18px rgba(0,48,135,.07);
}
.product-card::before { height: 0; }
.product-card__image-container { min-height: 280px; background: #fff; }
.product-card__image-container::after { display: none; }
.product-card__image-container--showcase { background: #fff; }
.product-card__body { padding: 1rem 1.15rem .55rem; }
.product-card__category { color: var(--guide-blue); font-size: .65rem; }
.product-card__title { color: var(--guide-text); font-size: 1rem; line-height: 1.3; }
.product-card__capacity { margin-bottom: .45rem; color: var(--guide-muted); font-size: .82rem; }
.product-card__footer { padding: .8rem 1.15rem 1.15rem; }
.product-card__badge, .product-card__fps-badge, .badge--fps { color: var(--guide-blue); background: var(--guide-yellow); }

.section--dark { color: var(--guide-text); background: var(--guide-cream); }
.section--dark::before { display: none; }
.section--dark .section__title, .section--dark .text-white { color: var(--guide-blue) !important; }
.section--dark .section__subtitle { color: var(--guide-muted) !important; opacity: 1 !important; }
.quiz-container { max-width: 900px; border: 1px solid var(--guide-border); border-radius: 1rem; box-shadow: var(--guide-shadow); }
.quiz-question { color: var(--guide-blue) !important; font-size: 1.45rem; }
.quiz-option { min-height: 100px; border-color: var(--guide-border); border-radius: .8rem; box-shadow: none; }
.quiz-option:hover { transform: translateY(-2px); box-shadow: 0 8px 16px rgba(0,48,135,.08); }
.quiz-progress { background: #e7edf5; }
.quiz-progress__bar { background: var(--guide-orange); }

.table-wrapper { border: 1px solid var(--guide-border); border-radius: 1rem; box-shadow: var(--guide-shadow); }
.comparison-table thead th { background: var(--guide-blue); }
.comparison-table td { color: var(--guide-text); }
.comparison-table tbody tr:nth-child(even) { background: #f7faff; }

/* Mobile turns the wide comparison into readable product records. */
.quiz-step__count {
  margin: 0 0 .45rem;
  color: var(--guide-orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
}

.quiz-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: .25rem .8rem;
  min-height: 0;
  padding: 1rem 1.1rem;
  text-align: left;
}

.quiz-option__number {
  display: grid;
  grid-row: 1 / span 2;
  width: 2.15rem;
  height: 2.15rem;
  place-items: center;
  border-radius: 50%;
  color: var(--guide-blue);
  background: #edf4fc;
  font-size: .7rem;
  font-weight: 800;
}

.quiz-option__text { color: var(--guide-blue) !important; font-size: .92rem; }
.quiz-option__meta { color: var(--guide-muted); font-size: .73rem; line-height: 1.35; }
.quiz-option:hover .quiz-option__number { color: #fff; background: var(--guide-orange); }

.quiz-result__why {
  margin-top: 1rem;
  padding: .8rem .9rem;
  border: 1px solid var(--guide-border);
  border-radius: .65rem;
  background: #f8fbff;
}
.quiz-result__why strong { color: var(--guide-blue); font-size: .78rem; }
.quiz-result__why p { margin: .25rem 0 0; color: var(--guide-muted); font-size: .78rem; line-height: 1.5; }

@media (max-width: 767px) {
  .table-wrapper { overflow: visible; padding: .65rem; background: transparent; box-shadow: none; }
  .comparison-table, .comparison-table tbody { display: block; min-width: 0; }
  .comparison-table thead { display: none; }
  .comparison-table tbody { display: grid; gap: .9rem; }
  .comparison-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--guide-border);
    border-radius: .9rem;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 48, 135, .07);
  }
  .comparison-table td {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: .45rem;
    padding: .72rem .75rem;
    border: 0;
    border-bottom: 1px solid #e4edf7;
    font-size: .78rem;
    text-align: right !important;
  }
  .comparison-table td::before {
    content: attr(data-label);
    flex: 1 1 auto;
    color: var(--guide-muted);
    font-size: .63rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-align: left;
    text-transform: uppercase;
  }
  .comparison-table td:first-child, .comparison-table td:last-child { grid-column: 1 / -1; }
  .comparison-table td:first-child { padding: .8rem; background: #f7faff; }
  .comparison-table td:last-child { justify-content: flex-end; border-bottom: 0; }
  .comparison-table td:last-child::before { display: none; }
  .comparison-table td:nth-last-child(2), .comparison-table td:nth-last-child(3) { border-bottom: 0; }
  .table-product { gap: .65rem; text-align: left; }
  .table-product__image { width: 42px; height: 42px; }
  .table-product__name { font-size: .86rem; line-height: 1.25; }
  .comparison-table .btn { width: 100%; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-result__actions .btn { width: 100%; }
}

.section--accent { background: #fff; }
.about-grid__image { min-height: 340px; }
.about-grid__image::before { background: var(--guide-blue); box-shadow: 0 -13px 0 #fff, 0 -25px 0 var(--guide-orange), 0 -36px 0 #4f80c4; }
.about-grid__image::after { background: var(--guide-orange); }
.about-mascot { max-width: 300px; box-shadow: 0 14px 24px rgba(0,48,135,.12); }
.about-grid__content .section__title { margin-bottom: .75rem; }
.about-stat__number { color: var(--guide-blue); }
.about-stat__label { color: var(--guide-muted); }

.cta-section { background: var(--guide-blue); }
.cta-section::before { background: radial-gradient(circle, rgba(255,193,7,.2), transparent 65%); }
.cta-section {
  padding-bottom: 8.5rem;
  overflow: hidden;
}
.cta-section::after {
  display: block;
  z-index: 0;
  right: -5%;
  bottom: -4.5rem;
  left: -5%;
  width: 110%;
  height: 8.5rem;
  border-radius: 50% 50% 0 0 / 52% 52% 0 0;
  background: #fff;
  box-shadow: 0 -12px 0 var(--guide-orange), 0 -24px 0 #4f80c4;
  transform: none;
}
.cta-section .reveal { text-align: center; }
.cta-section .section__subtitle { margin-inline: auto; }
.cta-section .section__title { color: #fff; }
.cta-section .section__subtitle { color: rgba(255,255,255,.82); }

.footer { margin-top: -3.75rem; padding-top: 9rem; background: var(--guide-blue); }
.footer::before { top: -84px; height: 132px; box-shadow: 0 11px 0 var(--guide-orange), 0 22px 0 #3266ae; }
.footer__heading { font-size: .88rem; }
.footer__links a, .footer__contact { font-size: .8rem; }

.contact-hero { background: var(--guide-cream); }
.contact-hero::after { background: var(--guide-blue); box-shadow: -14px -10px 0 #fff, -27px -20px 0 var(--guide-orange); }
.contact-info__item, .contact-form-wrapper { border-color: var(--guide-border); box-shadow: var(--guide-shadow); }

/* The mascot sits on continuous brand waves, never on isolated blobs. */
.about-grid__image::before {
  right: -9%;
  bottom: 18%;
  left: -12%;
  width: 121%;
  height: 31%;
  border-radius: 52% 48% 50% 50% / 75% 72% 28% 25%;
  background: var(--guide-blue);
  box-shadow: 0 -11px 0 #fff, 0 -22px 0 var(--guide-orange), 0 -33px 0 #4f80c4;
  transform: rotate(-4deg);
}
.about-grid__image::after { display: none; }

.contact-hero .container,
.contact-info {
  text-align: center;
}
.contact-hero .section__subtitle,
.contact-info > p {
  margin-inline: auto;
}
.contact-info { align-items: center; }
.contact-info__item { width: min(100%, 410px); text-align: left; }

@media (max-width: 767px) {
  .cta-section { padding-bottom: 7rem; }
  .cta-section::after { bottom: -5rem; height: 7rem; }
  .footer { margin-top: -3rem; padding-top: 7rem; }
}

@media (min-width: 900px) {
  .hero__content { grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr); }
  .hero__visual { min-height: 540px; }
  .hero__product-note { top: 1.5rem; right: 1.5rem; }
}

@media (max-width: 899px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { min-height: 370px; }
  .hero__product-note { top: 1rem; right: 1rem; }
  .hero__trust { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Bloqueadores: fichas técnicas individuales.
   ========================================================================== */
.skip-link {
  position: fixed;
  z-index: 2000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--guide-blue);
  border-radius: .5rem;
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.blockers-hero {
  position: relative;
  overflow: hidden;
  padding: 10rem 0 5.5rem;
  background: var(--guide-cream);
}
.blockers-hero::before,
.blockers-hero::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
.blockers-hero::before {
  right: -10rem;
  bottom: -11rem;
  width: min(55vw, 720px);
  height: 330px;
  border-radius: 58% 0 0 0;
  background: var(--guide-blue);
  box-shadow: -15px -11px 0 #fff, -28px -22px 0 var(--guide-orange);
}
.blockers-hero::after {
  top: 5.5rem;
  left: 0;
  width: 220px;
  height: 190px;
  opacity: .28;
  background: radial-gradient(circle, rgba(0,48,135,.65) 0 1.3px, transparent 1.8px) 0 0 / 11px 11px;
}
.blockers-hero__content { position: relative; z-index: 1; max-width: 900px; text-align: center; }
.blockers-hero__content .section__eyebrow { margin-inline: auto; text-align: center; }
.blockers-hero h1 { max-width: 14ch; margin: 0 auto 1rem; color: var(--guide-blue); font-size: clamp(2.35rem, 5vw, 4.35rem); font-weight: 800; line-height: 1.05; letter-spacing: -.06em; }
.blockers-hero h1 span { color: var(--guide-orange); }
.blockers-hero p:not(.section__eyebrow) { margin-inline: auto; color: var(--guide-muted); }

.blockers-page { background: var(--guide-surface); }
.blockers-page__intro { display: grid; grid-template-columns: 1fr; gap: 1.25rem; align-items: end; margin-bottom: 2rem; }
.blockers-page__intro .section__title { margin: 0; }
.blockers-select-label { color: var(--guide-blue); font-size: .78rem; font-weight: 700; }
.blockers-select {
  width: 100%;
  min-height: 46px;
  margin-top: .45rem;
  padding: .65rem .85rem;
  border: 1px solid var(--guide-border);
  border-radius: .7rem;
  color: var(--guide-text);
  background: #fff;
}

.blockers-layout { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.blockers-nav {
  padding: .75rem;
  border: 1px solid var(--guide-border);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0,48,135,.05);
}
.blockers-nav > p { margin: .4rem .5rem .8rem; color: var(--guide-blue); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.blockers-nav > div { display: flex; gap: .45rem; overflow-x: auto; padding-bottom: .25rem; }
.blockers-nav button {
  display: flex;
  min-width: 210px;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .8rem .85rem;
  border: 1px solid transparent;
  border-radius: .7rem;
  color: var(--guide-text);
  background: #fff;
  font-size: .76rem;
  font-weight: 600;
  text-align: left;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}
.blockers-nav button strong { color: var(--guide-orange); font-size: .7rem; white-space: nowrap; }
.blockers-nav button:hover, .blockers-nav button.is-active { border-color: #cbd9ed; color: var(--guide-blue); background: #edf4fc; }

.blocker-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--guide-border);
  border-radius: 1.15rem;
  background: #fff;
  box-shadow: var(--guide-shadow);
}
.blocker-detail__visual {
  min-height: 330px;
  background: #fff;
}
.blocker-detail__visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.blocker-detail__content { padding: clamp(1.5rem, 4vw, 2.75rem); }
.blocker-detail__content h2 { margin-bottom: .75rem; color: var(--guide-blue); font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 800; line-height: 1.12; letter-spacing: -.045em; }
.blocker-detail__description { margin-bottom: 1.5rem; color: var(--guide-muted); font-size: .93rem; }

.blocker-specs { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; padding: 1rem; border: 1px solid var(--guide-border); border-radius: .85rem; background: #f8fbff; }
.protection-gauge {
  position: relative;
  display: grid;
  width: 102px;
  height: 102px;
  flex: 0 0 102px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--guide-orange) 0deg var(--gauge), #dce7f4 var(--gauge) 360deg);
}
.protection-gauge::before { content: ''; position: absolute; width: 80px; height: 80px; border-radius: 50%; background: #fff; }
.product-category-mark { display: grid; width: 102px; height: 102px; flex: 0 0 102px; place-items: center; border: 9px solid var(--guide-orange); border-radius: 50%; color: var(--guide-blue); background: #fff; }
.product-category-mark span { font-size: 1.25rem; font-weight: 800; letter-spacing: .08em; }
.product-category-mark svg { width: 43px; height: 43px; }
.product-category-mark--cuidado { color: #11813c; }
.protection-gauge div { position: relative; z-index: 1; display: grid; line-height: 1; text-align: center; }
.protection-gauge strong { color: var(--guide-blue); font-size: 1.55rem; }
.protection-gauge span { margin-top: .2rem; color: var(--guide-muted); font-size: .62rem; font-weight: 800; letter-spacing: .08em; }
.blocker-specs__copy { display: grid; gap: .2rem; }
.blocker-specs__copy strong { color: var(--guide-blue); font-size: .88rem; }
.blocker-specs__copy p { margin: 0; color: var(--guide-muted); font-size: .78rem; line-height: 1.45; }
.blocker-specs__copy span { color: var(--guide-orange); font-size: .75rem; font-weight: 700; }

.blocker-benefits { margin-bottom: 1.5rem; }
.blocker-benefits h3 { margin-bottom: .65rem; color: var(--guide-blue); font-size: 1rem; }
.blocker-benefits ul { display: grid; grid-template-columns: 1fr; gap: .45rem; }
.blocker-benefits li { display: flex; gap: .4rem; color: var(--guide-text); font-size: .8rem; }
.blocker-benefits li span { color: #11813c; font-weight: 800; }

.blocker-detail__sheet { padding: 1.5rem; border-top: 1px solid var(--guide-border); background: #f8fbff; }
.blocker-sheet { max-width: 650px; margin-inline: auto; }
.blocker-sheet img { width: 100%; border: 1px solid var(--guide-border); border-radius: .75rem; background: #fff; }
.blocker-sheet figcaption { margin-top: .55rem; color: var(--guide-muted); font-size: .74rem; text-align: center; }

.blockers-cta { position: relative; overflow: hidden; padding: 4rem 0 7rem; color: #fff; background: var(--guide-blue); }
.blockers-cta::after { content: ''; position: absolute; right: -4%; bottom: -3.25rem; left: -4%; height: 6rem; border-radius: 50% 50% 0 0 / 60% 60% 0 0; background: #fff; box-shadow: 0 -10px 0 var(--guide-orange), 0 -20px 0 #4f80c4; }
.blockers-cta .container { position: relative; z-index: 1; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem; text-align: center; }
.blockers-cta h2 { max-width: 25ch; color: #fff; font-size: clamp(1.45rem, 3vw, 2.25rem); font-weight: 800; line-height: 1.15; }
.blockers-cta .section__eyebrow { color: #fff; opacity: .74; }
.blockers-cta .btn--outline { color: #fff; border-color: #fff; background: rgba(255,255,255,.1); }

@media (min-width: 760px) {
  .blockers-page__intro { grid-template-columns: 1fr auto; }
  .blockers-select-label { min-width: 290px; }
  .blockers-layout { grid-template-columns: 260px minmax(0, 1fr); align-items: start; }
  .blockers-nav { position: sticky; top: 5.7rem; }
  .blockers-nav > div { display: grid; overflow: visible; }
  .blockers-nav button { min-width: 0; }
  .blocker-detail { grid-template-columns: minmax(290px, .82fr) minmax(0, 1.18fr); }
  .blocker-detail__visual { min-height: 520px; }
  .blocker-detail__sheet { grid-column: 1 / -1; }
  .blocker-benefits ul { grid-template-columns: 1fr 1fr; }
  .blockers-cta .container { justify-content: space-between; text-align: left; }
}

@media (max-width: 759px) {
  .blockers-hero { padding-top: 8rem; }
  .blockers-hero::before { right: -12rem; width: 500px; height: 200px; }
  .blockers-nav { display: none; }
  .blocker-detail__visual { min-height: 390px; }
}

/* Wave refinement: continuous footer wave + clearer mascot ribbon. */
.cta-section::after,
.blockers-cta::after {
  background: var(--guide-blue);
  box-shadow:
    0 -12px 0 var(--guide-orange),
    0 -24px 0 #4f80c4,
    0 18px 0 var(--guide-blue);
}

.footer {
  margin-top: -7.25rem;
  padding-top: 12rem;
}

.footer::before {
  top: -118px;
  height: 178px;
  background: var(--guide-blue);
  box-shadow:
    0 -12px 0 #4f80c4,
    0 -24px 0 var(--guide-orange),
    0 28px 0 var(--guide-blue);
}

.about-grid__image {
  min-height: 430px;
  isolation: isolate;
}

.about-grid__image::before {
  right: -18%;
  bottom: 9%;
  left: -18%;
  width: 136%;
  height: 43%;
  border-radius: 58% 42% 54% 46% / 70% 76% 24% 30%;
  background:
    radial-gradient(80% 110% at 50% 8%, rgba(255, 255, 255, 0.2), transparent 48%),
    var(--guide-blue);
  box-shadow:
    0 -16px 0 var(--guide-orange),
    0 -32px 0 #4f80c4,
    0 18px 34px rgba(0, 48, 135, 0.22);
  transform: rotate(-5deg);
}

.about-grid__image::after {
  display: block;
  content: '';
  position: absolute;
  z-index: 0;
  right: 4%;
  bottom: 20%;
  left: 20%;
  height: 22%;
  border-radius: 999px 999px 45% 55%;
  background: var(--guide-orange);
  opacity: .95;
  transform: rotate(4deg);
}

.about-mascot {
  position: relative;
  z-index: 2;
  box-shadow: 0 18px 42px rgba(0, 48, 135, .16);
}

@media (max-width: 767px) {
  .footer {
    margin-top: -5.75rem;
    padding-top: 9rem;
  }

  .footer::before {
    top: -92px;
    height: 138px;
  }

  .about-grid__image {
    min-height: 360px;
  }

  .about-grid__image::before {
    right: -26%;
    left: -26%;
    width: 152%;
    height: 36%;
  }
}

/* Motion + UI polish: brand waves move softly and core controls feel tactile. */
:root {
  --motion-soft: cubic-bezier(0.2, 0, 0, 1);
  --motion-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-section::after,
.footer::before,
.blockers-cta::after,
.blockers-hero::before,
.contact-hero::after,
.about-grid__image::before,
.about-grid__image::after {
  will-change: transform, opacity;
}

.cta-section::after,
.blockers-cta::after,
.footer::before {
  animation: ds-wave-surface 11s var(--motion-soft) infinite alternate;
}

.blockers-hero::before,
.contact-hero::after {
  --wave-rotate: 0deg;
  animation: ds-wave-corner 13s var(--motion-soft) infinite alternate;
}

.about-grid__image::before {
  --wave-rotate: -5deg;
  animation: ds-wave-corner 12s var(--motion-soft) infinite alternate;
}

.about-grid__image::after {
  --wave-rotate: 4deg;
  animation: ds-wave-corner 14s var(--motion-soft) infinite alternate-reverse;
}

.btn,
.filter-btn,
.catalog-menu__panel a,
.value-card,
.product-card,
.quiz-option,
.contact-info__item,
.blockers-nav button,
.blocker-detail,
.blocker-specs {
  transition:
    transform 190ms var(--motion-snap),
    box-shadow 190ms ease,
    border-color 190ms ease,
    background-color 190ms ease,
    color 190ms ease;
}

.btn:hover,
.filter-btn:hover,
.catalog-menu__panel a:hover {
  transform: translateY(-1px);
}

.btn:active,
.filter-btn:active,
.blockers-nav button:active {
  transform: translateY(1px) scale(.99);
}

.value-card:hover,
.product-card:hover,
.contact-info__item:hover,
.blocker-detail:hover {
  border-color: color-mix(in oklch, var(--guide-blue) 24%, var(--guide-border));
  box-shadow: 0 14px 34px rgba(0, 48, 135, 0.12);
  transform: translateY(-3px);
}

.product-card:hover .product-card__image-container .product-card__image {
  transform: translateY(-4px) scale(1.015);
}

.product-card__image-container .product-card__image {
  transition: transform 260ms var(--motion-soft);
}

.hero__trust span {
  position: relative;
  overflow: hidden;
}

.hero__trust span::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--guide-orange), var(--guide-blue));
  opacity: .86;
}

.navbar__link:focus-visible,
.btn:focus-visible,
.filter-btn:focus-visible,
.catalog-menu summary:focus-visible,
.catalog-menu__panel a:focus-visible,
.quiz-option:focus-visible,
.blockers-nav button:focus-visible,
.blockers-select:focus-visible,
.form-input:focus-visible,
.form-textarea:focus-visible,
.form-select:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--guide-orange) 68%, white);
  outline-offset: 3px;
}

@keyframes ds-wave-surface {
  from {
    opacity: .98;
    transform: translate3d(-14px, 0, 0) scaleX(1.015);
  }
  to {
    opacity: 1;
    transform: translate3d(14px, -8px, 0) scaleX(1.035);
  }
}

@keyframes ds-wave-corner {
  from {
    opacity: .96;
    transform: translate3d(0, 0, 0) rotate(var(--wave-rotate, 0deg)) scale(1);
  }
  to {
    opacity: 1;
    transform: translate3d(-12px, -8px, 0) rotate(calc(var(--wave-rotate, 0deg) + 1.5deg)) scale(1.018);
  }
}

/* ==========================================================================
   Publication polish: hierarchy, states, responsive safeguards.
   ========================================================================== */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  box-shadow: 0 10px 28px rgba(0, 48, 135, .18);
  transition: transform 180ms var(--motion-soft);
}

.navbar__mobile-menu[aria-hidden="true"] {
  visibility: hidden;
}

.navbar__mobile-menu--open[aria-hidden="false"] {
  visibility: visible;
}

.hero__content {
  position: relative;
}

.hero__content::after {
  content: '';
  position: absolute;
  right: 42%;
  bottom: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(0, 48, 135, .12), transparent);
  pointer-events: none;
}

.hero__title {
  letter-spacing: clamp(-0.045em, -0.7vw, -0.025em);
  text-wrap: balance;
}

.hero__subtitle,
.section__subtitle,
.about-grid__content p,
.product-card__capacity,
.quiz-result__desc,
.modal__description {
  text-wrap: pretty;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-width: max-content;
}

.btn--primary {
  border-color: color-mix(in oklch, var(--guide-orange) 78%, black);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #e96900;
}

.btn--outline:hover,
.btn--outline:focus-visible {
  color: #fff;
  background: var(--guide-blue);
}

.filter-btn[aria-pressed="true"] {
  color: #fff;
  background: var(--guide-blue);
  border-color: var(--guide-blue);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, .18);
}

.product-grid[aria-busy="true"] {
  opacity: .68;
}

.product-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: .35rem;
  min-height: 180px;
  place-items: center;
  padding: 2rem;
  border: 1px dashed color-mix(in oklch, var(--guide-blue) 34%, var(--guide-border));
  border-radius: 1rem;
  color: var(--guide-muted);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 122, 0, .12), transparent 42%),
    #fff;
  text-align: center;
}

.product-empty strong {
  color: var(--guide-blue);
  font-size: 1rem;
}

.product-card {
  min-height: 100%;
}

.product-card__body {
  display: grid;
  gap: .42rem;
}

.product-card__title {
  min-height: 2.6em;
}

.product-card__footer {
  align-items: center;
}

.quiz-container {
  position: relative;
}

.quiz-step[aria-hidden="true"] {
  display: none;
}

.quiz-question:focus {
  outline: none;
}

.quiz-option[aria-pressed="true"] {
  border-color: var(--guide-orange);
  background: #fff8ed;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, .28);
}

.quiz-option[aria-pressed="true"] .quiz-option__number {
  color: #fff;
  background: var(--guide-orange);
}

.quiz-progress {
  overflow: hidden;
}

.quiz-result-card:empty {
  min-height: 160px;
  border: 1px dashed var(--guide-border);
  border-radius: .9rem;
  background: #f8fbff;
}

.comparison-table th,
.comparison-table td {
  vertical-align: middle;
}

.comparison-table .text-success,
.comparison-table .text-muted {
  display: inline-grid;
  min-width: 1.65rem;
  min-height: 1.65rem;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
}

.comparison-table .text-success {
  color: #0f7a3a;
  background: rgba(21, 128, 61, .1);
}

.comparison-table .text-muted {
  color: var(--guide-muted);
  background: #eef3f8;
}

.about-grid {
  align-items: center;
}

.about-grid__image::before {
  bottom: 8%;
  height: 46%;
  border-radius: 62% 38% 55% 45% / 74% 78% 22% 26%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .16), transparent 42%),
    var(--guide-blue);
}

.about-grid__image::after {
  right: 0;
  bottom: 22%;
  left: 24%;
  height: 24%;
  border-radius: 58% 42% 48% 52% / 68% 74% 26% 32%;
}

.about-mascot {
  background: #fff;
}

.cta-section::after,
.footer::before,
.blockers-cta::after {
  backface-visibility: hidden;
}

.modal__close:focus-visible,
.scroll-top:focus-visible,
.footer a:focus-visible {
  outline: 3px solid color-mix(in oklch, var(--guide-orange) 68%, white);
  outline-offset: 3px;
}

@media (max-width: 899px) {
  .hero__content::after {
    right: 0;
    bottom: auto;
    top: 50%;
    width: 100%;
    height: 1px;
  }

  .hero__cta-group {
    align-items: stretch;
  }

  .hero__cta-group .btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .section {
    padding-block: 3.25rem;
  }

  .section__header {
    margin-bottom: 1.75rem;
  }

  .section__title {
    letter-spacing: -0.035em;
  }

  .product-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding: .15rem .1rem .5rem;
    scroll-snap-type: x proximity;
  }

  .filter-btn {
    flex: 0 0 auto;
    min-height: 42px;
    scroll-snap-align: start;
  }

  .product-card__footer {
    grid-template-columns: 1fr;
  }

  .about-grid__image::after {
    right: -4%;
    left: 18%;
  }

  .cta-section .hero__cta-group {
    display: grid;
  }

  .footer__grid {
    gap: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-section::after,
  .footer::before,
  .blockers-cta::after,
  .blockers-hero::before,
  .contact-hero::after,
  .about-grid__image::before,
  .about-grid__image::after {
    animation: none !important;
    transform: rotate(var(--wave-rotate, 0deg));
    will-change: auto;
  }

  .btn,
  .filter-btn,
  .catalog-menu__panel a,
  .value-card,
  .product-card,
  .quiz-option,
  .contact-info__item,
  .blockers-nav button,
  .blocker-detail,
  .blocker-specs,
  .product-card__image-container .product-card__image {
    transition: none !important;
  }

  .btn:hover,
  .filter-btn:hover,
  .catalog-menu__panel a:hover,
  .value-card:hover,
  .product-card:hover,
  .contact-info__item:hover,
  .blocker-detail:hover,
  .product-card:hover .product-card__image-container .product-card__image {
    transform: none;
  }

  .skip-link {
    transition: none !important;
  }
}

/* ==========================================================================
   Mascot publication wave
   Fluid brand wave behind the DermaSun mascot, replacing the earlier blobs.
   ========================================================================== */

.about-grid__image {
  position: relative;
  isolation: isolate;
  min-height: clamp(330px, 35vw, 430px);
  display: grid;
  place-items: center;
  overflow: visible;
}

.about-grid__image::before,
.about-grid__image::after {
  display: none !important;
}

.brand-wave {
  position: absolute;
  left: 50%;
  top: 58%;
  z-index: 0;
  width: min(620px, 118%);
  height: clamp(210px, 22vw, 260px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  animation: mascotWaveFloat 12s ease-in-out infinite;
}

.brand-wave::before,
.brand-wave::after {
  content: "";
  position: absolute;
  will-change: transform;
}

.brand-wave::before {
  inset: 35px 0 0;
  border-radius: 45% 55% 45% 55%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .14), transparent 34%),
    linear-gradient(135deg, #002f8f 0%, #004aad 42%, #0068d9 100%);
  clip-path: path("M 20 150 C 120 20, 220 60, 315 120 C 420 185, 500 35, 600 90 L 600 210 C 455 265, 320 235, 200 220 C 90 205, 40 210, 20 150 Z");
  box-shadow:
    0 28px 45px rgba(0, 47, 143, .22),
    inset 0 18px 35px rgba(255, 255, 255, .12);
  animation: mascotWaveBlue 9s ease-in-out infinite;
}

.brand-wave::after {
  left: 18px;
  top: 50px;
  width: calc(100% - 35px);
  height: 170px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7a00 0%, #ff8f1f 45%, #ffae42 100%);
  clip-path: path("M 0 105 C 105 5, 185 40, 280 95 C 390 160, 465 45, 585 65 L 585 120 C 470 95, 405 180, 285 125 C 175 75, 90 40, 0 145 Z");
  opacity: .96;
  filter: drop-shadow(0 14px 22px rgba(255, 122, 0, .22));
  animation: mascotWaveOrange 10.5s ease-in-out infinite;
}

.wave-layer,
.wave-line {
  position: absolute;
  pointer-events: none;
}

.wave-layer {
  border-radius: 999px;
}

.wave-layer--light {
  left: 35px;
  top: 25px;
  width: calc(100% - 60px);
  height: 150px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .95), rgba(255, 255, 255, .25));
  clip-path: path("M 0 90 C 100 10, 170 110, 275 60 C 380 10, 455 15, 560 85 L 560 115 C 445 45, 380 45, 280 95 C 170 145, 90 55, 0 120 Z");
  opacity: .6;
  mix-blend-mode: screen;
}

.wave-layer--blue {
  right: 20px;
  bottom: 42px;
  width: 330px;
  height: 125px;
  background: linear-gradient(135deg, rgba(0, 103, 217, .85), rgba(0, 47, 143, .95));
  clip-path: path("M 0 80 C 90 10, 150 15, 235 55 C 280 78, 310 60, 330 42 L 330 105 C 230 130, 140 110, 0 125 Z");
  opacity: .85;
}

.wave-line {
  left: 28px;
  top: 48px;
  width: calc(100% - 60px);
  height: 120px;
  border-top: 3px solid rgba(255, 122, 0, .7);
  border-radius: 50%;
  opacity: .8;
  transform: rotate(-3deg);
}

.about-mascot {
  position: relative;
  z-index: 2;
  width: min(350px, 74%);
  max-width: 100%;
  background: #fff;
  border: 8px solid #fff;
  border-radius: 46% 54% 50% 50%;
  box-shadow: 0 16px 30px rgba(0, 48, 135, .13);
  filter: drop-shadow(0 18px 35px rgba(0, 42, 120, .18));
}

@keyframes mascotWaveFloat {
  0%, 100% { transform: translate(-50%, -50%) rotate(-1deg) scale(1); }
  50% { transform: translate(-50%, -53%) rotate(1deg) scale(1.025); }
}

@keyframes mascotWaveBlue {
  0%, 100% { transform: translate3d(-6px, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(9px, -7px, 0) rotate(1.5deg); }
}

@keyframes mascotWaveOrange {
  0%, 100% { transform: translate3d(8px, 3px, 0) rotate(-2deg); }
  50% { transform: translate3d(-10px, -4px, 0) rotate(1deg); }
}

@media (max-width: 767px) {
  .about-grid__image {
    min-height: 300px;
    margin-top: .75rem;
  }

  .brand-wave {
    top: 60%;
    width: min(520px, 124%);
    height: 210px;
  }

  .about-mascot {
    width: min(290px, 76%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-wave,
  .brand-wave::before,
  .brand-wave::after {
    animation: none !important;
  }
}

/* ==========================================================================
   Mobile menu publication pass
   Side drawer with DermaSun wave language, built over the existing navbar IDs.
   ========================================================================== */

.navbar__toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: #f7f1e8;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  box-shadow: inset 0 0 0 1px rgba(0, 59, 143, .08);
}

.navbar__toggle-bar,
.navbar__toggle span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #003b8f;
  transform-origin: center;
  transition:
    transform 220ms var(--motion-soft),
    opacity 180ms var(--motion-soft);
}

.navbar__toggle--active .navbar__toggle-bar:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.navbar__toggle--active .navbar__toggle-bar:nth-child(2) {
  opacity: 0;
}

.navbar__toggle--active .navbar__toggle-bar:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.navbar__backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0, 22, 58, .58);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 260ms var(--motion-soft),
    visibility 260ms var(--motion-soft);
}

.navbar__backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.navbar__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: auto;
  z-index: 100;
  width: min(82vw, 390px);
  height: 100vh;
  height: 100dvh;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf3 100%);
  box-shadow: -22px 0 45px rgba(0, 43, 111, .18);
  transform: translateX(105%);
  transition:
    transform 340ms cubic-bezier(.22, 1, .36, 1),
    visibility 340ms var(--motion-soft);
  overflow: hidden;
  visibility: hidden;
}

.navbar__mobile-menu--open,
.navbar__mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.navbar__mobile-menu-inner {
  position: relative;
  min-height: 100%;
  padding: 34px 26px 190px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-logo {
  width: 120px;
  height: auto;
}

.mobile-menu-close {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 16px;
  background: #f7f1e8;
  color: #003b8f;
  font-size: 46px;
  font-weight: 300;
  line-height: .85;
  cursor: pointer;
}

.mobile-menu-line {
  position: relative;
  width: calc(100% + 52px);
  height: 4px;
  margin: 28px -26px 34px;
  background: #003b8f;
}

.mobile-menu-line span {
  position: absolute;
  top: 0;
  left: 44%;
  width: 120px;
  height: 4px;
  border-radius: 999px;
  background: #ff7900;
}

.navbar__mobile-links {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
}

.navbar__mobile-links li {
  border-bottom: 1px solid rgba(18, 48, 95, .12);
}

.navbar__mobile-link {
  min-height: 78px;
  width: 100%;
  padding: 0 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #12305f;
  font-size: clamp(1.1rem, 4.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition:
    background-color 220ms var(--motion-soft),
    color 220ms var(--motion-soft),
    transform 220ms var(--motion-soft);
}

.navbar__mobile-link:hover,
.navbar__mobile-link:focus-visible,
.navbar__mobile-link--active {
  background: #f7f1e8;
  color: #003b8f;
  transform: translateX(2px);
}

.mobile-menu-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 59, 143, .08);
  color: #003b8f;
  font-size: 1.25rem;
}

.mobile-menu-chevron {
  margin-left: auto;
  color: #003b8f;
  font-size: 1.4rem;
  transition: transform 200ms var(--motion-soft);
}

.catalog-menu--mobile[open] .mobile-menu-chevron {
  transform: rotate(180deg);
}

.catalog-menu--mobile summary {
  cursor: pointer;
  list-style: none;
}

.catalog-menu--mobile summary::-webkit-details-marker {
  display: none;
}

.catalog-menu--mobile .catalog-menu__panel {
  position: static;
  min-width: 0;
  width: 100%;
  margin: .25rem 0 .85rem;
  padding: .65rem;
  border: 1px solid rgba(0, 59, 143, .10);
  border-radius: 16px;
  box-shadow: none;
  background: rgba(255, 255, 255, .82);
  opacity: 1;
  visibility: visible;
  transform: none;
}

.catalog-menu--mobile .catalog-menu__panel a {
  min-height: 46px;
  padding: .65rem .85rem;
  border-radius: 12px;
  color: #12305f;
  font-weight: 700;
}

.mobile-menu-cta {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 68px;
  margin-top: 34px;
  border: 4px solid #c85b00;
  border-radius: 18px;
  background: linear-gradient(180deg, #ff8a12 0%, #ff7900 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 5vw, 1.55rem);
  font-weight: 900;
  text-decoration: none;
  box-shadow:
    0 16px 26px rgba(255, 121, 0, .25),
    inset 0 2px 0 rgba(255, 255, 255, .22);
  transition:
    transform 220ms var(--motion-soft),
    box-shadow 220ms var(--motion-soft);
}

.mobile-menu-cta:hover,
.mobile-menu-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 20px 32px rgba(255, 121, 0, .34),
    inset 0 2px 0 rgba(255, 255, 255, .25);
}

.mobile-menu-waves {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 165px;
  overflow: hidden;
  pointer-events: none;
}

.mobile-menu-sun {
  position: absolute;
  left: 50%;
  bottom: 42px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff9300 0%, #ff7900 100%);
  box-shadow: 0 12px 24px rgba(255, 121, 0, .28);
  transform: translateX(-50%);
}

.mobile-menu-sun::before {
  content: "";
  position: absolute;
  inset: -28px;
  opacity: .95;
  background:
    linear-gradient(#ff7900, #ff7900) center 0 / 6px 24px no-repeat,
    linear-gradient(#ff7900, #ff7900) left 42px center / 24px 6px no-repeat,
    linear-gradient(#ff7900, #ff7900) right 42px center / 24px 6px no-repeat;
}

.mobile-menu-wave {
  position: absolute;
  left: -8%;
  width: 116%;
}

.mobile-menu-wave--light {
  bottom: 38px;
  height: 110px;
  background: #f8ead8;
  clip-path: path("M0 70 C80 20 140 20 220 62 C300 105 370 96 450 58 C530 20 610 30 690 76 L690 120 L0 120 Z");
  opacity: .9;
  animation: mobileMenuWaveLight 9s ease-in-out infinite;
}

.mobile-menu-wave--blue {
  bottom: 0;
  height: 100px;
  background: linear-gradient(135deg, #003b8f 0%, #0055c8 100%);
  clip-path: path("M0 54 C80 14 150 18 230 56 C320 100 400 95 480 55 C570 12 630 20 700 58 L700 120 L0 120 Z");
  animation: mobileMenuWaveBlue 11s ease-in-out infinite;
}

@keyframes mobileMenuWaveLight {
  0%, 100% { transform: translate3d(-10px, 0, 0); }
  50% { transform: translate3d(12px, -4px, 0); }
}

@keyframes mobileMenuWaveBlue {
  0%, 100% { transform: translate3d(10px, 0, 0); }
  50% { transform: translate3d(-12px, 5px, 0); }
}

@media (max-width: 767px) {
  .navbar {
    padding-block: 0;
    background: #fff;
    border-bottom: 4px solid #003b8f;
  }

  .navbar::after {
    bottom: -4px;
    left: 48%;
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background: #ff7900;
  }

  .navbar__container {
    min-height: 86px;
    padding-inline: 22px;
  }

  .navbar__logo {
    max-height: 58px;
  }

  .navbar__links,
  .navbar__cta {
    display: none !important;
  }

  .navbar__toggle {
    display: flex;
  }
}

@media (min-width: 768px) {
  .navbar__mobile-menu,
  .navbar__backdrop {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .navbar__mobile-menu {
    width: min(88vw, 360px);
  }

  .navbar__mobile-menu-inner {
    padding-inline: 20px;
  }

  .mobile-menu-line {
    width: calc(100% + 40px);
    margin-inline: -20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .navbar__toggle-bar,
  .navbar__toggle span,
  .navbar__backdrop,
  .navbar__mobile-menu,
  .navbar__mobile-link,
  .mobile-menu-cta,
  .mobile-menu-wave--light,
  .mobile-menu-wave--blue {
    animation: none !important;
    transition: none !important;
  }
}

/* Publication polish: animated product rings */
@property --gauge-progress {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@property --category-ring-progress {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.protection-gauge {
  --gauge-progress: 0deg;
  overflow: hidden;
  background:
    conic-gradient(from -90deg, var(--guide-orange) 0deg var(--gauge-progress), #dce7f4 var(--gauge-progress) 360deg);
  box-shadow:
    0 18px 34px rgba(0, 47, 143, .13),
    inset 0 0 0 1px rgba(0, 92, 141, .08);
  isolation: isolate;
  animation: dsGaugeFill 980ms cubic-bezier(.22, 1, .36, 1) 160ms forwards;
}

.protection-gauge::before {
  width: 80px;
  height: 80px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .78);
}

.protection-gauge::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .8);
  pointer-events: none;
}

.product-category-mark {
  --category-ring-progress: 0deg;
  position: relative;
  overflow: hidden;
  border: 0;
  background:
    radial-gradient(circle, #fff 0 58%, transparent 59%),
    conic-gradient(from -90deg, #dce7f4 0deg 360deg);
  box-shadow:
    0 18px 34px rgba(0, 47, 143, .13),
    inset 0 0 0 1px rgba(0, 92, 141, .08);
  isolation: isolate;
}

.product-category-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    conic-gradient(from -90deg, var(--guide-orange) 0deg var(--category-ring-progress), transparent var(--category-ring-progress) 360deg);
  mask: radial-gradient(circle, transparent 0 58%, #000 59% 100%);
  -webkit-mask: radial-gradient(circle, transparent 0 58%, #000 59% 100%);
  animation: dsCategoryRingFill 980ms cubic-bezier(.22, 1, .36, 1) 180ms forwards;
}

.product-category-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, .85);
  pointer-events: none;
}

.product-category-mark svg,
.product-category-mark span,
.protection-gauge div {
  position: relative;
  z-index: 1;
}

.product-category-mark svg {
  filter: drop-shadow(0 4px 8px rgba(0, 47, 143, .12));
}

@keyframes dsGaugeFill {
  from { --gauge-progress: 0deg; }
  to { --gauge-progress: var(--gauge); }
}

@keyframes dsCategoryRingFill {
  from { --category-ring-progress: 0deg; }
  to { --category-ring-progress: 360deg; }
}

@media (prefers-reduced-motion: reduce) {
  .protection-gauge,
  .product-category-mark::before {
    animation: none !important;
  }

  .protection-gauge {
    --gauge-progress: var(--gauge);
  }

  .product-category-mark::before {
    --category-ring-progress: 360deg;
  }
}

/* Publication polish: CTA wave field inspired by the mascot ribbon */
.cta-section {
  isolation: isolate;
  overflow: hidden;
}

.cta-section::after {
  opacity: 0;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-wave-field {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  left: -8vw;
  right: -8vw;
  top: -10.25rem;
  height: clamp(15rem, 24vw, 25rem);
  overflow: hidden;
}

.cta-wave,
.cta-wave-line {
  position: absolute;
  inset-inline: 0;
  transform-origin: 50% 58%;
  will-change: transform;
}

.cta-wave--main {
  top: 1.4rem;
  height: clamp(13.5rem, 18vw, 19rem);
  background:
    radial-gradient(90% 85% at 42% 12%, rgba(255, 255, 255, .16), transparent 52%),
    linear-gradient(135deg, #002f8f 0%, #004aad 48%, #0068d9 100%);
  clip-path: path("M 0 160 C 175 36, 355 72, 545 138 C 720 198, 875 44, 1085 92 C 1285 138, 1450 238, 1680 108 L 1680 330 L 0 330 Z");
  box-shadow:
    0 28px 56px rgba(0, 47, 143, .26),
    inset 0 22px 36px rgba(255, 255, 255, .12);
  animation: dsCtaWaveMain 13s var(--motion-soft, ease-in-out) infinite alternate;
}

.cta-wave--accent {
  top: 4.7rem;
  height: clamp(8.5rem, 12vw, 11rem);
  background: linear-gradient(135deg, #ff7a00 0%, #ff8f1f 48%, #ffb03f 100%);
  clip-path: path("M 0 98 C 160 12, 288 42, 455 100 C 620 158, 756 36, 940 64 C 1140 92, 1298 154, 1680 62 L 1680 186 C 1330 126, 1164 162, 964 124 C 746 82, 642 180, 430 126 C 260 80, 132 52, 0 146 Z");
  filter: drop-shadow(0 16px 24px rgba(255, 122, 0, .24));
  opacity: .98;
  animation: dsCtaWaveAccent 10.5s var(--motion-soft, ease-in-out) infinite alternate;
}

.cta-wave--light {
  top: 2.35rem;
  left: 4vw;
  right: 9vw;
  height: clamp(7.5rem, 10vw, 9rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, .9), rgba(255, 255, 255, .16));
  clip-path: path("M 0 84 C 172 8, 308 104, 480 58 C 652 12, 806 24, 986 80 C 1158 132, 1310 48, 1510 90 L 1510 128 C 1294 72, 1124 156, 964 114 C 790 68, 642 56, 482 104 C 302 154, 166 56, 0 120 Z");
  mix-blend-mode: screen;
  opacity: .46;
  animation: dsCtaWaveLight 15s var(--motion-soft, ease-in-out) infinite alternate;
}

.cta-wave-line {
  top: 4.45rem;
  left: 5vw;
  right: 16vw;
  height: 7.75rem;
  border-top: 3px solid rgba(255, 179, 71, .74);
  border-radius: 50%;
  opacity: .78;
  transform: rotate(-2deg);
}

@keyframes dsCtaWaveMain {
  from { transform: translate3d(-1.25rem, 0, 0) scaleX(1.01); }
  to { transform: translate3d(1.85rem, -.5rem, 0) scaleX(1.035); }
}

@keyframes dsCtaWaveAccent {
  from { transform: translate3d(1.1rem, .25rem, 0) rotate(-.35deg); }
  to { transform: translate3d(-1.65rem, -.35rem, 0) rotate(.45deg); }
}

@keyframes dsCtaWaveLight {
  from { transform: translate3d(-.75rem, 0, 0) rotate(-.2deg); }
  to { transform: translate3d(1rem, -.35rem, 0) rotate(.3deg); }
}

@media (max-width: 767px) {
  .cta-wave-field {
    left: -26vw;
    right: -26vw;
    top: -7.1rem;
    height: 16rem;
  }

  .cta-wave--main {
    height: 13.5rem;
  }

  .cta-wave--accent {
    top: 3.75rem;
    height: 8.7rem;
  }

  .cta-wave--light {
    top: 2rem;
    left: 10vw;
    right: 12vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-wave,
  .cta-wave-line {
    animation: none !important;
    transition: none !important;
  }
}

/* Publication footer: integrated wave field used across every page */
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(27rem, 39vw, 34rem);
  margin-top: clamp(1.75rem, 4vw, 3.5rem);
  padding-top: clamp(5.75rem, 9vw, 7.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 88% 78%, rgba(255, 122, 0, 0.18), transparent 16rem),
    linear-gradient(180deg, #0b56bf 0%, #073b99 34%, #082f82 100%);
}

.footer::before {
  opacity: 0 !important;
}

.footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -12%;
  right: -12%;
  bottom: -4rem;
  height: 14rem;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 50%, rgba(255, 139, 25, 0.42), transparent 18rem),
    radial-gradient(ellipse at 18% 70%, rgba(255, 255, 255, 0.1), transparent 20rem);
  opacity: 0.8;
}

.footer__wave-field {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  inset: 0 -10vw;
  overflow: hidden;
}

.footer__wave-main,
.footer__wave-accent,
.footer__wave-light,
.footer__wave-line {
  position: absolute;
  pointer-events: none;
  transform-origin: 50% 60%;
  will-change: transform;
}

.footer__wave-main {
  left: -4%;
  right: -4%;
  top: 0;
  height: clamp(13rem, 22vw, 20rem);
  background: linear-gradient(135deg, #0068d9 0%, #004aad 45%, #002f8f 100%);
  clip-path: path("M 0 115 C 190 28, 340 36, 540 112 C 750 192, 910 18, 1140 84 C 1360 146, 1510 190, 1740 92 L 1740 360 L 0 360 Z");
  box-shadow:
    0 34px 70px rgba(0, 47, 143, 0.28),
    inset 0 24px 42px rgba(255, 255, 255, 0.12);
  animation: dsFooterWave 13s var(--motion-soft, ease-in-out) infinite alternate;
}

.footer__wave-accent {
  left: -3%;
  right: -3%;
  top: clamp(4.6rem, 9vw, 7.8rem);
  height: clamp(8rem, 12vw, 10.5rem);
  background: linear-gradient(135deg, #ff7a00 0%, #ff8f1f 48%, #ffb03f 100%);
  clip-path: path("M 0 96 C 150 20, 292 42, 462 108 C 660 184, 790 52, 1010 76 C 1225 100, 1398 166, 1740 62 L 1740 184 C 1390 138, 1210 176, 990 132 C 768 88, 650 198, 438 138 C 260 88, 120 62, 0 152 Z");
  filter: drop-shadow(0 18px 28px rgba(255, 122, 0, 0.28));
  opacity: 0.88;
  animation: dsFooterWaveAccent 10s var(--motion-soft, ease-in-out) infinite alternate;
}

.footer__wave-light {
  top: clamp(1.8rem, 4.5vw, 3.6rem);
  left: 4vw;
  right: 10vw;
  height: clamp(5.8rem, 9vw, 7.5rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.16));
  clip-path: path("M 0 82 C 170 8, 305 102, 475 58 C 650 12, 800 22, 980 78 C 1150 130, 1305 48, 1510 88 L 1510 126 C 1290 72, 1120 154, 960 112 C 790 68, 640 56, 480 102 C 300 154, 165 56, 0 118 Z");
  opacity: 0.28;
  mix-blend-mode: screen;
  animation: dsFooterWaveLight 15s var(--motion-soft, ease-in-out) infinite alternate;
}

.footer__wave-line {
  top: clamp(3rem, 6vw, 5.2rem);
  left: 5vw;
  right: 15vw;
  height: clamp(5.5rem, 8vw, 7rem);
  border-top: 3px solid rgba(255, 179, 71, 0.66);
  border-radius: 50%;
  transform: rotate(-2deg);
  opacity: 0.76;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer__grid {
  position: relative;
  padding: clamp(1.35rem, 2.4vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.75rem;
  background: rgba(6, 45, 124, 0.46);
  box-shadow: 0 24px 70px rgba(0, 24, 78, 0.18);
  backdrop-filter: blur(7px);
}

.footer__bottom {
  position: relative;
  margin-top: clamp(1.6rem, 3.5vw, 3rem);
  padding-top: 1.35rem;
  border-top-color: rgba(255, 255, 255, 0.18);
}

@keyframes dsFooterWave {
  from { transform: translate3d(-1.4rem, 0, 0) scaleX(1.01); }
  to { transform: translate3d(1.8rem, -0.45rem, 0) scaleX(1.035); }
}

@keyframes dsFooterWaveAccent {
  from { transform: translate3d(1.2rem, 0.3rem, 0) rotate(-0.4deg); }
  to { transform: translate3d(-1.6rem, -0.35rem, 0) rotate(0.5deg); }
}

@keyframes dsFooterWaveLight {
  from { transform: translate3d(-0.8rem, 0, 0) rotate(-0.2deg); }
  to { transform: translate3d(1rem, -0.3rem, 0) rotate(0.35deg); }
}

@media (max-width: 720px) {
  .footer {
    min-height: 30rem;
    margin-top: 2rem;
    padding-top: 6.5rem;
    padding-bottom: 2.25rem;
  }

  .footer__wave-field {
    inset: 0 -32vw;
  }

  .footer__wave-main {
    height: 13rem;
  }

  .footer__wave-accent {
    top: 5.8rem;
    height: 7.5rem;
  }

  .footer__grid {
    border-radius: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .footer__wave-main,
  .footer__wave-accent,
  .footer__wave-light {
    animation: none !important;
    transform: none !important;
  }
}

/* Product highlights carousel replaces the old ingredient comparison table. */
.product-highlights {
  position: relative;
  margin-top: var(--space-8);
  padding: clamp(1rem, 2.5vw, 1.5rem);
  overflow: hidden;
  border: 1px solid rgba(0, 60, 135, 0.14);
  border-radius: clamp(1.25rem, 2vw, 1.75rem);
  background:
    radial-gradient(circle at 8% 0%, rgba(247, 148, 29, 0.18), transparent 30%),
    linear-gradient(135deg, #f7fbff 0%, #ffffff 44%, #fff7eb 100%);
  box-shadow: 0 24px 70px rgba(0, 48, 135, 0.1);
}

.product-highlights::before {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -7rem;
  width: 32rem;
  height: 16rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 92, 141, 0.16), rgba(247, 148, 29, 0.16));
  transform: rotate(-7deg);
  pointer-events: none;
}

.product-highlights__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.product-highlights__eyebrow {
  margin: 0;
  color: var(--guide-orange, var(--ds-primary));
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-highlights__controls {
  display: flex;
  gap: 0.55rem;
}

.product-highlights__control {
  display: grid;
  width: 2.85rem;
  height: 2.85rem;
  place-items: center;
  border: 1px solid rgba(0, 60, 135, 0.16);
  border-radius: 999px;
  color: var(--guide-blue, var(--ds-secondary));
  background: #fff;
  box-shadow: 0 10px 22px rgba(0, 48, 135, 0.08);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.product-highlights__control:hover:not([disabled]),
.product-highlights__control:focus-visible {
  transform: translateY(-2px);
  background: #fff8ed;
  box-shadow: 0 16px 30px rgba(0, 48, 135, 0.13);
}

.product-highlights__control[disabled] {
  opacity: 0.42;
  cursor: default;
}

.product-highlights__viewport {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 60, 135, 0.3) transparent;
}

.product-highlights__track {
  display: grid;
  grid-auto-columns: minmax(18.5rem, 27rem);
  grid-auto-flow: column;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.35rem);
  padding: 0.2rem 0.15rem 0.75rem;
}

.product-highlight-card {
  position: relative;
  display: grid;
  grid-template-rows: 13.75rem auto;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(0, 60, 135, 0.13);
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(0, 48, 135, 0.1);
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 148, 29, 0.38);
  box-shadow: 0 24px 56px rgba(0, 48, 135, 0.16);
}

.product-highlight-card__media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.98) 0 26%, transparent 27%),
    linear-gradient(145deg, rgba(0, 92, 141, 0.12), rgba(247, 148, 29, 0.13));
}

.product-highlight-card__media::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -2.4rem;
  height: 8.6rem;
  border-radius: 45% 55% 0 0;
  background:
    linear-gradient(135deg, rgba(247, 148, 29, 0.86), rgba(252, 184, 19, 0.9)),
    linear-gradient(135deg, var(--guide-blue, var(--ds-secondary)), var(--guide-blue-soft, #0284c7));
  clip-path: path("M0 72 C90 18 170 28 260 66 C360 110 450 94 540 48 C630 2 700 22 780 66 L780 190 L0 190 Z");
}

.product-highlight-card__media::after {
  content: "";
  position: absolute;
  left: -16%;
  right: -16%;
  bottom: -3.7rem;
  height: 8.8rem;
  background: linear-gradient(135deg, var(--guide-blue, var(--ds-secondary)), #0474be);
  clip-path: path("M0 58 C96 12 180 18 276 56 C374 96 462 100 558 54 C650 10 716 16 800 62 L800 190 L0 190 Z");
}

.product-highlight-card__number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  color: rgba(0, 60, 135, 0.36);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.product-highlight-card__image {
  position: relative;
  z-index: 2;
  width: min(68%, 12rem);
  height: 11.65rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 42, 120, 0.16));
}

.product-highlight-card__body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0.75rem;
  padding: 1.25rem;
}

.product-highlight-card__kicker {
  width: fit-content;
  margin: 0;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: var(--guide-blue, var(--ds-secondary));
  background: #edf6ff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-highlight-card__title {
  margin: 0;
  color: var(--guide-blue, var(--ds-secondary));
  font-family: var(--font-heading);
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.14;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.product-highlight-card__copy {
  margin: 0;
  max-width: 100%;
  color: var(--guide-muted, var(--ds-muted));
  font-size: 0.9rem;
  line-height: 1.48;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
  text-wrap: pretty;
}

.product-highlight-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.1rem;
}

.product-highlight-card__meta span {
  padding: 0.38rem 0.6rem;
  border: 1px solid rgba(0, 60, 135, 0.1);
  border-radius: 999px;
  color: var(--guide-text, var(--ds-foreground));
  background: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.product-highlight-card .btn {
  width: 100%;
  min-height: 2.75rem;
  margin-top: auto;
  padding-inline: 0.9rem;
  line-height: 1.15;
  white-space: normal;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .product-highlights {
    margin-top: var(--space-6);
    padding: 0.85rem;
    border-radius: 1.2rem;
  }

  .product-highlights__track {
    grid-auto-columns: minmax(17.25rem, 84vw);
  }

  .product-highlight-card {
    grid-template-rows: 12.75rem auto;
  }

  .product-highlight-card__body {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-highlights__viewport {
    scroll-behavior: auto;
  }

  .product-highlight-card,
  .product-highlights__control {
    transition: none !important;
  }
}

/* Correccion hero DermaSun: etiqueta limpia en desktop + mini cards con olas */
.hero__product-note {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(0, 60, 135, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(0, 39, 93, 0.13);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.hero__product-note::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--ds-blue-deep) 0 62%,
    var(--ds-wave-orange) 62% 78%,
    transparent 78%
  );
  opacity: 0.85;
}

.hero__product-note::after {
  display: none;
}

@media (min-width: 768px) {
  .hero__product-note {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 60, 135, 0.12);
    box-shadow: 0 16px 34px rgba(0, 39, 93, 0.14);
  }

  .hero__product-note::before,
  .hero__product-note::after {
    display: none !important;
  }
}

.hero__product-note {
  min-width: min(15.5rem, calc(100% - 2rem));
  padding: 0.95rem 1.1rem;
}

.hero__product-note .hero__product-kicker,
.hero__product-note strong,
.hero__product-note span:last-child {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.56);
}

.hero__trust span {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 3.15rem;
  display: grid;
  place-items: center;
  padding: 0.7rem 0.65rem 0.78rem;
  border: 1px solid rgba(0, 60, 135, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 24px rgba(0, 48, 135, 0.08);
  text-shadow: none;
}

.hero__trust span::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: -18%;
  right: -18%;
  bottom: -42%;
  height: 72%;
  background: linear-gradient(135deg, rgba(0, 60, 135, 0.92), rgba(2, 132, 199, 0.76));
  clip-path: path("M0 66 C70 22 145 28 220 62 C310 104 395 96 480 56 C575 10 640 28 720 68 L720 140 L0 140 Z");
  opacity: 0.14;
}

.hero__trust span::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  left: -14%;
  right: -14%;
  bottom: -34%;
  height: 58%;
  background: linear-gradient(135deg, rgba(247, 148, 29, 0.9), rgba(252, 184, 19, 0.62));
  clip-path: path("M0 82 C86 36 152 42 238 78 C328 118 414 108 502 70 C590 32 650 40 720 78 L720 140 L0 140 Z");
  opacity: 0.22;
}

@keyframes heroBoxWaveDrift {
  from { transform: translate3d(-2.4%, 2%, 0) scaleX(1.02); }
  to { transform: translate3d(2.2%, -1%, 0) scaleX(1.05); }
}

@keyframes heroBoxWaveDriftReverse {
  from { transform: translate3d(2.2%, -1%, 0) scaleX(1.04); }
  to { transform: translate3d(-2%, 1.5%, 0) scaleX(1.02); }
}

@media (max-width: 899px) {
  .hero__trust span {
    min-height: 3.45rem;
    padding-inline: 0.85rem;
  }

  .hero__product-note {
    top: 1.25rem;
    right: 1rem;
    max-width: 210px;
    transform: none;
  }
}

@media (max-width: 767px) {
  .hero__trust span::before {
    bottom: -48%;
    opacity: 0.13;
  }

  .hero__trust span::after {
    bottom: -40%;
    opacity: 0.2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__product-note::before,
  .hero__product-note::after {
    animation: none !important;
  }
}

/* ==========================================================================
   End of DermaSun Design System
   ========================================================================== */
