:root {
  --cream: #faf6ef;
  --coconut: #fffdf9;
  --warm-white: #fdfbf7;
  --sand: #e8d8c5;
  --almond: #d6bfa8;
  --soft-clay: #b98763;
  --rose-gold: #c98b63;
  --caramel: #a85f24;
  --caramel-dark: #7c431d;
  --mocha: #6b5143;
  --deep-brown: #2a1e19;
  --soft-black: #14110f;
  --muted: #6f625b;
  --border: #e7ddd2;
  --green-soft: #7a8465;
  --white: #ffffff;
  --shadow-soft: 0 24px 70px rgba(42, 30, 25, 0.08);
  --shadow-card: 0 18px 50px rgba(42, 30, 25, 0.06);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: 1180px;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--soft-black);
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 139, 99, 0.11), transparent 32rem),
    radial-gradient(circle at 86% 16%, rgba(122, 132, 101, 0.12), transparent 26rem),
    linear-gradient(180deg, var(--cream), var(--warm-white) 48%, var(--cream));
  font-family: "Manrope", "Montserrat", ui-sans-serif, system-ui, sans-serif !important;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(42, 30, 25, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 30, 25, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 68%);
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  overflow-wrap: break-word;
}

body h1,
body h2 {
  color: var(--deep-brown);
  font-family: "Cormorant Garamond", Georgia, serif !important;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

body h3,
body h4,
body h5,
body h6 {
  color: var(--deep-brown);
  font-family: "Manrope", "Montserrat", ui-sans-serif, system-ui, sans-serif !important;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h1 {
  max-width: 720px;
  font-size: clamp(3.25rem, 7vw, 6.7rem);
  overflow-wrap: normal;
}

h2 {
  font-size: clamp(2.45rem, 4vw, 4.35rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(168, 95, 36, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--deep-brown);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100% - clamp(32px, 5vw, 72px), var(--shell));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(72px, 9vw, 128px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--caramel);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

body .button,
body button.button,
body input[type="submit"].button,
body a.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

body .button:hover,
body button.button:hover,
body input[type="submit"].button:hover,
body a.button:hover {
  transform: translateY(-2px);
}

body .button--primary,
body button.button--primary,
body input[type="submit"].button--primary,
body a.button--primary {
  color: var(--white);
  background: #c96f27;
  box-shadow: 0 16px 34px rgba(168, 95, 36, 0.26);
}

body .button--primary:hover,
body button.button--primary:hover,
body input[type="submit"].button--primary:hover,
body a.button--primary:hover {
  background: var(--caramel-dark);
  box-shadow: 0 18px 40px rgba(42, 30, 25, 0.24);
}

body .button--secondary,
body button.button--secondary,
body a.button--secondary {
  color: var(--deep-brown);
  background: rgba(255, 253, 249, 0.76);
  border-color: rgba(107, 81, 67, 0.28);
}

body .button--secondary:hover,
body button.button--secondary:hover,
body a.button--secondary:hover {
  border-color: var(--deep-brown);
  background: var(--white);
}

body .button--whatsapp,
body button.button--whatsapp,
body a.button--whatsapp {
  min-height: 64px;
  padding: 16px 36px;
  font-size: 0.85rem;
  border-radius: 999px;
  color: #c96f27;
  background: transparent;
  border-color: #c96f27;
  box-shadow: none;
}

body .button--whatsapp:hover,
body button.button--whatsapp:hover,
body a.button--whatsapp:hover {
  background: #c96f27;
  box-shadow: 0 16px 32px rgba(201, 111, 39, 0.18);
  transform: translateY(-3px);
  color: var(--white);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 40;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-header__inner {
  width: min(100% - clamp(28px, 5vw, 72px), 1240px);
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.brand {
  width: auto;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: auto;
  height: 92px;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 52px);
}

body .site-nav a {
  position: relative;
  padding-block: 6px;
  color: var(--deep-brown);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header__cta {
  min-height: 34px;
  padding: 7px 18px;
  font-size: 0.68rem;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--caramel);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

body .nav-toggle {
  display: none !important;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 95, 36, 0.25) !important;
  border-radius: 999px !important;
  color: var(--deep-brown) !important;
  background: rgba(255, 253, 249, 0.85) !important;
  transition: all 200ms ease;
}

body .nav-toggle:hover,
body .nav-toggle:focus-visible {
  border-color: var(--caramel) !important;
  background: var(--white) !important;
}

.nav-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.nav-toggle i,
.nav-toggle i::before,
.nav-toggle i::after {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 99px;
  background: currentColor;
  content: "";
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle i::before {
  transform: translateY(-6px);
}

.nav-toggle i::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i::before {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] i::after {
  transform: translateY(-2px) rotate(-90deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(540px, 46.8vw, 640px);
  padding-block: 0;
  background-image: url("../images/lillya-hero-background.png");
  background-position: center right;
  background-size: auto 125%;
  background-repeat: no-repeat;
}

.hero__mobile-image {
  display: none;
}

.hero__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250, 246, 239, 0.96) 0%, rgba(250, 246, 239, 0.88) 25%, rgba(250, 246, 239, 0.42) 47%, rgba(250, 246, 239, 0.02) 72%),
    linear-gradient(180deg, rgba(250, 246, 239, 0.1), rgba(250, 246, 239, 0.08));
}

.hero__grid {
  position: relative;
  display: grid;
  min-height: clamp(540px, 46.8vw, 640px);
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 0;
  padding-top: 64px;
}

.hero__copy {
  min-width: 0;
  max-width: 560px;
  padding-block: 26px 30px;
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(3rem, 4.05vw, 5rem);
  line-height: 0.96;
}

.hero__text {
  max-width: 455px;
  margin-top: 18px;
  color: var(--caramel-dark);
  font-size: clamp(1.05rem, 1.22vw, 1.25rem);
  font-weight: 600;
  line-height: 1.46;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero__microcopy {
  max-width: 490px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-collection-finder {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  border: 1px solid rgba(214, 191, 168, 0.58);
  border-radius: 34px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 20px 44px rgba(42, 30, 25, 0.07);
}

.hero-collection-section {
  position: relative;
  z-index: 2;
  margin-top: clamp(-14px, -1.5vw, -24px);
  padding: 0 0 clamp(30px, 4.5vw, 48px);
}

.hero-collection-finder__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.hero-collection-finder__heading > span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--rose-gold);
}

.hero-collection-finder__heading h2 {
  color: var(--deep-brown);
  font-size: clamp(2rem, 2.7vw, 3.1rem);
  letter-spacing: 0;
  line-height: 1;
}

.hero-collection-finder__heading p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-collection-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.hero-collection-nav a {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: clamp(170px, 16vw, 210px);
  overflow: hidden;
  border: 1px solid rgba(214, 191, 168, 0.52);
  border-radius: 24px;
  background: rgba(250, 246, 239, 0.72);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.hero-collection-nav a:hover,
.hero-collection-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(168, 95, 36, 0.3);
  box-shadow: 0 14px 28px rgba(42, 30, 25, 0.08);
}

.hero-collection-nav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-collection-nav span {
  display: grid;
  align-content: center;
  gap: 10px;
  min-width: 0;
  padding: clamp(16px, 1.8vw, 24px);
}

.hero-collection-nav strong {
  color: var(--deep-brown);
  font-size: clamp(1.05rem, 1.2vw, 1.4rem);
  font-weight: 900;
  line-height: 1.14;
}

.hero-collection-nav em {
  color: var(--muted);
  font-size: clamp(0.88rem, 0.95vw, 1.05rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.38;
}

.hero-collection-nav b {
  color: var(--deep-brown);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
}

.hero__benefits {
  display: flex;
  flex-wrap: wrap;
  max-width: 510px;
  gap: 12px;
  margin-top: 28px;
}

.hero__benefits li {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 130px;
  color: var(--mocha);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
}

.benefit-icon-wrapper {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(107, 81, 67, 0.32);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.64);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--caramel);
}

.benefits {
  position: relative;
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 64px);
  align-items: center;
}

@media (min-width: 900px) {
  .benefits__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(60px, 8vw, 100px);
  }
}

.benefits__content > p:last-of-type,
.section-heading p,
.about__copy p,
.order__copy > p,
.whatsapp__box p {
  color: var(--muted);
  font-size: 1.02rem;
}

#benefits-title {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
}

.benefits__list {
  margin-top: clamp(32px, 4vw, 42px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefits__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefits__icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--cream);
  color: var(--caramel);
}

.benefits__icon svg {
  width: 20px;
  height: 20px;
}

.benefits__text h3 {
  color: var(--deep-brown);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.benefits__text p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.benefits__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefits__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.trust-grid p,
.order-panel p,
.order-panel li,
.product-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.products {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.72), rgba(250, 246, 239, 0.68)),
    radial-gradient(circle at 18% 10%, rgba(184, 135, 99, 0.13), transparent 24rem);
}

.section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading--center {
  text-align: center;
  margin-inline: auto;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center .eyebrow::after {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-lede {
  margin-top: 16px;
  color: var(--caramel-dark) !important;
  font-weight: 800;
}

.products__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-columns: 40% 60%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--shadow-card);
}

.product-card__media {
  position: relative;
  display: grid;
  min-height: 280px;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 253, 249, 0.76), transparent 36%),
    linear-gradient(140deg, rgba(240, 226, 209, 0.9), rgba(250, 246, 239, 0.62));
}



.product-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(22px, 2.4vw, 30px);
}

.product-card__tag {
  margin-bottom: 8px;
  color: var(--caramel);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
}

.product-card__body > p:not(.product-card__tag):not(.price):not(.product-card__meta):not(.product-card__use) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-card__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.price {
  color: var(--caramel-dark);
  font-size: 1.2rem;
  font-weight: 900;
}

.product-card__volume {
  color: var(--mocha);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__accordion {
  width: 100%;
  margin-top: 18px;
  border-top: 1px solid var(--border);
}

body .product-card__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 14px 0;
  color: var(--deep-brown);
  background: transparent;
  box-shadow: none;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  border-radius: 18px;
  transition: color 180ms ease, background-color 180ms ease;
}

body .product-card__trigger span {
  color: var(--deep-brown);
  transition: color 180ms ease;
}

body .product-card__trigger:hover,
body .product-card__trigger:active,
body .product-card__trigger:focus-visible {
  color: var(--rose-gold);
  background: transparent !important;
  box-shadow: none !important;
}

body .product-card__trigger:hover span,
body .product-card__trigger:active span,
body .product-card__trigger:focus-visible span {
  color: var(--rose-gold);
}

body .product-card__trigger[aria-expanded="true"] {
  color: var(--deep-brown);
  background: rgba(201, 139, 99, 0.16) !important;
  box-shadow: none !important;
}

body .product-card__trigger[aria-expanded="true"] span {
  color: var(--deep-brown);
}

body .product-card__trigger[aria-expanded="true"]:hover,
body .product-card__trigger[aria-expanded="true"]:active,
body .product-card__trigger[aria-expanded="true"]:focus-visible {
  color: var(--deep-brown);
  background: rgba(201, 139, 99, 0.2) !important;
}

body .product-card__trigger[aria-expanded="true"]:hover span,
body .product-card__trigger[aria-expanded="true"]:active span,
body .product-card__trigger[aria-expanded="true"]:focus-visible span {
  color: var(--deep-brown);
}

body .product-card__trigger:focus-visible {
  outline: 2px solid rgba(201, 139, 99, 0.28);
  outline-offset: 4px;
}

.product-card__trigger span {
  font-size: 0.92rem;
  font-weight: 900;
}

.product-card__trigger i {
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cream);
  transition: background 180ms ease;
}

.product-card__trigger:hover i,
.product-card__trigger:active i,
.product-card__trigger:focus-visible i {
  background: rgba(201, 139, 99, 0.16);
}

.product-card__trigger[aria-expanded="true"] i {
  background: var(--cream);
}

.product-card__trigger i::before,
.product-card__trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--caramel);
  content: "";
  transform: translate(-50%, -50%);
}

.product-card__trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.product-card__trigger[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.product-card__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.product-card__list {
  display: grid;
  gap: 8px;
  padding: 0 0 14px;
}

.product-card__panel-copy {
  padding: 0 0 14px;
  color: var(--mocha) !important;
  font-size: 0.86rem;
  font-weight: 500;
}

.product-card__list li,
.duo-card li {
  position: relative;
  padding-left: 25px;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-card__list li {
  color: var(--mocha) !important;
  font-weight: 500;
}

.product-card__list li::before,
.duo-card li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 11px;
  height: 11px;
  border: 2px solid var(--caramel);
  border-radius: 999px;
  content: "";
}

.product-card .button {
  margin-top: 12px;
}

.product-note {
  margin-top: 24px;
  text-align: center;
}

.catalog-collection {
  margin-top: clamp(54px, 7vw, 88px);
}

.catalog-collection--featured {
  margin-top: clamp(28px, 4vw, 42px);
  margin-bottom: clamp(20px, 3vw, 30px);
}

.catalog-collection__intro {
  max-width: 760px;
}

.catalog-collection__intro .eyebrow {
  margin-bottom: 14px;
}

.catalog-collection__intro h3 {
  color: var(--deep-brown);
  font-family: var(--font-heading) !important;
  font-size: clamp(2.1rem, 3.4vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.catalog-collection__intro p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  margin-top: clamp(22px, 3.6vw, 36px);
}

.catalog-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 0.54fr);
  overflow: hidden;
  border: 1px solid rgba(214, 191, 168, 0.66);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 18px 44px rgba(42, 30, 25, 0.055);
}

.catalog-card__media {
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 253, 249, 0.72), rgba(232, 216, 197, 0.5)),
    rgba(250, 246, 239, 0.88);
}

.catalog-card__media img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  object-position: center;
}

.catalog-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 2.8vw, 32px);
}

.catalog-card__tag {
  margin-bottom: 10px;
  color: var(--caramel);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.15;
  text-transform: uppercase;
}

.catalog-card h4 {
  color: var(--deep-brown);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  letter-spacing: -0.01em;
}

.catalog-card__body > p:not(.catalog-card__tag):not(.price) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.catalog-card .price {
  margin-top: 10px;
}

.catalog-card__pricing {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(214, 191, 168, 0.52);
  border-radius: 18px;
  background: rgba(250, 246, 239, 0.72);
}

.catalog-card__price-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.catalog-card__price-note span {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.catalog-card__pricing .price {
  display: grid;
  gap: 2px;
  margin-top: 0;
  color: var(--caramel-dark);
  line-height: 1.1;
}

.catalog-card__pricing .price span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-card__pricing .price strong {
  color: var(--caramel-dark);
  font-size: clamp(1.28rem, 1.72vw, 1.62rem);
  font-weight: 900;
}

.catalog-card__benefits {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 22px;
}

.catalog-card__benefits li {
  position: relative;
  padding-left: 24px;
  color: var(--mocha);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}

.catalog-card__benefits li::before {
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--coconut) 0 28%, transparent 32%),
    linear-gradient(135deg, var(--rose-gold), var(--green-soft));
  content: "";
}

.catalog-card__cta {
  width: 100%;
  margin-top: auto;
}

.soap-complements {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 5vw, 76px);
  background:
    linear-gradient(180deg, rgba(250, 246, 239, 0.92), rgba(255, 253, 249, 0.86)),
    radial-gradient(circle at 12% 8%, rgba(122, 132, 101, 0.11), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(201, 139, 99, 0.12), transparent 26rem);
}

.soap-complements .section-heading {
  max-width: 840px;
  margin-bottom: clamp(26px, 3.5vw, 38px);
}

.soap-complements__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

.soap-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(214, 191, 168, 0.72);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 18px 44px rgba(42, 30, 25, 0.055);
}

.soap-card__media {
  position: relative;
  overflow: hidden;
  align-self: start;
  aspect-ratio: 1 / 1;
  background:
    linear-gradient(140deg, rgba(255, 253, 249, 0.72), rgba(232, 216, 197, 0.5)),
    rgba(250, 246, 239, 0.88);
}

.soap-card__media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.soap-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(20px, 2.2vw, 26px);
}

.soap-card__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  border: 1px solid rgba(201, 139, 99, 0.28);
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--caramel-dark);
  background: rgba(248, 238, 227, 0.86);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-transform: uppercase;
}

.soap-card h3 {
  font-size: clamp(1.12rem, 1.35vw, 1.34rem);
  letter-spacing: -0.02em;
}

.soap-card__headline {
  margin-top: 8px;
  color: var(--caramel-dark);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
}

.soap-card__body > p:not(.soap-card__badge):not(.soap-card__headline) {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.soap-card__benefits {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  margin-bottom: 18px;
}

.soap-card__benefits li {
  position: relative;
  padding-left: 25px;
  color: var(--mocha);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.soap-card__benefits li::before {
  position: absolute;
  top: 0.44em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background:
    radial-gradient(circle at center, var(--coconut) 0 28%, transparent 32%),
    linear-gradient(135deg, var(--rose-gold), var(--green-soft));
  content: "";
}

.soap-card__cta {
  width: 100%;
  margin-top: auto;
  align-self: stretch;
}

.soap-complements__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(214, 191, 168, 0.56);
  border-radius: 26px;
  padding: clamp(18px, 2.5vw, 24px);
  background: rgba(255, 253, 249, 0.72);
}

.soap-complements__footer p {
  max-width: 720px;
  color: var(--mocha);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.55;
}

.soap-complements__footer .button {
  flex: 0 0 auto;
}

.duo {
  padding-block: clamp(24px, 4vw, 48px);
}

.duo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 221, 210, 0.82);
  border-radius: var(--radius-xl);
  padding: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 253, 249, 0.96), transparent 26rem),
    linear-gradient(135deg, #fffdfa, #f8eee3 54%, #f4dfca 100%);
  box-shadow: var(--shadow-soft);
}

.duo-card__copy {
  position: relative;
  z-index: 2;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3vw, 44px) clamp(24px, 4vw, 40px) clamp(16px, 2vw, 32px);
}

.duo-card__copy .eyebrow {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.92);
  box-shadow: inset 0 0 0 1px rgba(226, 202, 176, 0.7);
  font-size: 0.65rem;
}

.duo-card__copy .eyebrow::before {
  display: none;
}

.duo-card__copy h2 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(3rem, 3.5vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.duo-title__top,
.duo-title__bottom {
  display: block;
}

.duo-title__bottom {
  color: var(--caramel);
}

.duo-card__divider {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 620px;
  margin-block: 30px 28px;
}

.duo-card__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(201, 159, 117, 0), rgba(201, 159, 117, 0.8), rgba(201, 159, 117, 0));
}

.duo-card__divider svg {
  color: rgba(201, 159, 117, 0.85);
}

.duo-price {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(180px, 0.82fr);
  align-items: center;
  gap: 18px;
  max-width: 650px;
  margin-block: 26px 24px;
  border: 1px solid rgba(226, 202, 176, 0.4);
  border-radius: 24px;
  padding: 18px 24px;
  background: rgba(253, 248, 241, 0.95);
  box-shadow: 0 14px 26px rgba(102, 76, 56, 0.06);
}

.duo-price__icon {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff7ef, #f5e6d6);
  box-shadow: inset 0 0 0 1px rgba(220, 198, 173, 0.72);
  color: rgba(194, 131, 75, 0.85);
}

.duo-price__main,
.duo-price__saving {
  display: grid;
  gap: 6px;
}

.duo-price__saving {
  padding-left: 22px;
  border-left: 1px solid rgba(226, 202, 176, 0.4);
}

.duo-price span,
.duo-price em {
  color: var(--deep-brown);
  font-size: 0.92rem;
  font-style: normal;
  font-weight: 800;
}

.duo-price strong {
  color: var(--caramel-dark);
  font-size: clamp(2rem, 2.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
}

.duo-card__copy > p {
  max-width: 620px;
  color: var(--mocha);
  font-size: 1.16rem;
  line-height: 1.52;
}

.duo-card__lists {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 22px;
  margin-block: 28px 34px;
  max-width: 660px;
}

.duo-card__lists h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--deep-brown);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 900;
}

.icon-circle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 159, 117, 0.52);
  border-radius: 999px;
  color: var(--caramel-dark);
  background: rgba(255, 252, 247, 0.84);
}

.duo-card__lists ul {
  display: grid;
  gap: 12px;
}

.duo-card__lists li {
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--mocha) !important;
  font-weight: 500;
}

.duo-card__lists .list-check li::before {
  top: 0.28em;
  width: 15px;
  height: 15px;
  border: none;
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c58646' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23f4dfca' stroke='none'/%3E%3Cpath d='M8 12.5l3 3 5-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  border-radius: 0;
}

.duo-card__microcopy {
  margin-top: 12px;
  color: var(--mocha);
  font-size: 0.72rem;
  font-weight: 400;
}

.duo-card__microcopy + .duo-card__microcopy {
  display: none;
}

.duo-collection-link {
  display: grid;
  gap: 14px;
  max-width: 560px;
  margin-top: 18px;
  border-top: 1px solid rgba(214, 191, 168, 0.56);
  padding-top: 18px;
}

.duo-collection-link p {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.duo-card .duo-collection-link .button {
  width: fit-content;
  min-height: 48px;
  margin-top: 0;
  padding-inline: 22px;
  font-size: 0.72rem;
}

.duo-card .button {
  width: min(390px, 100%);
  justify-content: center;
  min-height: 60px;
  margin-top: 2px;
}

.duo-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-left: 1px solid rgba(206, 152, 101, 0.52);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.duo-card__visual::before {
  display: none;
}

.duo-card__scene {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.duo-card__visual span {
  position: absolute;
  top: 70px;
  right: 58px;
  z-index: 2;
  width: 168px;
  min-height: 168px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(168, 95, 36, 0.42);
  border-radius: 999px;
  color: var(--caramel-dark);
  background: rgba(255, 253, 249, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.duo-card__visual span strong,
.duo-card__visual span small {
  display: block;
}

.duo-card__visual span small {
  color: var(--mocha);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.routine-showcase-pin {
  position: relative;
  min-height: 260vh;
  margin: 0 0 32px;
}

.routine-showcase {
  --showcase-bg: #f5e6d4;
  --showcase-panel: #fffaf4;
  position: sticky;
  top: 16px;
  min-height: 760px;
  overflow: hidden;
  margin: 0 16px;
  color: var(--deep-brown);
  background: var(--showcase-bg);
  isolation: isolate;
}

.routine-showcase::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.72), rgba(255, 253, 249, 0.22) 44%, rgba(255, 253, 249, 0.36)),
    linear-gradient(180deg, rgba(255, 253, 249, 0.1), rgba(180, 119, 70, 0.08));
  content: "";
}

.routine-showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.routine-showcase__grain {
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.routine-showcase__number {
  position: absolute;
  top: 5.5%;
  left: 27%;
  z-index: 3;
  color: rgba(180, 96, 39, 0.7);
  font-family: var(--font-heading);
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  white-space: nowrap;
  user-select: none;
  transition: transform 650ms cubic-bezier(0.4, 0, 0.2, 1), left 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-showcase.is-intro .routine-showcase__number {
  top: 8%;
  left: 50%;
  width: 100%;
  font-size: clamp(7rem, 16vw, 14rem);
  letter-spacing: 0.14em;
  line-height: 0.9;
  text-align: center;
  transform: translateX(-50%);
}

.routine-showcase.is-step-2 .routine-showcase__number {
  left: 14%;
}

.routine-showcase__stage {
  position: absolute;
  inset: 0;
  z-index: 5;
}

.routine-showcase__item {
  position: absolute;
  bottom: 5%;
  left: 50%;
  width: min(19vw, 270px);
  aspect-ratio: 0.42 / 1;
  transform: translateX(-50%) scale(1);
  transition:
    transform 650ms cubic-bezier(0.4, 0, 0.2, 1),
    filter 650ms cubic-bezier(0.4, 0, 0.2, 1),
    opacity 650ms cubic-bezier(0.4, 0, 0.2, 1),
    left 650ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, filter, opacity, left;
}

.routine-showcase__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 32px 30px rgba(42, 30, 25, 0.18));
  user-select: none;
}

.routine-showcase__item--duo {
  width: min(35vw, 500px);
  aspect-ratio: 1.08 / 1;
}

.routine-showcase__item--duo.is-left,
.routine-showcase__item--duo.is-right {
  opacity: 0.24;
  transform: translateX(-50%) scale(0.5);
}

.routine-showcase__item.is-center {
  left: 50%;
  bottom: 5%;
  z-index: 6;
  opacity: 1;
  filter: blur(0);
  transform: translateX(-50%) scale(1.12);
}

.routine-showcase.is-intro .routine-showcase__item.is-center {
  left: 50%;
  bottom: 4%;
  transform: translateX(-50%) scale(1.08);
}

.routine-showcase__item.is-left {
  left: 38%;
  bottom: 17%;
  z-index: 4;
  opacity: 0.34;
  filter: blur(5px);
  transform: translateX(-50%) scale(0.72);
}

.routine-showcase__item.is-right {
  left: 65%;
  bottom: 17%;
  z-index: 4;
  opacity: 0.34;
  filter: blur(5px);
  transform: translateX(-50%) scale(0.72);
}

.routine-showcase.is-intro .routine-showcase__item.is-left {
  left: 33%;
  bottom: 14%;
  transform: translateX(-50%) scale(0.62);
}

.routine-showcase.is-intro .routine-showcase__item.is-right {
  left: 67%;
  bottom: 14%;
  transform: translateX(-50%) scale(0.62);
}

.routine-showcase__hint {
  position: absolute;
  top: 27%;
  left: 58%;
  z-index: 7;
  color: var(--mocha);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1;
  transform: rotate(-8deg);
  transition: left 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-showcase__hint::before {
  position: absolute;
  right: calc(100% + 8px);
  top: -12px;
  color: var(--caramel);
  content: "↗";
}

.routine-showcase.is-step-2 .routine-showcase__hint {
  left: 31%;
}

.routine-showcase.is-step-2 .routine-showcase__hint::before {
  right: auto;
  left: calc(100% + 8px);
  content: "↙";
}

.routine-showcase__copy {
  position: absolute;
  top: 26%;
  left: clamp(34px, 7vw, 118px);
  z-index: 7;
  width: min(285px, calc(100% - 48px));
  border: 1px solid rgba(255, 253, 249, 0.72);
  border-radius: 24px;
  padding: 34px 32px 30px;
  color: var(--deep-brown);
  background: rgba(255, 253, 249, 0.72);
  box-shadow: 0 20px 42px rgba(63, 45, 32, 0.1);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: left 650ms cubic-bezier(0.4, 0, 0.2, 1), right 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-showcase.is-step-2 .routine-showcase__copy {
  right: clamp(34px, 9vw, 150px);
  left: auto;
}

.routine-showcase.is-intro .routine-showcase__copy {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.routine-showcase__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border: 1px solid rgba(168, 95, 36, 0.58);
  border-radius: 999px;
}

.routine-showcase__icon::before {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: var(--caramel);
  font-size: 1.55rem;
  content: "♧";
}

.routine-showcase.is-step-2 .routine-showcase__icon::before {
  content: "♢";
}

.routine-showcase__eyebrow {
  margin: 8px 0 18px;
  color: var(--caramel);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.routine-showcase__copy h2 {
  color: var(--deep-brown);
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 2.7vw, 2.28rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.routine-showcase__copy > p:not(.routine-showcase__eyebrow) {
  color: var(--soft-black);
  font-size: 0.98rem;
  line-height: 1.56;
}

.routine-showcase__actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

body .routine-showcase__nav {
  width: 38px !important;
  height: 38px !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(168, 95, 36, 0.72) !important;
  border-radius: 50% !important;
  color: var(--caramel-dark) !important;
  background: rgba(255, 253, 249, 0.48) !important;
  font-size: 1rem !important;
  transition: transform 150ms ease, background-color 150ms ease !important;
}

.routine-showcase__nav:hover {
  background: rgba(255, 253, 249, 0.8);
  transform: scale(1.08);
}

.routine-showcase__dots {
  position: absolute;
  left: clamp(38px, 7vw, 122px);
  bottom: 6%;
  z-index: 7;
  display: flex;
  gap: 10px;
  transition: left 650ms cubic-bezier(0.4, 0, 0.2, 1), right 650ms cubic-bezier(0.4, 0, 0.2, 1);
}

.routine-showcase.is-step-2 .routine-showcase__dots {
  right: clamp(48px, 14vw, 240px);
  left: auto;
}

.routine-showcase.is-intro .routine-showcase__dots {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.routine-showcase__dots span {
  width: 16px;
  height: 16px;
  border: 1px solid var(--caramel);
  border-radius: 999px;
  background: transparent;
}

.routine-showcase__dots span.is-active {
  background: var(--caramel);
}


.routine {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(233, 214, 196, 0.26), transparent 24rem),
    radial-gradient(circle at 84% 26%, rgba(214, 191, 168, 0.2), transparent 26rem),
    linear-gradient(180deg, rgba(255, 253, 249, 0.72), rgba(249, 244, 236, 0.92));
}

.routine__journey {
  position: relative;
  display: grid;
  gap: 28px;
  padding-block: 16px 6px;
}

.routine__journey::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 56px;
  width: 1px;
  background: linear-gradient(180deg, rgba(185, 141, 102, 0), rgba(185, 141, 102, 0.62) 12%, rgba(185, 141, 102, 0.62) 88%, rgba(185, 141, 102, 0));
  content: "";
}

.routine-step {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 460ms ease, transform 560ms ease;
}

.routine-step:nth-child(2) {
  transition-delay: 80ms;
}

.routine-step__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.78fr);
  align-items: stretch;
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(225, 214, 203, 0.96);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 244, 236, 0.92)),
    radial-gradient(circle at 82% 22%, rgba(240, 220, 198, 0.58), rgba(240, 220, 198, 0));
  box-shadow: 0 28px 50px rgba(74, 52, 37, 0.08);
  transform: translate3d(var(--pointer-x, 0px), calc(var(--scroll-shift, 0px) + var(--pointer-y, 0px)), 0);
  transition: transform 360ms ease, box-shadow 360ms ease, border-color 320ms ease;
  will-change: transform;
}

.routine-step__number {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(214, 189, 164, 0.9);
  color: var(--caramel-dark);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(246, 236, 224, 0.96));
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  box-shadow: 0 16px 26px rgba(110, 80, 58, 0.08);
}

.routine-step__number::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: calc(100% + 96px);
  background: linear-gradient(180deg, rgba(185, 141, 102, 0.5), rgba(185, 141, 102, 0));
  content: "";
  transform: translateX(-50%);
}

.routine-step:last-child .routine-step__number::after {
  display: none;
}

.routine-step__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 52px);
}

.routine-step h3 {
  max-width: 10ch;
  font-family: var(--font-heading);
  font-size: clamp(2.05rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.96;
  color: var(--deep-brown);
  text-transform: none;
}

.routine-step p {
  max-width: 32ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.routine-step__visual {
  position: relative;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding: 26px 26px 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 253, 249, 0.95), rgba(255, 253, 249, 0)),
    linear-gradient(180deg, rgba(243, 230, 215, 0.92), rgba(248, 242, 234, 0.75));
}

.routine-step__visual::before {
  position: absolute;
  inset: 18px 18px auto auto;
  width: 118px;
  height: 118px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 253, 249, 0.82), rgba(255, 253, 249, 0));
  content: "";
}

.routine-step img {
  position: relative;
  z-index: 1;
  width: min(100%, 230px);
  justify-self: center;
  align-self: end;
  filter: drop-shadow(0 24px 24px rgba(42, 30, 25, 0.16));
  transform: translateY(0);
  transition: transform 360ms ease;
}

.routine-step--cleanse {
  margin-right: 92px;
}

.routine-step--hydrate {
  margin-left: 92px;
}

.routine.is-visible .routine-step {
  opacity: 1;
  transform: translateY(0);
}

.routine__journey:hover .routine-step__card {
  border-color: rgba(194, 151, 114, 0.55);
  box-shadow: 0 28px 50px rgba(74, 52, 37, 0.1);
}

.routine__journey:hover .routine-step img {
  transform: translateY(-4px);
}

.routine-step--hydrate .routine-step__card {
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.05fr);
}

.routine-step--hydrate .routine-step__copy {
  order: 2;
}

.routine-step--hydrate .routine-step__visual {
  order: 1;
}

.routine__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 18px 18px 18px 30px;
  background: rgba(255, 253, 249, 0.68);
}

.routine__footer p {
  color: var(--deep-brown);
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.12;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
}

.about__media {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid var(--border);
  border-radius: 34px;
  background: var(--sand);
  box-shadow: var(--shadow-card);
}

.about__media img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.93) contrast(1.03);
}

.about__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(42, 30, 25, 0.12));
  content: "";
}

.about__copy p + p {
  margin-top: 18px;
}

.brand-signature {
  color: var(--caramel-dark) !important;
  font-family: var(--font-heading);
  font-size: 1.7rem !important;
  font-style: italic;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.74);
  box-shadow: var(--shadow-card);
}

.trust-grid article {
  min-height: 168px;
  padding: 30px 24px;
  border-right: 1px solid var(--border);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-icon {
  margin-bottom: 20px;
  color: var(--caramel);
  display: block;
}

.trust-icon--map {
  width: 38px;
  height: 38px;
  color: var(--caramel);
}

.trust-icon--map path {
  stroke: currentColor;
  stroke-width: 2.15;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.order {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 0 42%, rgba(232, 216, 197, 0.6), transparent 22rem),
    linear-gradient(90deg, #f3e2d1, #fcf8f2 46%, #f6eadf);
}

.order::before {
  position: absolute;
  top: 6%;
  left: -90px;
  width: 310px;
  height: 310px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.52);
  content: "";
}

.order__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.order__copy {
  position: sticky;
  top: 116px;
}

.order-panel {
  margin-top: 22px;
  border: 1px solid rgba(231, 221, 210, 0.84);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 253, 249, 0.62);
}

.order__copy > .order-panel:not(.order-panel--inline) {
  display: none;
}

.order-panel ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.order-panel--inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.order__note {
  margin-top: 18px;
  color: var(--mocha);
  font-size: 0.9rem;
  font-weight: 700;
}

.order-form-card {
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(24px, 4vw, 44px);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--deep-brown);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-form input,
.order-form select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(107, 81, 67, 0.18);
  border-radius: 14px;
  padding: 0 16px;
  color: var(--soft-black);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.order-form input:focus,
.order-form select:focus {
  border-color: rgba(168, 95, 36, 0.55);
  outline: none;
  box-shadow: 0 0 0 4px rgba(168, 95, 36, 0.12);
}

.order-form .button {
  width: 100%;
  margin-top: 18px;
}

.form-microcopy {
  margin-top: 11px;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.form-success {
  display: grid;
  place-items: center;
  min-height: 420px;
  text-align: center;
}

.form-success[hidden] {
  display: none;
}

.form-success h3 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.form-success p {
  max-width: 520px;
  margin-top: 14px;
  color: var(--muted);
}

.form-success .button {
  margin-top: 24px;
}

.support-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 3.4vw, 44px);
  align-items: start;
}

.support-faq__whatsapp,
.support-faq__faq {
  min-width: 0;
}

.support-faq__faq .section-heading {
  margin-bottom: 24px;
}

.support-faq__faq .faq__list {
  max-width: none;
}

.whatsapp__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 42px;
  padding: clamp(40px, 6vw, 64px);
  background: rgba(255, 253, 249, 0.75);
  box-shadow: 0 32px 64px rgba(42, 30, 25, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.8);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.support-faq__whatsapp.whatsapp__box {
  height: 100%;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
  flex-direction: column;
}

.support-faq__whatsapp .whatsapp__content,
.support-faq__whatsapp .whatsapp__action {
  width: 100%;
}

.support-faq__whatsapp .whatsapp__action .button--whatsapp {
  width: 100%;
  justify-content: center;
}

.whatsapp__box:hover {
  transform: translateY(-4px);
  box-shadow: 0 42px 74px rgba(42, 30, 25, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.whatsapp__bg-elements {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 42px;
}

.whatsapp__blob {
  position: absolute;
  filter: blur(60px);
  border-radius: 50%;
  opacity: 0.6;
}

.whatsapp__blob--1 {
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168, 95, 36, 0.1), transparent 70%);
}

.whatsapp__blob--2 {
  bottom: -30%;
  left: 20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 139, 99, 0.08), transparent 70%);
}

.whatsapp__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.whatsapp__content .eyebrow {
  color: var(--caramel);
  background: rgba(168, 95, 36, 0.08);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(168, 95, 36, 0.15);
  letter-spacing: 0.15em;
}

.whatsapp__content .eyebrow::before {
  display: none;
}

.whatsapp__content h2 {
  margin-top: 24px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.whatsapp__lede {
  margin-top: 16px;
  font-size: 1.05rem !important;
  color: var(--mocha) !important;
  line-height: 1.6;
}

.whatsapp__contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(107, 81, 67, 0.1);
}

.whatsapp__icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(168, 95, 36, 0.08);
  border: 1px solid rgba(168, 95, 36, 0.2);
  border-radius: 50%;
  color: var(--caramel);
  box-shadow: 0 8px 16px rgba(42, 30, 25, 0.04);
}

.whatsapp__phone {
  margin-top: 0 !important;
  color: var(--deep-brown) !important;
  font-size: 1.15rem;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.whatsapp__microcopy {
  margin-top: 4px !important;
  font-size: 0.9rem !important;
  color: var(--muted) !important;
}

.whatsapp__action {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.faq__list {
  max-width: 860px;
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 12px 34px rgba(42, 30, 25, 0.045);
}

body .faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  padding: 22px 24px;
  color: var(--deep-brown);
  background: transparent;
  text-align: left;
}

body .faq-trigger span {
  font-size: 1rem;
  font-weight: 900;
  color: var(--deep-brown);
}

.faq-trigger i {
  position: relative;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--cream);
}

.faq-trigger i::before,
.faq-trigger i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 99px;
  background: var(--caramel);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-trigger i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-trigger[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-panel p {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-panel p + p {
  padding-top: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(168, 95, 36, 0.12);
  padding-block: 72px 24px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(248, 243, 236, 0.96)),
    radial-gradient(circle at 12% 18%, rgba(201, 139, 99, 0.08), transparent 20rem),
    radial-gradient(circle at 88% 24%, rgba(122, 132, 101, 0.08), transparent 18rem);
}

.site-footer::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.38), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.24)),
    linear-gradient(180deg, rgba(168, 95, 36, 0.05), transparent 22%);
  content: "";
  pointer-events: none;
}

.footer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) 0.7fr 1fr 0.8fr;
  gap: clamp(26px, 5vw, 66px);
  padding: clamp(30px, 4vw, 42px);
  border: 1px solid rgba(168, 95, 36, 0.12);
  border-radius: 34px;
  background: rgba(255, 252, 247, 0.66);
  box-shadow: 0 22px 60px rgba(42, 30, 25, 0.05);
  backdrop-filter: blur(10px);
}

.footer__logo {
  width: 96px;
  margin-bottom: 22px;
  filter: drop-shadow(0 8px 20px rgba(42, 30, 25, 0.08));
}

.site-footer h2 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--deep-brown);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.site-footer ul li {
  list-style: none;
}

.site-footer ul li + li {
  margin-top: 0;
}

.footer__grid > div:first-child p:first-of-type {
  margin-bottom: 18px;
  color: var(--deep-brown);
  font-size: 1rem;
  font-weight: 700;
}

.footer__grid > div:first-child p:last-of-type {
  max-width: 26ch;
  color: var(--mocha);
}

.site-footer a:hover {
  color: var(--caramel-dark);
}

.footer__bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  border-top: 1px solid rgba(168, 95, 36, 0.12);
  padding-top: 20px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(107, 81, 67, 0.88);
}

.footer__credit {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(168, 95, 36, 0.08);
  text-align: center;
}

.footer__credit p {
  font-size: 0.78rem;
  color: rgba(107, 81, 67, 0.68);
  letter-spacing: 0;
  text-transform: none;
}

.footer__credit a {
  color: rgba(107, 81, 67, 0.76);
  font-weight: 500;
  font-size: 0.92em;
}

.footer__credit a:hover {
  color: rgba(107, 81, 67, 0.9);
}

@media (max-width: 1060px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  body .nav-toggle {
    display: inline-flex !important;
    order: 3;
    position: relative;
    z-index: 3;
  }

  body .site-header__cta {
    display: none !important;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 14px);
    left: 50%;
    display: none;
    width: min(calc(100vw - 32px), 620px);
    flex-direction: column;
    gap: 0;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 20px 18px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow-card);
    transform: translateX(-50%);
    z-index: 2;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 15px 16px;
    border-radius: 14px;
    text-align: center;
  }

  .site-nav a:hover {
    background: var(--cream);
  }

  .site-nav a::after {
    display: none;
  }

  .benefits__intro,
  .about__grid,
  .order__grid {
    grid-template-columns: 1fr;
  }

  .hero {
    background-position: 66% center;
  }

  .hero__texture {
    background:
      linear-gradient(90deg, rgba(250, 246, 239, 0.97) 0%, rgba(250, 246, 239, 0.88) 34%, rgba(250, 246, 239, 0.42) 58%, rgba(250, 246, 239, 0.08) 100%);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  }

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

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

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

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

  .product-card__media {
    min-height: 330px;
  }

  .duo-card__visual {
    order: -1;
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
    min-height: 520px;
    border-left: 0;
    border-radius: 36px;
  }

  .duo-price {
    grid-template-columns: 70px 1fr;
  }

  .duo-price__saving {
    grid-column: 1 / -1;
    padding-left: 0;
    padding-top: 16px;
    border-left: 0;
    border-top: 1px solid rgba(220, 198, 173, 0.9);
  }

  .duo-card__copy {
    padding: 26px 26px 32px;
  }

  .duo-card__copy > p,
  .duo-card__lists,
  .duo-price,
  .duo-card__divider {
    max-width: none;
  }

  .duo-card__copy h2 {
    max-width: 9.5ch;
    font-size: clamp(3.4rem, 8vw, 4.8rem);
  }

  .routine__journey::before {
    left: 36px;
  }

  .routine-step {
    grid-template-columns: 84px minmax(0, 1fr);
  }

  .routine-step__card,
  .routine-step--hydrate .routine-step__card {
    grid-template-columns: 1fr;
  }

  .routine-step__copy,
  .routine-step--hydrate .routine-step__copy {
    order: 2;
  }

  .routine-step__visual,
  .routine-step--hydrate .routine-step__visual {
    order: 1;
    min-height: 260px;
  }

  .routine-step__visual img {
    width: min(100%, 200px);
  }

  .routine-step--cleanse {
    margin-right: 24px;
  }

  .routine-step--hydrate {
    margin-left: 24px;
  }

  .routine-showcase__item {
    width: min(24vw, 230px);
  }

  .routine-showcase__item.is-center {
    transform: translateX(-50%) scale(1);
  }

  .order__copy {
    position: static;
  }

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

@media (max-width: 720px) {
  .hero {
    min-height: clamp(740px, 172vw, 920px);
    padding-bottom: 18px;
    background-image: url("https://lillyaskin.com/wp-content/uploads/2026/07/Skincare-corporal-tropical.jpg");
    background-position: 63% 24%;
    background-size: cover;
  }

  .hero__texture {
    display: block;
    background:
      linear-gradient(180deg, rgba(250, 246, 239, 0.38) 0%, rgba(250, 246, 239, 0.18) 40%, rgba(250, 246, 239, 0.06) 100%),
      linear-gradient(90deg, rgba(250, 246, 239, 0.98) 0%, rgba(250, 246, 239, 0.94) 33%, rgba(250, 246, 239, 0.82) 48%, rgba(250, 246, 239, 0.42) 67%, rgba(250, 246, 239, 0.06) 100%);
  }

  .hero__grid {
    min-height: inherit;
    grid-template-columns: 1fr;
    align-items: stretch;
    padding-top: 20px;
  }

  .hero__mobile-image {
    display: none;
  }

  .hero__mobile-image img {
    display: none;
  }

  .hero__copy {
    width: min(100%, calc(100vw - 28px));
    max-width: 100%;
    margin-inline: 0 auto;
    text-align: left;
    padding-block: 26px 18px;
  }

  .hero h1 {
    width: min(100%, 13.2ch);
    max-width: 13.2ch;
    margin-inline: 0;
    font-size: clamp(2.55rem, 9.6vw, 3.2rem);
    line-height: 0.98;
  }

  .hero__text {
    width: min(100%, 24ch);
    max-width: 24ch;
    margin-inline: 0;
    margin-top: 16px;
    font-size: clamp(0.92rem, 3.55vw, 1rem);
    line-height: 1.42;
  }

  .hero__actions,
  .hero__microcopy,
  .hero__benefits {
    width: min(100%, calc(100vw - 28px));
    margin-inline: 0 auto;
  }

  .eyebrow {
    letter-spacing: 0.1em;
  }

  .hero__copy .eyebrow {
    justify-content: flex-start;
    max-width: 100%;
    margin-bottom: 14px;
    font-size: 0.7rem;
  }

  .hero__copy .eyebrow::before {
    width: 18px;
  }

  .brand {
    width: 94px;
  }

  .site-header__inner {
    min-height: 56px;
  }

  body .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 22px;
  }

  .hero__microcopy {
    max-width: 340px;
    margin-top: 14px;
    line-height: 1.45;
  }

  .hero__benefits {
    gap: 12px 6px;
    margin-top: 18px;
    justify-content: space-between;
  }

  .hero-collection-section {
    margin-top: 8px;
    padding-bottom: 20px;
  }

  .hero-collection-finder {
    width: min(100%, calc(100vw - 32px));
    margin-inline: auto;
    border-radius: 28px;
    padding: 18px 14px 16px;
    background: rgba(255, 253, 249, 0.94);
  }

  .hero-collection-finder__heading {
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
  }

  .hero-collection-finder__heading > span {
    width: 28px;
    height: 28px;
  }

  .hero-collection-finder__heading h2 {
    font-size: clamp(1.85rem, 8.5vw, 2.35rem);
    line-height: 0.96;
  }

  .hero-collection-finder__heading p {
    font-size: 0.82rem;
  }

  .hero-collection-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-flow: row;
    gap: 12px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .hero-collection-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    text-align: center;
    scroll-snap-align: none;
    transform: none;
  }

  .hero-collection-nav a:hover,
  .hero-collection-nav a:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .hero-collection-nav img {
    width: clamp(88px, 24vw, 108px);
    height: auto;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(214, 191, 168, 0.85);
    border-radius: 999px;
    background: #fff;
    object-fit: cover;
  }

  .hero-collection-nav span {
    gap: 0;
    padding: 0;
    justify-items: center;
  }

  .hero-collection-nav strong {
    font-size: clamp(0.8rem, 3.45vw, 1rem);
    font-weight: 600;
    line-height: 1.16;
  }

  .hero-collection-nav em,
  .hero-collection-nav b {
    display: none;
  }

  .hero__benefits li {
    flex: 1 1 30%;
    min-width: 0;
    padding-inline: 4px;
  }

  .hero__actions .button {
    width: min(100%, 286px);
  }

  .trust-grid,
  .form-grid,
  .order-panel--inline,
  .duo-card__lists,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .product-card__body {
    padding: 28px 22px 34px;
  }

  .duo-card {
    border-radius: 32px;
    padding: 18px;
  }

  .duo-card__visual {
    min-height: 420px;
    border-radius: 30px;
  }

  .duo-card__copy {
    padding: 14px 10px 8px;
  }

  .duo-card__copy h2 {
    max-width: none;
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .duo-card__copy > p {
    max-width: none;
    font-size: 1rem;
  }

  .duo-price {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .duo-price__icon {
    margin-inline: auto;
  }

  .duo-price__saving {
    justify-items: center;
  }

  .duo-card__divider {
    margin-block: 20px 18px;
  }

  .duo-card__lists {
    gap: 18px;
  }

  .duo-card__visual span {
    top: 18px;
    right: 18px;
    width: 118px;
    height: 118px;
    font-size: 0.72rem;
  }

  .routine-showcase-pin {
    min-height: 210vh;
    margin-bottom: 20px;
  }

  .routine-showcase {
    min-height: 780px;
  }

  .routine-showcase__number,
  .routine-showcase.is-step-2 .routine-showcase__number {
    top: 24px;
    left: 22px;
    font-size: clamp(6.2rem, 30vw, 8.8rem);
  }

  .routine-showcase.is-intro .routine-showcase__number {
    top: 24px;
    left: 50%;
    width: 100%;
    font-size: clamp(4.4rem, 18vw, 6.6rem);
    letter-spacing: 0.08em;
    text-align: center;
    transform: translateX(-50%);
  }

  .routine-showcase__copy,
  .routine-showcase.is-step-2 .routine-showcase__copy {
    top: 92px;
    right: 18px;
    left: auto;
    width: min(210px, calc(100% - 34px));
    border-radius: 20px;
    padding: 22px 18px;
  }

  .routine-showcase__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .routine-showcase__copy h2 {
    font-size: 1.65rem;
  }

  .routine-showcase__eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
  }

  .routine-showcase__copy > p:not(.routine-showcase__eyebrow) {
    display: none;
  }

  .routine-showcase__actions {
    margin-top: 14px;
  }

  .routine-showcase__nav {
    width: 38px;
    height: 38px;
  }

  .routine-showcase__item {
    width: min(45vw, 190px);
  }

  .routine-showcase__item--duo {
    width: min(68vw, 300px);
  }

  .routine-showcase__item.is-center {
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%) scale(1.02);
  }

  .routine-showcase.is-intro .routine-showcase__item.is-center {
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%) scale(0.96);
  }

  .routine-showcase.is-intro .routine-showcase__copy {
    display: none;
  }

  .routine-showcase__item.is-left {
    left: 24%;
    bottom: 30%;
    transform: translateX(-50%) scale(0.5);
  }

  .routine-showcase__item.is-right {
    left: 76%;
    bottom: 30%;
    transform: translateX(-50%) scale(0.5);
  }

  .routine-showcase__dots,
  .routine-showcase.is-step-2 .routine-showcase__dots {
    right: auto;
    bottom: 20px;
    left: 22px;
  }

  .routine-step {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .routine__journey {
    gap: 22px;
  }

  .routine__journey::before {
    top: 34px;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
  }

  .routine-step__number {
    margin-inline: auto;
  }

  .routine-step__card,
  .routine-step--hydrate .routine-step__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .routine-step__copy,
  .routine-step--hydrate .routine-step__copy {
    order: 2;
    padding: 28px 22px 30px;
    text-align: center;
  }

  .routine-step__visual,
  .routine-step--hydrate .routine-step__visual {
    order: 1;
    min-height: 220px;
    padding-top: 22px;
  }

  .routine-step__visual img {
    width: min(100%, 176px);
  }

  .routine-step h3 {
    max-width: none;
  }

  .routine-step p {
    max-width: none;
  }

  .routine-step--cleanse,
  .routine-step--hydrate {
    margin-inline: 0;
  }

  .routine__footer {
    align-items: stretch;
    flex-direction: column;
    border-radius: 28px;
    padding: 24px;
    text-align: center;
  }

  .about__media,
  .about__media img {
    min-height: 320px;
  }

  .support-faq__grid {
    grid-template-columns: 1fr;
  }

  .whatsapp__box,
  .footer__bottom {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .whatsapp__box .eyebrow {
    justify-content: center;
    width: fit-content;
    margin-inline: auto;
  }

  .whatsapp__contact-info {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 12px;
  }

  .whatsapp__action {
    width: 100%;
    margin-top: 24px;
  }
  
  .whatsapp__action .button--whatsapp {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .section-shell {
    width: min(100% - 28px, var(--shell));
  }

  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(1.85rem, 8.5vw, 2.15rem);
  }

  .hero__copy .eyebrow {
    letter-spacing: 0.07em;
  }

  .hero__copy .eyebrow::before {
    display: none;
  }

  .button {
    padding-inline: 18px;
  }

  .product-card__media {
    min-height: 278px;
  }

  .duo-card__visual {
    min-height: 320px;
  }
}

.duo-card__microcopy {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 300;
  opacity: 0.9;
}

.duo-card__microcopy svg {
  display: block;
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  color: var(--mocha);
  margin: 0;
  stroke-width: 1.0;
}

.benefits.section-pad {
  padding-bottom: clamp(24px, 4vw, 48px) !important;
}

.products.section-pad {
  padding-top: clamp(24px, 4vw, 48px) !important;
  padding-bottom: clamp(24px, 3vw, 40px) !important;
}

.duo.section-pad {
  padding-top: clamp(24px, 3vw, 40px) !important;
}

.support-faq.section-pad {
  padding-bottom: clamp(24px, 4vw, 48px) !important;
}

@media (max-width: 1060px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
  }

  .catalog-card__media img {
    min-height: 260px;
  }

  .soap-card {
    grid-template-columns: 190px minmax(0, 1fr);
    grid-template-rows: auto;
  }

  .soap-card__media img {
    min-height: 190px;
  }

}

@media (max-width: 900px) {
  .soap-complements__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .catalog-collection {
    margin-top: clamp(44px, 10vw, 66px);
  }

  .catalog-collection__intro h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-card__media img {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  .catalog-card__body {
    padding: 24px 20px 26px;
  }

  .duo-card .duo-collection-link .button {
    width: 100%;
  }

  .soap-complements {
    padding-block: clamp(54px, 12vw, 78px);
  }

  .soap-complements .section-heading {
    margin-bottom: 28px;
  }

  .soap-card {
    grid-template-columns: 1fr;
  }

  .soap-card__media img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .soap-card__body {
    padding: 24px 20px 26px;
  }

  .soap-card__cta,
  .soap-complements__footer .button {
    width: 100%;
  }

  .soap-card__cta {
    transform: none;
    margin-top: 22px;
  }

  .soap-complements__footer {
    display: grid;
    gap: 18px;
    text-align: center;
  }

}

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

/* Fluent Forms Styles Override - Optimized UI/UX */
body .fluentform {
  font-family: var(--font-body) !important;
  width: 100%;
}

body .fluentform .ff-el-group {
  margin-bottom: 20px !important;
}

/* Inputs, Selects and Textareas */
body .fluentform .ff-el-form-control,
body .fluentform select.ff-el-form-control,
body .fluentform textarea.ff-el-form-control {
  width: 100% !important;
  min-height: 56px !important;
  border: 1px solid rgba(168, 95, 36, 0.18) !important;
  border-radius: 16px !important;
  padding: 10px 18px !important;
  color: var(--soft-black) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 4px 10px rgba(42, 30, 25, 0.02), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  font-family: var(--font-body) !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  transition: all 250ms ease !important;
}

body .fluentform select.ff-el-form-control {
  padding-right: 36px !important;
}

body .fluentform .ff-el-form-control:focus,
body .fluentform select.ff-el-form-control:focus,
body .fluentform textarea.ff-el-form-control:focus {
  border-color: var(--caramel) !important;
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(168, 95, 36, 0.12), 0 8px 16px rgba(42, 30, 25, 0.04) !important;
  background: var(--white) !important;
}

/* Labels */
body .fluentform .ff-el-input--label label {
  display: block !important;
  margin-bottom: 8px !important;
  color: var(--deep-brown) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
}

/* Required asterisk styling */
body .fluentform .ff-el-input--label label h2 span,
body .fluentform .ff-el-input--label label span,
body .fluentform .ff-el-input--label label .asterisk {
  color: var(--caramel) !important;
  font-weight: bold;
}

/* Address section title styling */
body .fluentform .ff-section_title,
body .fluentform h2,
body .fluentform h3,
body .fluentform h4 {
  font-family: var(--font-heading) !important;
  font-size: 1.6rem !important;
  font-weight: 500 !important;
  color: var(--caramel) !important;
  margin: 32px 0 16px !important;
  letter-spacing: -0.01em !important;
  border-bottom: 1px solid rgba(168, 95, 36, 0.15);
  padding-bottom: 8px;
  grid-column: 1 / -1;
}

/* Checkbox container */
body .fluentform .ff-el-form-check {
  margin-top: 14px !important;
  padding-left: 4px;
}

body .fluentform .ff-el-form-check label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  color: var(--muted) !important;
  font-family: var(--font-body) !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  text-transform: none !important;
  cursor: pointer;
}

body .fluentform .ff-el-form-check input[type="checkbox"] {
  margin-top: 3px !important;
  width: 18px !important;
  height: 18px !important;
  border: 1px solid rgba(168, 95, 36, 0.3) !important;
  border-radius: 6px !important;
  cursor: pointer;
  accent-color: var(--caramel);
}

/* Submit button container */
body .fluentform .ff-el-submit-button {
  margin-top: 26px !important;
  text-align: center;
  width: 100%;
  grid-column: 1 / -1;
}

/* Submit Button Custom Styling */
body .fluentform .ff-btn-submit {
  display: inline-flex !important;
  min-height: 56px !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border: 1px solid transparent !important;
  border-radius: 999px !important;
  padding: 14px 28px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  line-height: 1.1 !important;
  text-transform: uppercase !important;
  transition: all 220ms ease !important;
  
  /* Color and background to match button--primary */
  color: var(--white) !important;
  font-size: 0.8rem !important;
  background: #c96f27 !important;
  box-shadow: 0 16px 34px rgba(168, 95, 36, 0.22) !important;
  position: relative !important;
  width: 100% !important;
  margin-top: 18px !important;
  cursor: pointer !important;
}

body .fluentform .ff-btn-submit:hover {
  transform: translateY(-2px) !important;
  background: var(--caramel-dark) !important;
  box-shadow: 0 18px 40px rgba(42, 30, 28, 0.28) !important;
}

body .fluentform .ff-btn-submit:active {
  transform: translateY(0) !important;
}

/* Success Message styling */
body .fluentform .ff-message-success {
  border: 1px solid var(--border) !important;
  border-radius: 24px !important;
  padding: clamp(24px, 4vw, 44px) !important;
  background: var(--coconut) !important;
  box-shadow: var(--shadow-card) !important;
  color: var(--deep-brown) !important;
  font-family: var(--font-body) !important;
  text-align: center !important;
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
  margin-top: 20px !important;
}

/* Validation Error Messages */
body .fluentform .error,
body .fluentform .ff-errors,
body .fluentform .ff-error-text {
  color: #d32f2f !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  margin-top: 6px !important;
}

/* Premium Modal Styles */
body .order-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

body .order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body .order-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(42, 30, 25, 0.45);
  backdrop-filter: blur(8px);
}

body .order-modal__container {
  position: relative;
  z-index: 1001;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: clamp(24px, 5vw, 44px);
  box-shadow: 0 32px 80px rgba(42, 30, 25, 0.25);
  transform: scale(0.92) translateY(20px);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  scrollbar-width: thin;
  scrollbar-color: var(--caramel) transparent;
}

body .order-modal__container::-webkit-scrollbar {
  width: 6px;
}

body .order-modal__container::-webkit-scrollbar-thumb {
  background-color: var(--caramel);
  border-radius: 10px;
}

body .order-modal.is-open .order-modal__container {
  transform: scale(1) translateY(0);
}

body .order-modal__close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1002;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 95, 36, 0.15) !important;
  border-radius: 50% !important;
  color: var(--deep-brown) !important;
  background: var(--white) !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(42, 30, 25, 0.05);
  transition: all 200ms ease;
  font-family: Arial, sans-serif !important;
}

body .order-modal__close:hover {
  background: var(--cream) !important;
  transform: scale(1.05);
  border-color: var(--caramel) !important;
  color: var(--caramel) !important;
}

body .order-modal__header {
  margin-bottom: 24px;
  padding-right: 44px;
}

body .order-modal__header h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(1.8rem, 4vw, 2.5rem) !important;
  color: var(--deep-brown) !important;
  margin-bottom: 8px !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

body .order-modal__header p {
  color: var(--muted) !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  text-transform: none !important;
}

body.modal-open {
  overflow: hidden !important;
}

/* Mobile Sticky CTA styling */
.mobile-sticky-cta {
  display: none;
}

@media (max-width: 767px) {
  .site-footer {
    padding-bottom: 220px;
  }

  .footer__bottom {
    margin-top: 28px;
    padding-bottom: 18px;
  }

  .footer__credit {
    padding-bottom: 22px;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 24px;
    left: 20px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transform: translateY(30px);
    transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta .button {
    width: 100%;
    height: 56px;
    box-shadow: 0 12px 30px rgba(168, 95, 36, 0.38) !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
  }
}

body.modal-open .mobile-sticky-cta {
  opacity: 0 !important;
  pointer-events: none !important;
}

/* WhatsApp Widget Styling */
.bsl-whatsapp-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 98;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 300ms ease, visibility 300ms ease, transform 300ms ease, bottom 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.bsl-whatsapp-widget.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.bsl-whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 200ms ease;
  cursor: pointer;
}

.bsl-whatsapp-button:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
}

.bsl-whatsapp-button svg {
  width: 28px;
  height: 28px;
}

.bsl-whatsapp-tooltip {
  position: absolute;
  bottom: 76px;
  right: 0;
  background: var(--coconut);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 16px;
  box-shadow: 0 10px 30px rgba(42, 30, 25, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: normal;
  min-width: 140px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 300ms cubic-bezier(0.16, 1, 0.3, 1), transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 97;
}

.bsl-whatsapp-tooltip.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.bsl-whatsapp-tooltip__text {
  font-family: var(--font-body) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--deep-brown) !important;
  line-height: 1.3 !important;
  text-align: left;
}

.bsl-whatsapp-tooltip__close {
  background: transparent !important;
  border: 0 !important;
  font-size: 1.3rem !important;
  line-height: 1 !important;
  color: var(--muted) !important;
  cursor: pointer;
  padding: 0 4px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 200ms ease;
  font-family: Arial, sans-serif !important;
}

.bsl-whatsapp-tooltip__close:hover {
  color: var(--caramel) !important;
}

/* Adjust position when sticky mobile button is visible */
@media (max-width: 767px) {
  .bsl-whatsapp-widget {
    bottom: 24px;
    right: 20px;
    transition: bottom 300ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease;
  }
  
  body.has-sticky-cta .bsl-whatsapp-widget {
    bottom: 100px;
  }
}

body.modal-open .bsl-whatsapp-widget {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden;
}

.thankyou-main {
  overflow: clip;
}

.thankyou-hero {
  padding-top: clamp(44px, 4.8vw, 72px) !important;
}

.thankyou-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(22px, 3vw, 48px);
  align-items: start;
}

.thankyou-hero__copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.1rem);
  max-width: 10ch;
}

.thankyou-hero__lede {
  margin-top: 20px;
  color: var(--deep-brown);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.45;
}

.thankyou-hero__text {
  max-width: 56ch;
  margin-top: 14px;
  color: var(--mocha);
  font-size: 1rem;
}

.thankyou-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.thankyou-hero__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.thankyou-hero__notes article {
  padding: 24px;
  border: 1px solid rgba(168, 95, 36, 0.12);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.68);
  box-shadow: 0 18px 40px rgba(42, 30, 25, 0.05);
}

.thankyou-hero__notes h2 {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.thankyou-hero__notes p {
  margin-top: 10px;
  color: var(--muted);
}

.thankyou-card {
  position: relative;
  padding: clamp(28px, 4vw, 38px);
  border: 1px solid rgba(168, 95, 36, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(250, 246, 239, 0.88)),
    radial-gradient(circle at top right, rgba(201, 139, 99, 0.14), transparent 16rem);
  box-shadow: var(--shadow-soft);
}

.thankyou-card::before {
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), transparent 35%),
    linear-gradient(0deg, rgba(122, 132, 101, 0.06), transparent 55%);
  content: "";
  pointer-events: none;
}

.thankyou-card > * {
  position: relative;
  z-index: 1;
}

.thankyou-card__eyebrow {
  color: var(--caramel);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thankyou-card__steps {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: thankyou-steps;
}

.thankyou-card__steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--deep-brown);
}

.thankyou-card__steps li::before {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(168, 95, 36, 0.1);
  color: var(--caramel-dark);
  font-size: 0.95rem;
  font-weight: 800;
  counter-increment: thankyou-steps;
  content: counter(thankyou-steps);
}

.thankyou-card__support {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(168, 95, 36, 0.12);
}

.thankyou-card__support-label {
  color: var(--muted);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.thankyou-card__support a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--deep-brown);
  font-size: 1.02rem;
  font-weight: 700;
}

.thankyou-share {
  padding-top: clamp(10px, 2vw, 18px) !important;
}

.thankyou-share__shell {
  padding: clamp(30px, 4.2vw, 52px);
  border: 1px solid rgba(168, 95, 36, 0.12);
  border-radius: 34px;
  background: rgba(255, 252, 247, 0.72);
  box-shadow: 0 22px 54px rgba(42, 30, 25, 0.05);
}

.thankyou-share__heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.thankyou-share__lede {
  margin-top: 16px;
  color: var(--muted);
}

.thankyou-share__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.thankyou-share__item {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 136px;
  padding: 22px 16px;
  border: 1px solid rgba(168, 95, 36, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.64);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.thankyou-share__item:hover,
.thankyou-share__item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(168, 95, 36, 0.28);
  box-shadow: 0 16px 30px rgba(42, 30, 25, 0.06);
}

.thankyou-share__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(168, 95, 36, 0.08);
  color: var(--caramel-dark);
  font-size: 1.15rem;
  font-weight: 800;
}

.thankyou-share__label {
  color: var(--deep-brown);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.thankyou-share__item--copy {
  border: 1px solid rgba(168, 95, 36, 0.12);
  background: rgba(255, 255, 255, 0.64);
  color: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
}

.thankyou-share__item--copy:hover,
.thankyou-share__item--copy:active,
.thankyou-share__item--copy:focus-visible {
  background: rgba(255, 255, 255, 0.64) !important;
  color: inherit;
  border-color: rgba(168, 95, 36, 0.28) !important;
  box-shadow: 0 16px 30px rgba(42, 30, 25, 0.06);
}

.thankyou-share__item--copy:focus-visible {
  outline: 2px solid rgba(168, 95, 36, 0.22);
  outline-offset: 2px;
}

.thankyou-share__item--copy::-moz-focus-inner {
  border: 0;
}

.thankyou-share__grid .thankyou-share__item--copy,
.thankyou-share__grid .thankyou-share__item--copy:hover,
.thankyou-share__grid .thankyou-share__item--copy:active,
.thankyou-share__grid .thankyou-share__item--copy:focus,
.thankyou-share__grid .thankyou-share__item--copy:focus-visible {
  border: 1px solid rgba(168, 95, 36, 0.12) !important;
}

.thankyou-share__grid .thankyou-share__item--copy:hover,
.thankyou-share__grid .thankyou-share__item--copy:active,
.thankyou-share__grid .thankyou-share__item--copy:focus,
.thankyou-share__grid .thankyou-share__item--copy:focus-visible {
  border-color: rgba(168, 95, 36, 0.28) !important;
  background: rgba(255, 255, 255, 0.64) !important;
  color: inherit !important;
}

.thankyou-share__status {
  min-height: 24px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

@media (max-width: 1060px) {
  .thankyou-hero__grid {
    grid-template-columns: 1fr;
  }

  .thankyou-share__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .thankyou-hero {
    padding-top: 44px !important;
  }

  .thankyou-hero__copy h1 {
    font-size: clamp(2.6rem, 13vw, 4.1rem);
  }

  .thankyou-hero__notes {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 420px) {
  .thankyou-share__grid {
    grid-template-columns: 1fr;
  }
}
