:root {
  --rose-50: #fffdfd;
  --rose-100: #ffdbdd;
  --rose-200: #efbfc2;
  --rose-300: #cb8d95;
  --rose-500: #a7626b;
  --berry: #a7626b;
  --plum: #4a252b;
  --gold: #a98522;
  --gold-light: #d6b648;
  --cream: #ffffff;
  --ink: #3a2024;
  --muted: #765258;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(167, 98, 107, 0.18);
  --line: rgba(169, 133, 34, 0.24);
  --glass: rgba(255, 255, 255, 0.82);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 7rem;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(255, 219, 221, 0.72), transparent 31rem),
    radial-gradient(circle at top right, rgba(167, 98, 107, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--white), #fff4f5 48%, var(--cream));
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  isolation: isolate;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(90deg, transparent 0 5.2rem, rgba(169, 133, 34, 0.045) 5.2rem 5.25rem),
    repeating-linear-gradient(0deg, transparent 0 5.2rem, rgba(167, 98, 107, 0.035) 5.2rem 5.25rem);
  content: "";
  pointer-events: none;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.announcement {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0.55rem 1rem;
  background:
    repeating-linear-gradient(90deg, rgba(214, 182, 72, 0.08) 0 1px, transparent 1px 4.5rem),
    linear-gradient(90deg, var(--plum), #5a2149, var(--plum));
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.announcement-track {
  display: flex;
  width: 100%;
  justify-content: center;
}

.announcement-group {
  display: flex;
  gap: clamp(1rem, 5vw, 4rem);
}

.announcement-group[aria-hidden="true"] {
  display: none;
}

@keyframes announcement-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 42px rgba(167, 98, 107, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  color: var(--berry);
}

.brand img,
.site-footer img {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(214, 182, 72, 0.56);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 0.45rem rgba(255, 219, 221, 0.78),
    0 10px 22px rgba(199, 155, 58, 0.22);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.7rem);
  color: var(--berry);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  padding: 0.45rem 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.1rem;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 0.8rem;
}

.ghost-link {
  border: 1px solid rgba(199, 155, 58, 0.48);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: var(--berry);
  font-size: 0.86rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.ghost-link:hover,
.ghost-link:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.72);
  color: var(--plum);
}

.cart-button,
.menu-toggle,
.slider-control,
.cart-close {
  border: 0;
  background: transparent;
}

.cart-button {
  position: relative;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid rgba(199, 155, 58, 0.45);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 14px 26px rgba(167, 98, 107, 0.1);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cart-button:hover,
.cart-button:focus-visible {
  box-shadow: 0 18px 34px rgba(167, 98, 107, 0.18);
  transform: translateY(-0.12rem);
}

.cart-icon {
  width: 1rem;
  height: 0.85rem;
  border: 2px solid var(--berry);
  border-top: 0;
  border-radius: 0 0 0.25rem 0.25rem;
}

.cart-icon::before {
  display: block;
  width: 0.65rem;
  height: 0.55rem;
  margin: -0.48rem auto 0;
  border: 2px solid var(--berry);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  content: "";
}

.cart-count {
  position: absolute;
  top: -0.25rem;
  right: -0.2rem;
  display: grid;
  min-width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--plum);
  font-size: 0.72rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 0.2rem 0;
  background: var(--berry);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  min-height: calc(100vh - 7.5rem);
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem) 2rem;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  right: max(1rem, 4vw);
  bottom: clamp(0.5rem, 4vw, 3rem);
  color: rgba(169, 133, 34, 0.08);
  content: "SM";
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(8rem, 22vw, 21rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.75;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
}

h1 {
  max-width: 44rem;
  margin-bottom: 1.2rem;
  font-size: clamp(3.25rem, 8vw, 6.8rem);
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.hero-copy p:not(.eyebrow),
.section-heading,
.experience-copy p,
.contact-section p,
.promo-band p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.3rem 0 1.55rem;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(169, 133, 34, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--berry);
  padding: 0.48rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-tags span::before {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0;
}

.primary-button,
.secondary-button,
.promo-card a,
.checkout-button,
.contact-form button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.primary-button,
.checkout-button,
.contact-form button {
  border: 0;
  background: linear-gradient(135deg, var(--berry), var(--plum));
  color: var(--white);
  padding: 0.9rem 1.25rem;
  box-shadow: 0 18px 34px rgba(167, 98, 107, 0.26);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.secondary-button {
  border: 1px solid rgba(169, 133, 34, 0.58);
  background: rgba(255, 255, 255, 0.82);
  color: var(--berry);
  padding: 0.86rem 1.2rem;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible,
.checkout-button:hover,
.checkout-button:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: translateY(-0.12rem);
}

.primary-button:hover,
.primary-button:focus-visible,
.checkout-button:hover,
.checkout-button:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible {
  box-shadow: 0 22px 42px rgba(167, 98, 107, 0.32);
}

.secondary-button:hover,
.secondary-button:focus-visible {
  background: rgba(255, 255, 255, 0.92);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.45rem;
  color: var(--berry);
  font-weight: 900;
}

.text-link::after {
  content: "->";
  color: var(--gold);
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(0.18rem);
}

.hero-showcase {
  position: relative;
  min-height: clamp(30rem, 56vw, 43rem);
  isolation: isolate;
}

.hero-showcase::before {
  position: absolute;
  inset: -1.2rem;
  z-index: -1;
  border: 1px solid rgba(169, 133, 34, 0.14);
  border-radius: 8px;
  background:
    repeating-linear-gradient(135deg, rgba(169, 133, 34, 0.055) 0 1px, transparent 1px 1.1rem),
    rgba(255, 255, 255, 0.3);
  content: "";
}

.showcase-label {
  position: absolute;
  top: 1.2rem;
  left: -0.5rem;
  z-index: 7;
  color: rgba(169, 133, 34, 0.88);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: left top;
}

.hero-slider {
  position: relative;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border-radius: 8px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(169, 133, 34, 0.34);
  border-radius: 8px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 5.5rem),
    radial-gradient(circle at 74% 15%, rgba(167, 98, 107, 0.14), transparent 16rem),
    radial-gradient(circle at 28% 22%, rgba(214, 182, 72, 0.16), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 219, 221, 0.86));
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateX(100%);
  transition:
    transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-slide.is-leaving {
  opacity: 0;
  transform: translateX(-100%);
}

.hero-slide.from-left {
  transform: translateX(-100%);
}

.hero-slide.from-left.is-active {
  transform: translateX(0);
}

.hero-slide.to-right {
  transform: translateX(100%);
}

.slide-media {
  position: relative;
  min-height: 20rem;
}

.slide-photo {
  display: grid;
  min-height: clamp(16rem, 27vw, 22rem);
  place-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.slide-photo img {
  display: block;
  width: min(100%, 32rem);
  height: clamp(15rem, 25vw, 21rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 219, 221, 0.32);
  object-fit: contain;
  object-position: center;
  box-shadow: 0 24px 52px rgba(167, 98, 107, 0.16);
  transition: transform 420ms ease;
}

.hero-slide.is-active .slide-photo img {
  transform: translateY(-0.2rem) scale(1.02);
}

.compact {
  position: absolute;
  top: 15%;
  left: 18%;
  width: min(58%, 21rem);
  aspect-ratio: 1;
  border: 0.55rem solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, #f7c1cc 0 34%, transparent 35%),
    radial-gradient(circle at 50% 48%, var(--gold-light) 0 40%, #865f16 41% 43%, transparent 44%),
    linear-gradient(145deg, #f4d6df, #fff8fb);
  box-shadow: inset 0 0 0 0.9rem rgba(255, 255, 255, 0.42), 0 34px 45px rgba(113, 50, 68, 0.18);
}

.compact::after {
  position: absolute;
  inset: 31%;
  border-radius: 50%;
  background: linear-gradient(135deg, #ef8faa, #c85e79);
  content: "";
}

.brush {
  position: absolute;
  right: 15%;
  bottom: 9%;
  width: 4rem;
  height: 19rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #7a5320, var(--gold-light), #805618);
  transform: rotate(42deg);
}

.brush::before {
  position: absolute;
  top: -4.2rem;
  left: -1.35rem;
  width: 6.7rem;
  height: 5.4rem;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(145deg, #3b2028, #96677c 70%, #f2b7c6);
  content: "";
}

.spark,
.spark::after {
  position: absolute;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(245, 217, 137, 0.9);
  content: "";
}

.spark-one {
  top: 18%;
  right: 20%;
}

.spark-two {
  bottom: 30%;
  left: 14%;
}

.lips-set .lipstick {
  position: absolute;
  bottom: 14%;
  width: 5.1rem;
  height: 20rem;
  border-radius: 1.2rem 1.2rem 0.65rem 0.65rem;
  background: linear-gradient(90deg, #682b3d, #cf6d89, #8d344d);
  box-shadow: 0 30px 50px rgba(113, 50, 68, 0.2);
}

.lips-set .lipstick::before {
  position: absolute;
  top: -6.2rem;
  left: 0.8rem;
  width: 3.5rem;
  height: 7rem;
  border-radius: 2rem 2rem 0.4rem 0.4rem;
  background: linear-gradient(135deg, #d66b86, #f1a9b9);
  content: "";
  transform: skewY(-18deg);
}

.lips-set .one {
  left: 24%;
  transform: rotate(-12deg);
}

.lips-set .two {
  left: 42%;
  transform: rotate(11deg) scale(0.9);
}

.gloss {
  position: absolute;
  right: 18%;
  bottom: 18%;
  width: 4.4rem;
  height: 18rem;
  border: 0.22rem solid rgba(255, 255, 255, 0.86);
  border-radius: 2rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), rgba(245, 217, 137, 0.55), rgba(202, 101, 129, 0.35));
  transform: rotate(22deg);
}

.skin-set .serum,
.skin-set .cream,
.skin-set .roller {
  position: absolute;
  bottom: 13%;
  box-shadow: 0 30px 52px rgba(113, 50, 68, 0.18);
}

.serum {
  left: 18%;
  width: 7rem;
  height: 20rem;
  border: 0.2rem solid rgba(255, 255, 255, 0.75);
  border-radius: 2rem;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.48), rgba(240, 164, 183, 0.5));
}

.serum::before {
  position: absolute;
  top: -4rem;
  left: 2.2rem;
  width: 2.5rem;
  height: 5rem;
  border-radius: 0.6rem 0.6rem 0 0;
  background: linear-gradient(90deg, #8c621e, var(--gold-light), #8c621e);
  content: "";
}

.cream {
  left: 42%;
  width: 11rem;
  height: 8rem;
  border-radius: 50% 50% 1.4rem 1.4rem;
  background: linear-gradient(160deg, var(--gold-light), #fff4c9 48%, #dfaeb9 49%);
}

.roller {
  right: 16%;
  width: 3rem;
  height: 17rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #77511b, var(--gold-light), #77511b);
  transform: rotate(35deg);
}

.roller::before {
  position: absolute;
  top: -3.4rem;
  left: -2.2rem;
  width: 7.4rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2a8b8, #fff2f5);
  content: "";
}

.slide-content {
  position: relative;
  z-index: 2;
  max-width: 26rem;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 219, 221, 0.42)),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 40px rgba(167, 98, 107, 0.14);
  backdrop-filter: blur(14px);
}

.slide-content::before {
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-bottom: 0.7rem;
  background: linear-gradient(90deg, var(--gold), transparent);
  content: "";
}

.slide-content span,
.product-info small {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.slide-content h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.slide-content p {
  color: var(--muted);
  line-height: 1.55;
}

.slide-content strong {
  color: var(--berry);
  font-size: 1.5rem;
}

.slider-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  border: 1px solid rgba(199, 155, 58, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--berry);
  font-size: 2rem;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.slider-control:hover,
.slider-control:focus-visible {
  background: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.slider-prev {
  left: 0.8rem;
}

.slider-next {
  right: 0.8rem;
}

.slider-dots {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  z-index: 6;
  display: flex;
  gap: 0.45rem;
}

.slider-dots button {
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: rgba(113, 50, 68, 0.25);
}

.slider-dots button.is-active {
  width: 1.65rem;
  background: var(--gold);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  border: 1px solid rgba(169, 133, 34, 0.28);
  border-radius: 8px;
  background: rgba(169, 133, 34, 0.28);
}

.trust-row div {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.86);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--berry);
  font-weight: 900;
}

.trust-row span {
  margin-top: 0.35rem;
  color: var(--muted);
  line-height: 1.5;
}

.editorial-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(169, 133, 34, 0.26);
  border-radius: 8px;
  background: rgba(169, 133, 34, 0.28);
}

.editorial-strip span {
  position: relative;
  display: grid;
  min-height: 5rem;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 219, 221, 0.7));
  color: var(--berry);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 2.4vw, 2.1rem);
  font-weight: 700;
  text-align: center;
}

.editorial-strip span::after {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  width: 2.5rem;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: translateX(-50%);
}

.section-shell,
.experience-section,
.promo-band,
.launch-section,
.contact-section {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.inline-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.products-heading {
  max-width: 54rem;
}

.category-grid,
.routine-grid,
.social-grid,
.product-grid,
.review-grid {
  display: grid;
  gap: 0.9rem;
}

.launch-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.4rem, 4vw, 4rem);
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(169, 133, 34, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 219, 221, 0.62)),
    var(--white);
  box-shadow: 0 24px 64px rgba(167, 98, 107, 0.12);
}

.launch-media {
  position: relative;
  min-height: 26rem;
  overflow: hidden;
  border: 1px solid rgba(169, 133, 34, 0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--rose-100), var(--white));
}

.launch-media::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(169, 133, 34, 0.46);
  border-radius: 50%;
  background:
    url("assets/logo-sm.svg") center / 62% no-repeat,
    rgba(255, 255, 255, 0.74);
  content: "";
  box-shadow: 0 12px 30px rgba(167, 98, 107, 0.18);
}

.launch-media img,
.category-photo img,
.routine-photo img,
.social-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launch-media img {
  object-position: center;
}

.launch-copy {
  max-width: 45rem;
}

.launch-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0;
}

.launch-notes span {
  border: 1px solid rgba(169, 133, 34, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--berry);
  padding: 0.55rem 0.78rem;
  font-size: 0.8rem;
  font-weight: 900;
}

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

.category-card,
.product-card,
.review-grid article {
  border: 1px solid rgba(169, 133, 34, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(167, 98, 107, 0.1);
}

.category-card {
  position: relative;
  display: grid;
  min-height: 18rem;
  align-content: start;
  padding: 0.75rem 0.75rem 1.05rem;
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.category-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 0.28rem;
  background: linear-gradient(90deg, var(--gold), var(--rose-300), transparent);
  content: "";
}

.category-card::after {
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(169, 133, 34, 0.14);
  border-radius: 50%;
  content: "";
}

.category-card:hover,
.category-card:focus-visible {
  box-shadow: var(--shadow);
  transform: translateY(-0.25rem);
}

.category-photo {
  display: block;
  aspect-ratio: 1.35;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--rose-50), var(--rose-200));
}

.category-photo img {
  transition: transform 420ms ease;
}

.category-card:hover .category-photo img,
.category-card:focus-visible .category-photo img {
  transform: scale(1.045);
}

.category-icon {
  position: relative;
  display: grid;
  z-index: 2;
  width: 3.25rem;
  height: 3.25rem;
  margin: -1.75rem 0 0.85rem 0.6rem;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose-100), var(--rose-50));
  box-shadow: inset 0 0 0 1px rgba(169, 133, 34, 0.28);
}

.face-icon::before,
.eyes-icon::before,
.lips-icon::before,
.skin-icon::before {
  position: absolute;
  content: "";
}

.face-icon::before {
  width: 1.5rem;
  height: 1.5rem;
  border: 0.24rem solid var(--gold);
  border-radius: 50%;
}

.eyes-icon::before {
  width: 1.85rem;
  height: 0.85rem;
  border: 0.2rem solid var(--berry);
  border-radius: 50%;
}

.lips-icon::before {
  width: 2rem;
  height: 0.95rem;
  border-radius: 50% 50% 46% 46%;
  background: linear-gradient(180deg, var(--rose-200), var(--rose-500));
}

.skin-icon::before {
  width: 1.25rem;
  height: 2rem;
  border-radius: 0.65rem 0.65rem 1rem 1rem;
  background: linear-gradient(145deg, var(--gold-light), var(--rose-300));
}

.category-card strong {
  display: block;
  margin: 0 0.45rem 0.55rem;
  color: var(--plum);
  font-size: 1.35rem;
}

.category-card small {
  margin-inline: 0.45rem;
  color: var(--muted);
  line-height: 1.55;
}

.promo-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 24rem);
  align-items: center;
  gap: 2rem;
  margin: 0 clamp(1rem, 5vw, 5rem);
  border-radius: 8px;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 1.35rem),
    radial-gradient(circle at 82% 12%, rgba(214, 182, 72, 0.18), transparent 18rem),
    radial-gradient(circle at 14% 20%, rgba(255, 219, 221, 0.18), transparent 20rem),
    linear-gradient(135deg, rgba(167, 98, 107, 0.96), rgba(74, 37, 43, 0.98));
  color: var(--white);
  overflow: hidden;
}

.promo-band::after {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: rgba(214, 182, 72, 0.14);
  content: "SM";
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 700;
  line-height: 0.8;
}

.promo-band h2,
.promo-band p {
  color: var(--white);
}

.promo-band .eyebrow,
.promo-card span {
  color: var(--gold-light);
}

.promo-card {
  display: grid;
  min-height: 18rem;
  place-items: center;
  border: 1px solid rgba(214, 182, 72, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
}

.promo-card strong {
  color: var(--gold-light);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(5rem, 10vw, 8rem);
  line-height: 0.78;
}

.promo-card small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.promo-card a {
  border: 1px solid rgba(245, 217, 137, 0.55);
  color: var(--white);
  padding: 0.8rem 1.15rem;
}

.promo-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.promo-perks span {
  border: 1px solid rgba(214, 182, 72, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  padding: 0.5rem 0.72rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.routine-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

.routine-section .inline-heading > p {
  max-width: 24rem;
  color: var(--muted);
  line-height: 1.6;
}

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

.routine-card {
  display: grid;
  grid-template-columns: minmax(6.2rem, 0.42fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  border: 1px solid rgba(169, 133, 34, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.75rem;
  box-shadow: 0 16px 42px rgba(167, 98, 107, 0.08);
}

.routine-photo {
  aspect-ratio: 0.95;
  overflow: hidden;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--rose-100), var(--white));
}

.routine-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.routine-card h3 {
  margin: 0.3rem 0 0.35rem;
  color: var(--plum);
  font-size: 1.08rem;
}

.routine-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card:hover {
  border-color: rgba(169, 133, 34, 0.42);
  box-shadow: 0 24px 64px rgba(167, 98, 107, 0.18);
  transform: translateY(-0.22rem);
}

.product-card[data-badge]::before {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 3;
  border: 1px solid rgba(214, 182, 72, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--berry);
  content: attr(data-badge);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.34rem 0.52rem;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.featured-product {
  border-color: rgba(169, 133, 34, 0.52);
  box-shadow: 0 24px 60px rgba(167, 98, 107, 0.14);
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 65% 20%, rgba(214, 182, 72, 0.22), transparent 11rem),
    linear-gradient(145deg, var(--white), var(--rose-100));
}

.product-visual::before {
  position: absolute;
  inset: auto 16% 1.4rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(167, 98, 107, 0.14);
  filter: blur(8px);
  content: "";
}

.product-photo {
  min-height: 0;
  aspect-ratio: 1.12;
  background: linear-gradient(145deg, var(--rose-50), var(--rose-200));
}

.product-photo::before {
  display: none;
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.035);
}

.product-photo-featured {
  aspect-ratio: 1.12;
}

.product-photo-featured img {
  object-position: center;
}

.product-visual span,
.product-visual span::before,
.product-visual span::after {
  position: absolute;
  content: "";
}

.product-blush span {
  width: 9rem;
  height: 9rem;
  border: 0.55rem solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle, #f0a0b3 0 45%, #f7d8e0 46%);
}

.product-mascara span {
  width: 2.3rem;
  height: 14rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--plum), #79445a, var(--plum));
  transform: rotate(-12deg);
}

.product-mascara span::before {
  top: -3rem;
  left: -1.2rem;
  width: 4.8rem;
  height: 3.3rem;
  border-radius: 50%;
  background: repeating-linear-gradient(90deg, var(--berry) 0 0.22rem, #f4b1c1 0.24rem 0.48rem);
}

.product-gloss span {
  width: 4.2rem;
  height: 13rem;
  border: 0.22rem solid rgba(255, 255, 255, 0.86);
  border-radius: 1.6rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.58), rgba(231, 116, 145, 0.42));
  transform: rotate(13deg);
}

.product-gloss span::before {
  top: -2.6rem;
  left: 1rem;
  width: 2rem;
  height: 3.4rem;
  border-radius: 0.55rem;
  background: linear-gradient(90deg, #7a5318, var(--gold-light), #7a5318);
}

.product-serum span {
  width: 5rem;
  height: 13rem;
  border: 0.18rem solid rgba(255, 255, 255, 0.82);
  border-radius: 1.4rem;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.62), rgba(230, 159, 177, 0.42));
}

.product-serum span::before {
  top: -3.2rem;
  left: 1.5rem;
  width: 2rem;
  height: 4rem;
  border-radius: 0.5rem 0.5rem 0 0;
  background: linear-gradient(90deg, #7d551a, var(--gold-light), #7d551a);
}

.product-powder span {
  width: 9.7rem;
  height: 6.3rem;
  border-radius: 4rem 4rem 1.2rem 1.2rem;
  background: linear-gradient(145deg, var(--gold-light), #fff4c7 42%, #d992a4 43%);
}

.product-palette span {
  width: 12rem;
  height: 8rem;
  border: 0.35rem solid var(--gold);
  border-radius: 1rem;
  background:
    radial-gradient(circle at 22% 35%, #d98098 0 12%, transparent 13%),
    radial-gradient(circle at 50% 35%, #c79b3a 0 12%, transparent 13%),
    radial-gradient(circle at 78% 35%, #713244 0 12%, transparent 13%),
    radial-gradient(circle at 35% 70%, #f1b7c5 0 12%, transparent 13%),
    radial-gradient(circle at 66% 70%, #a7656e 0 12%, transparent 13%),
    #fff8fb;
}

.product-info {
  padding: 0.85rem;
}

.product-info h3 {
  margin: 0.24rem 0 0.32rem;
  color: var(--plum);
  font-size: 1rem;
  line-height: 1.18;
}

.product-info p {
  display: -webkit-box;
  min-height: 2.6rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.product-footer strong {
  color: var(--berry);
  font-size: 0.96rem;
}

.product-footer button {
  border: 0;
  border-radius: 999px;
  background: #fbe1f2;
  color: var(--berry);
  padding: 0.52rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.product-footer button:hover,
.product-footer button:focus-visible {
  background: var(--berry);
  color: var(--white);
  transform: translateY(-0.08rem);
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.experience-media {
  display: grid;
  min-height: 32rem;
  place-items: center;
  border-radius: 8px;
  background:
    radial-gradient(circle at 44% 40%, rgba(214, 182, 72, 0.22), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 219, 221, 0.88));
  box-shadow: var(--shadow);
}

.mirror {
  position: relative;
  width: min(72%, 21rem);
  aspect-ratio: 0.72;
  border: 0.75rem solid var(--gold);
  border-radius: 50% 50% 44% 44%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.75), rgba(239, 175, 190, 0.8));
}

.mirror::after {
  position: absolute;
  right: 14%;
  bottom: -7rem;
  width: 2rem;
  height: 8rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #7d551a, var(--gold-light), #7d551a);
  content: "";
}

.mirror span {
  position: absolute;
  inset: 19%;
  border-radius: 50%;
  background:
    linear-gradient(120deg, transparent 0 45%, rgba(255, 255, 255, 0.55) 46% 52%, transparent 53%),
    rgba(255, 255, 255, 0.18);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.mini-stats div {
  padding: 1rem;
  border: 1px solid rgba(169, 133, 34, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.mini-stats strong,
.mini-stats span {
  display: block;
}

.mini-stats strong {
  color: var(--berry);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 0.9;
}

.mini-stats span {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

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

.review-grid article {
  position: relative;
  padding: 1.25rem;
  overflow: hidden;
}

.review-grid article::before {
  position: absolute;
  top: -0.5rem;
  right: 1rem;
  color: rgba(169, 133, 34, 0.14);
  content: "\"";
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.review-grid strong {
  display: block;
  color: var(--plum);
  font-size: 1.15rem;
}

.review-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.review-grid span {
  color: var(--gold);
  font-weight: 900;
}

.social-section {
  padding-top: clamp(2rem, 5vw, 4rem);
}

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

.social-grid a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(169, 133, 34, 0.24);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--rose-100), var(--white));
  box-shadow: 0 16px 42px rgba(167, 98, 107, 0.1);
}

.social-grid a::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(58, 32, 36, 0.58));
  content: "";
}

.social-grid img {
  transition: transform 420ms ease;
}

.social-grid a:hover img,
.social-grid a:focus-visible img {
  transform: scale(1.045);
}

.social-grid span {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
  line-height: 1.25;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 30rem);
  gap: 2rem;
  align-items: start;
  margin: 0 clamp(1rem, 5vw, 5rem) clamp(3rem, 6vw, 5rem);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 219, 221, 0.42), transparent 18rem),
    linear-gradient(135deg, rgba(255, 219, 221, 0.9), rgba(255, 255, 255, 0.98));
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--berry);
  font-weight: 900;
}

.contact-form input {
  width: 100%;
  border: 1px solid rgba(169, 133, 34, 0.4);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  padding: 0.9rem 1rem;
  outline: 0;
}

.contact-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 155, 58, 0.18);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  justify-content: flex-end;
  background: rgba(33, 21, 26, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  width: min(100%, 25rem);
  min-height: 100%;
  padding: 1rem;
  background: var(--rose-50);
  box-shadow: -20px 0 60px rgba(33, 21, 26, 0.16);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-total,
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-header {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(199, 155, 58, 0.28);
}

.cart-header span,
.cart-total span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
}

.cart-header strong {
  color: var(--plum);
}

.cart-close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--berry);
  font-size: 1.6rem;
}

.cart-items {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 0;
}

.cart-item {
  border: 1px solid rgba(199, 155, 58, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 0.9rem;
}

.cart-item strong {
  display: block;
  color: var(--plum);
  font-size: 0.95rem;
}

.cart-item span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-item button {
  border: 0;
  border-radius: 50%;
  background: var(--rose-100);
  color: var(--berry);
  width: 2rem;
  height: 2rem;
  font-weight: 900;
}

.empty-cart {
  color: var(--muted);
}

.cart-total {
  border-top: 1px solid rgba(199, 155, 58, 0.28);
  padding: 1rem 0;
}

.cart-total strong {
  color: var(--berry);
  font-size: 1.35rem;
}

.checkout-button {
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1rem, 3vw, 1.6rem);
  z-index: 45;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 182, 72, 0.52);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--berry), var(--plum));
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 0.85rem 1rem;
  box-shadow: 0 18px 42px rgba(74, 37, 43, 0.22);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.whatsapp-float::before {
  display: none;
  width: 1.45rem;
  height: 1.45rem;
  margin-right: 0.5rem;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--berry);
  content: "WA";
  font-size: 0.58rem;
  font-weight: 900;
}

.whatsapp-float img {
  width: 1.45rem;
  height: 1.45rem;
  margin-right: 0.5rem;
  object-fit: contain;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  box-shadow: 0 22px 48px rgba(74, 37, 43, 0.28);
  transform: translateY(-0.12rem);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: var(--plum);
  color: var(--cream);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 250, 242, 0.75);
}

.site-footer a {
  color: var(--gold-light);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}

@media (max-width: 1280px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: grid;
    justify-self: center;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(199, 155, 58, 0.28);
    border-radius: 8px;
    background: rgba(255, 247, 250, 0.98);
    padding: 0.75rem;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 0.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 58rem;
  }

  .hero-showcase {
    min-height: 34rem;
  }

  .launch-media {
    min-height: 24rem;
  }

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

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

  .inline-heading,
  .launch-section,
  .promo-band,
  .experience-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .inline-heading {
    align-items: start;
  }

}

@media (max-width: 720px) {
  .announcement {
    justify-content: start;
    padding-inline: 0;
    white-space: nowrap;
  }

  .announcement-track {
    width: max-content;
    min-width: max-content;
    justify-content: flex-start;
    animation: announcement-marquee 18s linear infinite;
  }

  .announcement-group,
  .announcement-group[aria-hidden="true"] {
    display: flex;
    flex: 0 0 auto;
    gap: 2.5rem;
    padding-right: 2.5rem;
  }

  .announcement span {
    flex: 0 0 auto;
  }

  .site-header {
    gap: 0.7rem;
    padding-inline: 1rem;
  }

  .brand span,
  .ghost-link {
    display: none;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero::before,
  .showcase-label {
    display: none;
  }

  .hero-tags {
    margin-bottom: 1rem;
  }

  .hero-showcase {
    min-height: 31rem;
  }

  .slide-media {
    min-height: 18rem;
  }

  .slide-photo {
    min-height: 13rem;
    padding: 0.75rem;
  }

  .slide-photo img {
    height: 13rem;
  }

  .slide-content {
    padding: 1rem;
  }

  .slider-control {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.6rem;
  }

  .inline-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .routine-section .inline-heading > p {
    max-width: none;
  }

  .trust-row,
  .editorial-strip,
  .category-grid,
  .review-grid,
  .routine-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .launch-section {
    margin-inline: 1rem;
    padding: 1rem;
  }

  .launch-media {
    min-height: 19rem;
  }

  .launch-media::after {
    width: 3.9rem;
    height: 3.9rem;
  }

  .category-card {
    min-height: auto;
  }

  .category-photo {
    aspect-ratio: 1.55;
  }

  .routine-card {
    grid-template-columns: minmax(5.6rem, 0.38fr) minmax(0, 1fr);
  }

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

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

  .promo-band,
  .contact-section {
    margin-inline: 1rem;
  }

  .experience-media {
    min-height: 24rem;
  }

  .product-card[data-badge]::before {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.58rem;
    padding: 0.28rem 0.42rem;
  }

  .product-photo {
    aspect-ratio: 1;
  }

  .product-photo-featured {
    aspect-ratio: 1;
  }

  .product-info {
    padding: 0.68rem;
  }

  .product-info h3 {
    font-size: 0.92rem;
  }

  .product-info p {
    min-height: 2.35rem;
    font-size: 0.76rem;
    line-height: 1.5;
  }

  .product-footer {
    gap: 0.4rem;
  }

  .product-footer strong {
    font-size: 0.86rem;
  }

  .product-footer button {
    padding: 0.45rem 0.55rem;
    font-size: 0.76rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 2.95rem;
    min-height: 2.75rem;
    padding: 0;
    font-size: 0;
  }

  .whatsapp-float img {
    margin-right: 0;
  }
}

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