:root {
  --purple: #5b4bb7;
  --purple-dark: #33256f;
  --purple-soft: #f2eeff;
  --lilac: #dcd4ff;
  --white: #ffffff;
  --text: #2f295a;
  --muted: #8f8aa8;
  --peach: #f6a69b;
  --cream: #faf8ff;
  --pink-soft: #f7dce8;
  --success: #21b83b;
  --success-dark: #15952b;
  --star: #f3c621;
  --pix-bg: #f0fff4;
  --pix-border: #bfeccb;
  --border: rgba(91, 75, 183, 0.18);
  --container: min(100% - 32px, 1120px);
  --header-height: 68px;
  --shadow-soft: 0 18px 52px rgba(91, 75, 183, 0.14);
  --shadow-card: 0 24px 70px rgba(51, 37, 111, 0.15);
  --shadow-button: 0 15px 32px rgba(91, 75, 183, 0.26);
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open,
body.review-lightbox-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Header */
.topbar {
  display: grid;
  min-height: 32px;
  place-items: center;
  padding: 6px 16px;
  color: var(--white);
  background: var(--purple-dark);
}

.topbar p {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 255, 0.78);
  border-bottom: 1px solid rgba(220, 212, 255, 0.56);
  backdrop-filter: blur(18px);
  animation: header-drop 520ms ease both;
}

.header-nav {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  min-height: var(--header-height);
}

.icon-button {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  color: var(--purple-dark);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color var(--transition),
    transform var(--transition);
}

.icon-button:active {
  transform: scale(0.94);
}

.menu-button {
  justify-self: start;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin-block: 3px;
  background: currentColor;
  border-radius: 999px;
}

.menu-button span:nth-child(2) {
  width: 17px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(146px, 43vw, 186px);
  max-height: 56px;
  object-fit: contain;
}

.header-balance {
  width: 48px;
  height: 48px;
}

/* Mobile menu */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(47, 41, 90, 0.24);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(2px);
  transition: opacity 260ms ease;
}

.mobile-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 40;
  width: min(82vw, 340px);
  padding: 18px 18px 24px;
  color: var(--text);
  background:
    radial-gradient(ellipse at 18% 12%, rgba(246, 166, 155, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 238, 255, 0.96));
  border-right: 1px solid rgba(220, 212, 255, 0.72);
  box-shadow: 28px 0 70px rgba(51, 37, 111, 0.18);
  transform: translateX(-104%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0ms linear 320ms;
}

body.menu-open .menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .mobile-menu {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0ms linear 0ms;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
}

.mobile-menu-logo {
  width: 150px;
  max-height: 54px;
  object-fit: contain;
}

.menu-close {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(220, 212, 255, 0.72);
  border-radius: 999px;
  cursor: pointer;
}

.menu-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  display: grid;
  gap: 4px;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 6px;
  color: var(--purple-dark);
  border-bottom: 1px solid rgba(220, 212, 255, 0.45);
  font-size: 1.02rem;
  font-weight: 800;
}

.mobile-menu-nav .mobile-menu-cta {
  justify-content: center;
  min-height: 52px;
  margin-top: 16px;
  padding-inline: 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow-button);
}

/* Hero */
.section-shell {
  position: relative;
  overflow: hidden;
}

.hero {
  isolation: isolate;
  min-height: calc(100svh - var(--header-height) - 32px);
  padding: 24px 0 38px;
  background:
    linear-gradient(180deg, rgba(250, 248, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 54%, rgba(242, 238, 255, 0.88) 100%),
    var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg::before {
  position: absolute;
  inset: -70px -60px auto;
  height: 370px;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(246, 166, 155, 0.14), transparent 42%),
    radial-gradient(ellipse at 78% 28%, rgba(220, 212, 255, 0.74), transparent 50%),
    radial-gradient(ellipse at 44% 88%, rgba(255, 255, 255, 0.96), transparent 62%);
  content: "";
}

.hero-bg-shape {
  position: absolute;
  display: block;
  border-radius: 44% 56% 58% 42% / 52% 44% 56% 48%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(220, 212, 255, 0.34));
  box-shadow: 0 24px 60px rgba(91, 75, 183, 0.08);
  animation: cloud-float 10s ease-in-out infinite;
}

.hero-bg-shape-1 {
  top: 116px;
  right: -92px;
  width: 188px;
  height: 128px;
}

.hero-bg-shape-2 {
  top: 340px;
  left: -108px;
  width: 188px;
  height: 148px;
  animation-delay: -3s;
}

.hero-bg-cloud {
  position: absolute;
  right: -42px;
  bottom: 118px;
  width: 230px;
  height: 92px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 24% 46%, rgba(255, 255, 255, 0.66) 0 34%, transparent 35%),
    radial-gradient(circle at 52% 30%, rgba(255, 255, 255, 0.76) 0 42%, transparent 43%),
    radial-gradient(circle at 78% 52%, rgba(255, 255, 255, 0.58) 0 32%, transparent 33%);
  opacity: 0.7;
  animation: cloud-drift 12s ease-in-out infinite;
}

.hero-inner {
  display: grid;
  gap: 18px;
  align-items: center;
}

.hero-content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 10px;
  padding: 7px 12px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(220, 212, 255, 0.78);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(91, 75, 183, 0.07);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-title {
  max-width: 13ch;
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(2.05rem, 9.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-title em {
  color: var(--purple);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 700;
}

.hero-copy {
  max-width: 31rem;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.hero-media-glow {
  position: absolute;
  inset: 5% 7% 4%;
  border-radius: 34px;
  background:
    linear-gradient(140deg, rgba(91, 75, 183, 0.12), rgba(246, 166, 155, 0.1)),
    radial-gradient(ellipse at 50% 26%, rgba(255, 255, 255, 0.86), transparent 58%);
  filter: blur(1px);
}

.hero-product-card {
  position: relative;
  width: min(100%, 350px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 238, 255, 0.56)),
    var(--purple-soft);
  box-shadow: var(--shadow-card);
}

.hero-product-card::before {
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.hero-product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.01) contrast(1.02);
}

.hero-actions {
  display: grid;
  width: 100%;
  max-width: 420px;
  gap: 8px;
  justify-self: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn:active {
  transform: translateY(2px) scale(0.985);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: var(--shadow-button);
}

.btn-secondary {
  min-height: 42px;
  color: var(--purple-dark);
  background: transparent;
  border: 0;
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: rgba(91, 75, 183, 0.26);
  text-underline-offset: 5px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 7px;
  color: var(--text);
}

.hero-rating span {
  color: var(--peach);
  font-size: 0.92rem;
}

.hero-rating strong {
  color: var(--purple-dark);
  font-size: 0.88rem;
}

.hero-rating p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.future-anchor {
  height: 1px;
}

/* Pre-purchase color and benefit sections */
.color-showcase,
.visual-benefits {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
}

.color-showcase {
  background: linear-gradient(180deg, #ffffff 0%, rgba(242, 238, 255, 0.62) 100%);
}

.visual-benefits {
  background: linear-gradient(180deg, #ffffff 0%, #f2eeff 55%, #ffffff 100%);
}

.prebuy-inner {
  width: var(--container);
  max-width: 1120px;
  margin-inline: auto;
}

.prebuy-heading {
  max-width: 620px;
  margin-bottom: 22px;
}

.prebuy-kicker {
  margin: 0 0 9px;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.prebuy-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(1.95rem, 8.4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: 0;
}

.prebuy-heading p:not(.prebuy-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.color-carousel,
.benefit-carousel {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.color-card,
.benefit-card {
  flex: 0 0 min(82vw, 330px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(91, 75, 183, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(47, 41, 90, 0.09);
  scroll-snap-align: start;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.color-card__media,
.benefit-card__media {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 238, 255, 0.76)),
    var(--purple-soft);
}

.color-card__media {
  aspect-ratio: 4 / 5;
}

.benefit-card__media {
  aspect-ratio: 1 / 1;
}

.color-card__media::after,
.benefit-card__media::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(51, 37, 111, 0.4);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
  content: "Imagem do produto";
}

.benefit-card__media::after {
  content: "Imagem do benefício";
}

.color-card__media:has(img:not(.is-missing))::after,
.benefit-card__media:has(img:not(.is-missing))::after {
  opacity: 0;
}

.color-card__media img,
.benefit-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.color-card__media img.is-missing,
.benefit-card__media img.is-missing {
  opacity: 0;
}

.color-card__body,
.benefit-card__body {
  padding: 15px;
}

.color-card h3,
.benefit-card h3 {
  margin: 0 0 6px;
  color: var(--purple-dark);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.color-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 13px;
  padding: 9px 13px;
  color: var(--purple);
  background: rgba(242, 238, 255, 0.72);
  border: 1px solid rgba(91, 75, 183, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    background-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

/* Mother's Day emotional section */
.mothers-day-section {
  position: relative;
  overflow: hidden;
  padding: 52px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f1ff 45%, #fff7fa 100%);
  isolation: isolate;
}

.mothers-day-section__inner {
  display: grid;
  gap: 26px;
  max-width: 1120px;
  margin: 0 auto;
}

.mothers-day-blob {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 44% 56% 58% 42% / 52% 44% 56% 48%;
  background: linear-gradient(135deg, rgba(247, 220, 232, 0.52), rgba(220, 212, 255, 0.36));
  filter: blur(1px);
  opacity: 0.62;
  animation: cloud-float 11s ease-in-out infinite;
}

.mothers-day-blob-1 {
  top: 42px;
  right: -72px;
  width: 174px;
  height: 128px;
}

.mothers-day-blob-2 {
  left: -82px;
  bottom: 90px;
  width: 190px;
  height: 142px;
  animation-delay: -4s;
}

.mothers-day-copy {
  position: relative;
  text-align: left;
}

.mothers-day-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 14px;
  padding: 8px 14px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(91, 75, 183, 0.14);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mothers-day-section h2 {
  max-width: 12ch;
  margin: 0 0 12px;
  color: var(--purple-dark);
  font-size: clamp(1.88rem, 8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.mothers-day-section h2 em {
  color: var(--purple);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
}

.mothers-day-section p {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.7;
}

.mothers-day-subtitle {
  max-width: 34rem;
  margin: 0 0 10px;
  color: var(--purple-dark);
  font-weight: 700;
}

.mothers-day-text {
  max-width: 36rem;
  margin: 0;
  color: var(--muted);
}

.mothers-day-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mothers-day-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 9px 12px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(91, 75, 183, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(47, 41, 90, 0.06);
  font-size: 0.75rem;
  font-weight: 800;
  animation: cloud-drift 10s ease-in-out infinite;
}

.mothers-day-chip:nth-child(2) {
  animation-delay: -3s;
}

.mothers-day-chip:nth-child(3) {
  animation-delay: -6s;
}

.mothers-day-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 13px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(91, 75, 183, 0.2);
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.mothers-day-visual {
  display: grid;
  gap: 18px;
}

.mothers-day-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(247, 220, 232, 0.45)),
    var(--purple-soft);
  box-shadow: 0 24px 60px rgba(47, 41, 90, 0.12);
}

.mothers-day-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(91, 75, 183, 0.08));
  content: "";
  pointer-events: none;
}

.mothers-day-media::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
  color: rgba(51, 37, 111, 0.44);
  content: "Imagem Dia das Mães";
  font-size: 0.86rem;
  font-weight: 800;
  text-align: center;
}

.mothers-day-media:has(img:not(.is-missing))::after {
  opacity: 0;
}

.mothers-day-media img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 900ms ease;
}

.mothers-day-media img.is-missing {
  opacity: 0;
}

.mothers-day-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mothers-day-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(91, 75, 183, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(47, 41, 90, 0.08);
  backdrop-filter: blur(12px);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.mothers-day-card h3 {
  margin: 0 0 6px;
  color: var(--purple-dark);
  font-size: 1rem;
  font-weight: 800;
}

.mothers-day-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Product purchase section */
.product-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 0 64px;
  background:
    linear-gradient(180deg, rgba(242, 238, 255, 0.88), rgba(250, 248, 255, 0.98) 46%, rgba(255, 255, 255, 0.86)),
    var(--cream);
}

.product-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 12% 12%, rgba(246, 166, 155, 0.14), transparent 34%),
    radial-gradient(ellipse at 90% 28%, rgba(220, 212, 255, 0.66), transparent 42%);
  pointer-events: none;
}

.section-heading {
  display: grid;
  justify-items: center;
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.section-heading h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(2rem, 8.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-heading > p:not(.section-kicker) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.58;
}

.product-card {
  display: grid;
  gap: 22px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(220, 212, 255, 0.66);
  border-radius: 30px;
  box-shadow: 0 26px 76px rgba(51, 37, 111, 0.12);
  backdrop-filter: blur(16px);
}

.product-gallery {
  display: grid;
  gap: 10px;
}

.gallery-main {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(242, 238, 255, 0.78)),
    var(--purple-soft);
  border: 1px solid rgba(220, 212, 255, 0.72);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
}

.gallery-main::after,
.gallery-thumb::after,
.color-swatch::after,
.payment-flag::after,
.payment-icon::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(51, 37, 111, 0.38);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  content: attr(data-fallback);
  opacity: 0;
  pointer-events: none;
}

.gallery-main::after {
  content: "Imagem do produto";
}

.gallery-main:has(.is-missing)::after,
.gallery-thumb:has(.is-missing)::after,
.color-swatch:has(.is-missing)::after,
.payment-flag:has(.is-missing)::after,
.payment-icon:has(.is-missing)::after,
.has-missing::after {
  opacity: 1;
}

.gallery-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 260ms ease;
}

.gallery-main-image.is-changing {
  opacity: 0.18;
  transform: scale(0.985);
}

.is-missing {
  opacity: 0;
}

.gallery-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.gallery-thumbs {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 3px 1px 8px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

.gallery-thumb {
  position: relative;
  flex: 0 0 68px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  background: var(--purple-soft);
  border: 2px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb.is-selected {
  border-color: var(--purple);
  box-shadow: 0 12px 26px rgba(91, 75, 183, 0.18);
}

.gallery-thumb:active,
.color-swatch:active,
.size-option:active {
  transform: scale(0.96);
}

.product-info {
  display: grid;
  gap: 18px;
  padding: 0 2px 6px;
}

.product-meta {
  margin: 0;
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-title-row h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: 1.44rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.verified-badge {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  place-items: center;
  color: var(--white);
  background: #3d8bfd;
  border-radius: 999px;
}

.verified-badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.product-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}

.product-rating span {
  color: #f7b731;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.product-rating strong {
  color: var(--purple-dark);
  font-size: 0.9rem;
}

.product-rating p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.price-block {
  display: grid;
  gap: 4px;
  padding-top: 2px;
}

.product-price {
  margin: 0;
  color: var(--success);
  font-size: 2.26rem;
  font-weight: 800;
  line-height: 1;
}

.installments {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
}

.payment-more {
  width: fit-content;
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(91, 75, 183, 0.24);
  text-underline-offset: 4px;
}

.pix-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  background: linear-gradient(135deg, rgba(33, 184, 59, 0.1), rgba(255, 255, 255, 0.76));
  border: 1px solid rgba(33, 184, 59, 0.16);
  border-radius: 18px;
}

.pix-card strong {
  display: block;
  color: var(--success-dark);
  font-size: 1rem;
}

.pix-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.pix-card > span {
  flex: 0 0 auto;
  padding: 7px 9px;
  color: var(--success-dark);
  background: rgba(33, 184, 59, 0.12);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
}

.option-group {
  display: grid;
  gap: 10px;
}

.option-label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: var(--purple-dark);
  font-size: 0.84rem;
}

.option-label span {
  font-weight: 800;
}

.option-label strong {
  font-weight: 800;
}

.color-options {
  display: flex;
  gap: 10px;
}

.color-swatch {
  position: relative;
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--purple-soft);
  border: 2px solid rgba(220, 212, 255, 0.78);
  border-radius: 18px;
  cursor: pointer;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.color-swatch img,
.swatch-fallback {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.color-swatch img:not(.is-missing) + .swatch-fallback {
  opacity: 0;
}

.swatch-white {
  background: #f7f5ef;
}

.swatch-pink {
  background: #f5c9d6;
}

.swatch-gray {
  background: #c9c9cc;
}

.color-swatch.is-selected {
  border-color: var(--purple);
  box-shadow: 0 12px 26px rgba(91, 75, 183, 0.18);
}

.size-options {
  display: grid;
  gap: 9px;
}

.size-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 10px;
  align-items: center;
  min-height: 64px;
  padding: 12px 13px;
  color: var(--text);
  background: rgba(250, 248, 255, 0.76);
  border: 1px solid rgba(220, 212, 255, 0.8);
  border-radius: 18px;
  cursor: pointer;
  text-align: left;
  transition:
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.size-option span {
  color: var(--purple-dark);
  font-size: 0.96rem;
  font-weight: 800;
}

.size-option small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.size-option strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--purple-dark);
  font-size: 0.92rem;
}

.size-option.is-selected {
  background: rgba(242, 238, 255, 0.92);
  border-color: var(--purple);
  box-shadow: 0 12px 28px rgba(91, 75, 183, 0.14);
}

.checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  width: 100%;
  gap: 9px;
  padding: 15px 22px;
  color: var(--white);
  background: var(--success);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(33, 184, 59, 0.24);
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    background-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.checkout-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.checkout-button:active {
  transform: translateY(2px) scale(0.985);
}

.payment-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(250, 248, 255, 0.72);
  border: 1px solid rgba(220, 212, 255, 0.72);
  border-radius: 20px;
}

.payment-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.payment-icon {
  position: relative;
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(220, 212, 255, 0.72);
  border-radius: 14px;
}

.payment-icon::after {
  content: "card";
}

.payment-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.payment-card-top strong {
  display: block;
  color: var(--purple-dark);
  font-size: 0.92rem;
}

.payment-card-top p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.payment-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.payment-flag {
  position: relative;
  display: grid;
  min-width: 48px;
  min-height: 29px;
  place-items: center;
  overflow: hidden;
  padding: 4px 8px;
  background: var(--white);
  border: 1px solid rgba(220, 212, 255, 0.72);
  border-radius: 9px;
}

.payment-flag img {
  max-width: 40px;
  max-height: 18px;
  object-fit: contain;
}

.payment-flag b {
  display: none;
  color: rgba(51, 37, 111, 0.54);
  font-size: 0.62rem;
}

.payment-flag img.is-missing + b {
  display: block;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(47, 41, 90, 0.48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(8px);
  transition:
    opacity 240ms ease,
    visibility 0ms linear 240ms;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 240ms ease,
    visibility 0ms linear 0ms;
}

.lightbox img {
  width: min(100%, 760px);
  max-height: 82vh;
  object-fit: contain;
  background: var(--purple-soft);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(19, 13, 48, 0.34);
  transform: scale(0.96);
  transition: transform 240ms ease;
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(220, 212, 255, 0.72);
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.lightbox-close span:first-child {
  transform: rotate(45deg);
}

.lightbox-close span:last-child {
  transform: rotate(-45deg);
}

/* Scroll-triggered entrance animations */
[data-animate] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.hero-media[data-animate] {
  transform: translateY(16px) scale(0.975);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero-content [data-animate]:nth-child(2) {
  transition-delay: 80ms;
}

.hero-content [data-animate]:nth-child(3) {
  transition-delay: 150ms;
}

.hero-actions {
  transition-delay: 110ms;
}

.hero-rating {
  transition-delay: 160ms;
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cloud-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-9px, 11px, 0) rotate(3deg);
  }
}

@keyframes cloud-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-16px, -8px, 0);
  }
}

@media (hover: hover) {
  .icon-button:hover,
  .menu-close:hover {
    background: rgba(255, 255, 255, 0.68);
  }

  .mobile-menu-nav a:hover {
    color: var(--purple);
  }

  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(51, 37, 111, 0.27);
  }

  .btn-secondary:hover {
    color: var(--purple);
    text-decoration-color: rgba(91, 75, 183, 0.5);
  }

  .gallery-thumb:hover,
  .color-swatch:hover,
  .size-option:hover {
    transform: translateY(-2px);
    border-color: rgba(91, 75, 183, 0.44);
  }

  .checkout-button:hover {
    background: var(--success-dark);
    box-shadow: 0 18px 38px rgba(21, 149, 43, 0.27);
    transform: translateY(-2px);
  }

  .payment-more:hover {
    color: var(--purple-dark);
    text-decoration-color: rgba(51, 37, 111, 0.42);
  }
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 768px) {
  :root {
    --header-height: 78px;
    --container: min(100% - 56px, 1160px);
  }

  .topbar {
    min-height: 38px;
  }

  .topbar p {
    font-size: 0.86rem;
  }

  .brand-logo {
    width: clamp(178px, 16vw, 230px);
    max-height: 66px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height) - 38px);
    padding: 58px 0 68px;
  }

  .hero-bg::before {
    inset: -120px -140px auto;
    height: 620px;
  }

  .hero-bg-shape-1 {
    top: 130px;
    right: 4vw;
    width: 310px;
    height: 210px;
  }

  .hero-bg-shape-2 {
    top: auto;
    bottom: 40px;
    left: -80px;
    width: 290px;
    height: 220px;
  }

  .hero-bg-cloud {
    right: 25vw;
    bottom: 42px;
    width: 360px;
    height: 130px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(390px, 1.14fr);
    grid-template-areas:
      "content media"
      "actions media"
      "rating media";
    gap: 18px 56px;
  }

  .hero-content {
    grid-area: content;
    justify-items: start;
    text-align: left;
  }

  .hero-media {
    grid-area: media;
    margin-top: 0;
  }

  .hero-product-card {
    width: min(100%, 590px);
    border-radius: 38px;
  }

  .hero-product-card::before {
    inset: 14px;
    border-radius: 27px;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(4.1rem, 6.4vw, 6.35rem);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 31rem;
    margin-top: 18px;
    font-size: 1.08rem;
  }

  .hero-actions {
    grid-area: actions;
    grid-template-columns: auto auto;
    align-items: center;
    width: auto;
    max-width: none;
    justify-self: start;
    gap: 14px;
    margin-top: 6px;
  }

  .btn-primary {
    min-width: 220px;
  }

  .btn-secondary {
    min-height: 46px;
    padding-inline: 12px;
  }

  .hero-rating {
    grid-area: rating;
    justify-self: start;
    margin-top: 2px;
  }

  .product-section {
    padding: 86px 0 94px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    max-width: none;
    font-size: clamp(3rem, 4.4vw, 4.3rem);
  }

  .section-heading > p:not(.section-kicker) {
    font-size: 1.05rem;
  }

  .product-card {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 34px;
    align-items: start;
    padding: 22px;
    border-radius: 34px;
  }

  .gallery-main {
    border-radius: 28px;
  }

  .gallery-thumb {
    flex-basis: 78px;
    border-radius: 18px;
  }

  .product-info {
    gap: 19px;
    padding: 8px 4px 6px;
  }

  .product-title-row h3 {
    font-size: 1.86rem;
  }

  .product-price {
    font-size: 2.7rem;
  }

  .size-options {
    grid-template-columns: 1fr 1fr;
  }

  .checkout-button {
    min-height: 62px;
  }
}

/* Shopify-style purchase section refinement */
.product-section {
  padding: 34px 0 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 248, 255, 0.96)),
    var(--cream);
}

.product-section-label {
  margin: 0 0 12px;
  color: var(--purple-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.product-layout {
  display: grid;
  gap: 18px;
}

.product-gallery {
  display: grid;
  gap: 9px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  border: 1px solid rgba(220, 212, 255, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(242, 238, 255, 0.55)),
    var(--purple-soft);
  box-shadow: 0 10px 24px rgba(51, 37, 111, 0.08);
  touch-action: pan-y;
  user-select: none;
}

.gallery-main::after {
  font-size: 0.76rem;
  content: "Imagem do produto";
}

.gallery-main-image {
  border-radius: inherit;
  pointer-events: none;
}

.gallery-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 600;
}

.gallery-hint span {
  color: var(--purple-dark);
  font-size: 0.92rem;
}

.gallery-thumbs {
  gap: 8px;
  padding: 4px 1px 10px;
}

.gallery-thumb {
  flex: 0 0 56px;
  border-radius: 10px;
  border: 1px solid rgba(220, 212, 255, 0.7);
  background: var(--white);
  box-shadow: none;
}

.gallery-thumb.is-selected {
  border: 2px solid var(--purple);
  box-shadow: 0 6px 14px rgba(91, 75, 183, 0.14);
}

.product-info {
  gap: 12px;
  padding: 16px 0 0;
  background: transparent;
  border-top: 1px solid rgba(220, 212, 255, 0.42);
}

.product-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-title-row {
  align-items: center;
  gap: 7px;
}

.product-title-row h2,
.product-title-row h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.45rem, 6vw, 1.9rem);
  line-height: 1.22;
  letter-spacing: 0;
}

.verified-badge {
  flex-basis: 18px;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: #0a8cff;
}

.verified-badge svg {
  width: 13px;
  height: 13px;
}

.product-rating {
  gap: 5px;
}

.product-rating span {
  color: #f5bd18;
  font-size: 0.9rem;
}

.product-rating strong,
.product-rating p {
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
}

.price-block {
  gap: 3px;
}

.product-price {
  color: #00a82d;
  font-size: 2rem;
  letter-spacing: 0;
}

.installments {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
}

.installments-icon {
  display: inline-block;
  width: 17px;
  height: 12px;
  border: 2px solid currentColor;
  border-radius: 2px;
  box-shadow: inset 0 4px 0 rgba(17, 24, 39, 0.16);
}

.payment-more {
  display: none;
}

.pix-card {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 10px 11px;
  background: var(--pix-bg, #f0fff4);
  border: 1px solid var(--pix-border, #bfeccb);
  border-radius: 12px;
}

.pix-icon {
  position: relative;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
}

.pix-icon::before {
  width: 18px;
  height: 18px;
  background: #2e2e2e;
  border-radius: 4px;
  content: "";
  transform: rotate(45deg);
}

.pix-icon img {
  position: relative;
  z-index: 1;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
}

.pix-icon img.is-missing {
  display: none;
}

.pix-card strong {
  color: #1f2937;
  font-size: 0.93rem;
}

.pix-card p {
  color: #1f2937;
  font-size: 0.76rem;
  font-weight: 500;
}

.pix-card > span:not(.pix-icon),
.pix-badge {
  align-self: start;
  padding: 4px 6px;
  color: var(--white);
  background: #111827;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 800;
  white-space: nowrap;
}

.option-group {
  gap: 9px;
  padding-top: 8px;
}

.option-label {
  color: var(--text);
  font-size: 0.82rem;
}

.color-options {
  gap: 9px;
}

.color-swatch {
  flex-basis: 52px;
  width: 52px;
  height: 52px;
  border-radius: 9px;
  border: 1px solid rgba(220, 212, 255, 0.8);
  background: var(--white);
}

.color-swatch.is-selected {
  border: 2px solid var(--purple);
  box-shadow: 0 6px 14px rgba(91, 75, 183, 0.14);
}

.size-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.size-option {
  grid-template-columns: 1fr;
  min-height: 78px;
  gap: 2px;
  padding: 10px 11px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(47, 41, 90, 0.18);
  box-shadow: none;
  text-align: center;
}

.size-option span {
  color: #111827;
  font-size: 0.92rem;
}

.size-option small {
  color: #111827;
  font-size: 0.76rem;
  font-weight: 500;
}

.size-option strong {
  grid-row: auto;
  grid-column: auto;
  color: var(--purple-dark);
  font-size: 0.78rem;
  margin-top: 2px;
}

.size-option.is-selected {
  background: rgba(242, 238, 255, 0.86);
  border: 2px solid var(--purple);
  box-shadow: none;
}

.checkout-button {
  min-height: 58px;
  margin-top: 4px;
  border-radius: 26px;
  background: var(--success);
  box-shadow: 0 12px 24px rgba(33, 184, 59, 0.25);
}

.payment-card {
  gap: 10px;
  padding: 13px;
  background: #f7f7f8;
  border: 1px solid rgba(47, 41, 90, 0.06);
  border-radius: 12px;
}

.payment-card-top {
  gap: 9px;
}

.payment-icon {
  flex-basis: 38px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.payment-card-top strong {
  color: #1f2937;
  font-size: 0.88rem;
}

.payment-card-top p {
  color: var(--success-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.payment-flags {
  justify-content: center;
  gap: 8px;
  padding-top: 4px;
}

.payment-flag {
  min-width: 40px;
  min-height: 24px;
  padding: 3px 6px;
  border-radius: 5px;
  background: var(--white);
  border-color: rgba(47, 41, 90, 0.08);
}

.payment-flag img {
  max-width: 32px;
  max-height: 15px;
}

.payment-flag b {
  font-size: 0.55rem;
}

@media (min-width: 768px) {
  .product-section {
    padding: 72px 0 84px;
  }

  .product-section-label {
    margin-bottom: 16px;
    text-align: left;
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 36px;
    align-items: start;
    max-width: 1080px;
    margin-inline: auto;
  }

  .product-info {
    padding-top: 0;
    border-top: 0;
  }

  .gallery-main {
    border-radius: 16px;
  }

  .gallery-thumb {
    flex-basis: 64px;
  }

  .product-title-row h2,
  .product-title-row h3 {
    font-size: 2rem;
  }

  .product-price {
    font-size: 2.34rem;
  }

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

/* Shopify reference polish requested for the purchase CTA */
.installments {
  display: none;
}

.installment-line {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #222;
  font-size: 0.9rem;
  line-height: 1.25;
}

.installment-icon {
  display: inline-flex;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #222;
}

.installment-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.installment-line strong {
  font-weight: 800;
}

.pix-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 10px;
  padding: 10px 12px;
  background: #f6f6f6;
  border: 0;
  border-radius: 12px;
}

.pix-icon {
  display: inline-flex;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: #222;
}

.pix-icon::before {
  display: none;
}

.pix-icon svg {
  display: block;
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.pix-content {
  min-width: 0;
}

.pix-main {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #111;
  font-size: 0.88rem;
  line-height: 1.15;
}

.pix-price {
  color: #111;
  font-weight: 800;
}

.pix-badge {
  display: inline-flex;
  align-items: center;
  min-height: 14px;
  padding: 2px 6px;
  color: #fff;
  background: #111;
  border-radius: 999px;
  font-size: 0.56rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.pix-saving {
  margin: 2px 0 0;
  color: #333;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.25;
}

.color-swatch {
  flex-basis: 48px;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
}

.color-swatch.is-selected {
  border: 2px solid #d86b8c;
  box-shadow: 0 4px 10px rgba(216, 107, 140, 0.18);
}

.option-group {
  padding-top: 10px;
}

.size-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.size-option {
  min-height: 44px;
  padding: 11px 14px;
  color: #111;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: left;
}

.size-option.is-selected,
.size-option.is-active {
  color: #d86b8c;
  background: #fff;
  border-color: #d86b8c;
  box-shadow: 0 0 0 1px rgba(216, 107, 140, 0.15);
}

.checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  margin-top: 6px;
  color: #fff;
  background: var(--success);
  border-radius: 28px;
}

.buy-icon,
.buy-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.checkout-button svg {
  fill: none;
}

.payment-card {
  margin-top: 16px;
  overflow: hidden;
  background: #f6f6f6;
  border: 0;
  border-radius: 10px;
}

.payment-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.payment-card__icon,
.payment-card__icon svg {
  display: block;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
}

.payment-card__header p {
  margin: 0;
  color: #222;
  font-size: 0.88rem;
  line-height: 1.2;
}

.payment-card__header strong {
  display: block;
  color: #00bd58;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.payment-flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #fff;
}

.payment-flags svg {
  width: 38px;
  height: 24px;
}

@media (hover: hover) {
  .size-option:hover {
    border-color: #d86b8c;
    color: #d86b8c;
    transform: none;
  }
}

/* Product description */
.product-description {
  background: #fff;
  padding: 34px 16px 0;
}

.description-inner {
  max-width: 760px;
  margin: 0 auto;
}

.product-description h2 {
  margin: 0 0 18px;
  color: var(--purple-dark);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0;
}

.description-block {
  margin-bottom: 22px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--border);
}

.description-block h3 {
  margin: 0 0 14px;
  color: var(--purple-dark);
  font-size: 1.19rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.description-block p {
  margin: 0 0 12px;
  color: #161323;
  font-size: 0.94rem;
  line-height: 1.75;
}

.description-block p strong {
  color: var(--text);
  font-weight: 800;
}

.description-block ul {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
}

.description-block li {
  color: #161323;
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 5px;
}

.description-block li::before {
  margin-right: 6px;
  color: var(--purple);
  content: "•";
  font-weight: 900;
}

.description-block .check-list li::before {
  color: var(--success);
  content: "✔";
}

.description-block .x-list li::before {
  color: #d45454;
  content: "✖";
}

.payment-security {
  margin-top: 8px;
  padding: 24px 16px 28px;
  background: #fff;
  border-top: 1px solid rgba(91, 75, 183, 0.12);
  box-shadow: 0 -8px 24px rgba(47, 41, 90, 0.06);
}

.payment-security__inner {
  max-width: 760px;
  margin: 0 auto;
}

.payment-security__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.payment-security__header h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: 1.19rem;
  font-weight: 800;
  letter-spacing: 0;
}

.payment-security__lock {
  display: inline-flex;
  color: var(--muted);
}

.payment-security__lock svg {
  width: 18px;
  height: 24px;
}

.payment-security__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 24px;
  margin-bottom: 18px;
}

.payment-security__flags svg,
.payment-security__flags img {
  width: 38px;
  height: 24px;
}

.payment-security p {
  margin: 0;
  color: #161323;
  font-size: 0.88rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .product-description {
    padding: 46px 24px 0;
  }

  .product-description h2 {
    font-size: 1.45rem;
  }

  .description-block h3,
  .payment-security__header h3 {
    font-size: 1.32rem;
  }

  .description-block p,
  .description-block li {
    font-size: 1rem;
  }

  .payment-security {
    padding-inline: 24px;
  }
}

@media (hover: hover) {
  .color-card:hover,
  .benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(47, 41, 90, 0.12);
  }

  .color-card:hover img,
  .benefit-card:hover img {
    transform: scale(1.035);
  }

  .mini-cta:hover {
    color: var(--white);
    background: var(--purple);
    transform: translateY(-1px);
  }

  .mothers-day-media:hover img {
    transform: scale(1.025);
  }

  .mothers-day-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(47, 41, 90, 0.1);
  }
}

@media (min-width: 768px) {
  .color-showcase,
  .visual-benefits {
    padding: 78px 0;
  }

  .prebuy-heading {
    margin-bottom: 30px;
  }

  .prebuy-heading h2 {
    max-width: 14ch;
  }

  .prebuy-heading p:not(.prebuy-kicker) {
    max-width: 34rem;
    font-size: 1.02rem;
  }

  .color-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding-bottom: 0;
  }

  .benefit-carousel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    overflow: visible;
    padding-bottom: 0;
  }

  .color-card,
  .benefit-card {
    flex-basis: auto;
  }

  .mothers-day-section {
    padding: 82px 32px;
  }

  .mothers-day-section__inner {
    grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
    align-items: center;
    gap: 54px;
  }

  .mothers-day-section h2 {
    max-width: 12ch;
  }

  .mothers-day-section p {
    font-size: 1rem;
  }

  .mothers-day-cards {
    grid-template-columns: 1fr 1fr;
  }

  .mothers-day-blob-1 {
    top: 90px;
    right: 5vw;
    width: 260px;
    height: 186px;
  }

  .mothers-day-blob-2 {
    bottom: 36px;
    left: 4vw;
    width: 270px;
    height: 200px;
  }
}

/* Remodeled premium sections between hero and purchase CTA */
.color-ribbon-section {
  overflow: hidden;
  padding: 58px 0 42px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(242, 238, 255, 0.66) 100%);
}

.ribbon-heading,
.benefits-story__heading {
  width: min(100% - 32px, 760px);
  margin: 0 auto 26px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.ribbon-heading h2,
.benefits-story__heading h2 {
  max-width: 15ch;
  margin: 0 auto;
  color: var(--purple-dark);
  font-size: clamp(2rem, 8.4vw, 3.55rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: 0;
}

.ribbon-heading p:not(.section-kicker),
.benefits-story__heading p:not(.section-kicker) {
  max-width: 34rem;
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.color-ribbon {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.color-ribbon::-webkit-scrollbar {
  display: none;
}

.color-ribbon__track {
  display: flex;
  width: max-content;
  min-width: 200%;
  animation: ribbon-flow 34s linear infinite;
  will-change: transform;
}

.color-ribbon__track.is-paused {
  animation-play-state: paused;
}

.color-ribbon__item {
  position: relative;
  flex: 0 0 clamp(230px, 72vw, 430px);
  height: clamp(280px, 84vw, 520px);
  margin: 0;
  overflow: hidden;
  background: var(--purple-soft);
}

.color-ribbon__item::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(47, 41, 90, 0.02) 20%, rgba(47, 41, 90, 0.48) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
}

.color-ribbon__item::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  color: rgba(51, 37, 111, 0.45);
  content: "Imagem da cor";
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.color-ribbon__item:has(img:not(.is-missing))::after {
  opacity: 0;
}

.color-ribbon__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.color-ribbon__item img.is-missing {
  opacity: 0;
}

.color-ribbon__item figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  color: var(--white);
  font-size: clamp(1.22rem, 5.4vw, 2rem);
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 2px 18px rgba(31, 22, 73, 0.42);
}

@keyframes ribbon-flow {
  from {
    transform: translateX(0);
  }

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

.section-divider {
  position: relative;
  height: 42px;
  background: linear-gradient(180deg, rgba(242, 238, 255, 0.66), #ffffff);
}

.section-divider::before {
  position: absolute;
  top: 20px;
  left: 50%;
  width: min(58vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 75, 183, 0.2), transparent);
  box-shadow: 0 0 22px rgba(91, 75, 183, 0.18);
  content: "";
  transform: translateX(-50%);
}

.section-divider::after {
  position: absolute;
  top: 16px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--white);
  border: 1px solid rgba(91, 75, 183, 0.22);
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.section-divider--soft {
  background: linear-gradient(180deg, #ffffff, rgba(247, 241, 255, 0.72));
}

.benefits-story-section {
  position: relative;
  min-height: 360vh;
  background:
    radial-gradient(ellipse at 50% 14%, rgba(220, 212, 255, 0.54), transparent 44%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ff 44%, #ffffff 100%);
}

.benefits-story__sticky {
  position: sticky;
  top: 0;
  display: grid;
  min-height: 100svh;
  align-content: center;
  padding: 64px 16px 54px;
}

.benefits-story__heading {
  margin-bottom: 24px;
}

.benefits-story__panel {
  position: relative;
  display: grid;
  width: min(100%, 520px);
  min-height: 390px;
  margin: 0 auto;
  padding: 28px 20px 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(91, 75, 183, 0.12);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(47, 41, 90, 0.1);
  backdrop-filter: blur(18px);
}

.benefit-stage {
  grid-area: 1 / 1;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 11px;
  opacity: 0;
  text-align: center;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
  pointer-events: none;
}

.benefit-stage.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.benefit-stage__icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: var(--purple);
  background: linear-gradient(145deg, rgba(242, 238, 255, 0.94), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(91, 75, 183, 0.12);
  border-radius: 34px;
  box-shadow: 0 18px 34px rgba(91, 75, 183, 0.12);
  animation: benefit-float 6s ease-in-out infinite;
}

.benefit-stage__icon svg {
  width: 68px;
  height: 68px;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-stage span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.benefit-stage h3 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(1.72rem, 7vw, 2.6rem);
  font-weight: 800;
  line-height: 1.05;
}

.benefit-stage p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.benefit-progress {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.benefit-progress span {
  height: 4px;
  background: rgba(91, 75, 183, 0.14);
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color 250ms ease,
    transform 250ms ease;
}

.benefit-progress span.is-active {
  background: var(--purple);
  transform: scaleY(1.35);
}

@keyframes benefit-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@media (hover: hover) {
  .color-ribbon:hover .color-ribbon__track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .color-ribbon__track,
  .benefit-stage__icon,
  .mothers-day-chip {
    animation: none !important;
  }

  .benefits-story-section {
    min-height: auto;
  }

  .benefits-story__sticky {
    position: relative;
    min-height: auto;
  }

  .benefit-stage {
    position: relative;
    grid-area: auto;
    opacity: 1;
    transform: none;
  }

  .benefits-story__panel {
    gap: 24px;
  }
}

@media (min-width: 768px) {
  .color-ribbon-section {
    padding: 82px 0 56px;
  }

  .ribbon-heading,
  .benefits-story__heading {
    margin-bottom: 34px;
  }

  .ribbon-heading h2,
  .benefits-story__heading h2 {
    max-width: 17ch;
  }

  .color-ribbon__item {
    flex-basis: clamp(320px, 31vw, 470px);
    height: clamp(400px, 42vw, 620px);
  }

  .benefits-story-section {
    min-height: 330vh;
  }

  .benefits-story__sticky {
    padding: 86px 32px 70px;
  }

  .benefits-story__panel {
    min-height: 440px;
    border-radius: 36px;
  }

  .benefit-stage__icon {
    width: 118px;
    height: 118px;
  }
}

/* Reviews / AReviews-style section */
.reviews-section {
  background: #fff;
  padding: 42px 22px;
}

.reviews-section[data-animate] {
  opacity: 1;
  transform: none;
}

.reviews-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.reviews-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0;
}

.reviews-divider {
  margin: 0 0 26px;
  border: 0;
  border-bottom: 1px solid #d4d4d4;
}

.reviews-summary {
  display: grid;
  gap: 26px;
  justify-items: center;
}

.review-score {
  text-align: center;
}

.review-score__number {
  color: var(--star, #f3c621);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
}

.review-score__total {
  color: #222;
  font-size: 1.05rem;
  font-weight: 800;
}

.review-stars {
  margin-top: 8px;
  color: var(--star, #f3c621);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.review-score p {
  margin: 8px 0 0;
  color: #333;
  font-size: 0.78rem;
}

.rating-distribution {
  width: min(100%, 290px);
}

.rating-row {
  display: grid;
  grid-template-columns: 34px 1fr 58px;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: #222;
  font-size: 0.86rem;
}

.rating-row b {
  color: #9ca3af;
}

.rating-bar {
  height: 11px;
  overflow: hidden;
  background: #d7d7d7;
  border-radius: 999px;
}

.rating-bar span {
  display: block;
  height: 100%;
  background: var(--star, #f3c621);
}

.rating-count {
  min-height: 22px;
  padding: 3px 8px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 999px;
  color: #111;
  font-size: 0.82rem;
  font-weight: 500;
  text-align: center;
}

.write-review-btn {
  display: block;
  margin: 26px auto 34px;
  padding: 12px 24px;
  color: #fff;
  background: #373737;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  transition:
    background-color var(--transition),
    transform var(--transition);
}

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

.review-form {
  display: grid;
  gap: 12px;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
  opacity: 0;
  transition:
    max-height 360ms ease,
    opacity 240ms ease,
    margin 240ms ease,
    padding 240ms ease,
    border-color 240ms ease;
}

.review-form.is-open {
  max-height: 680px;
  margin: 0 0 18px;
  padding: 22px 0 18px;
  border-top-color: #e5e5e5;
  opacity: 1;
}

.review-form label {
  display: grid;
  gap: 6px;
  color: #222;
  font-size: 0.9rem;
}

.review-form input,
.review-form textarea {
  width: 100%;
  padding: 10px 12px;
  color: #111;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  font: inherit;
}

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

.review-form input::placeholder,
.review-form textarea::placeholder {
  color: #b7bbc3;
}

.review-form__rating {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #222;
  font-size: 0.9rem;
}

.review-upload,
.review-submit {
  width: fit-content;
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  font-weight: 800;
}

.review-upload {
  padding: 9px 13px;
  color: #fff;
  background: #5f5f5f;
}

.review-submit {
  padding: 11px 15px;
  color: #fff;
  background: #555;
}

.review-form__message {
  min-height: 18px;
  margin: 0;
  color: var(--success);
  font-size: 0.86rem;
  font-weight: 700;
}

.review-form__message.is-error {
  color: #d45454;
}

.reviews-list {
  display: grid;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #eeeeee;
}

.review-card {
  padding: 16px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  box-shadow: 0 5px 15px -10px rgba(0, 0, 0, 0.5);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.review-avatar {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: #444;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
}

.review-author strong {
  display: block;
  color: #111;
  font-size: 0.92rem;
  font-weight: 800;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #111;
  font-size: 0.7rem;
}

.review-verified::after {
  display: inline-grid;
  width: 9px;
  height: 9px;
  place-items: center;
  color: #fff;
  background: #2fbf58;
  border-radius: 999px;
  content: "✓";
  font-size: 0.45rem;
  line-height: 1;
}

.review-card .review-stars {
  margin: 6px 0 12px;
  font-size: 1.02rem;
}

.review-comment {
  margin: 0;
  color: #111;
  font-size: 0.9rem;
  line-height: 1.48;
}

.review-image-button {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 0;
  overflow: hidden;
  background: #f5f5f5;
  border: 0;
  border-radius: 9px;
  cursor: zoom-in;
}

.review-image-button img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.review-image-button img.is-missing {
  min-height: 220px;
  opacity: 0;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-top: 28px;
}

.reviews-pagination button {
  min-width: 32px;
  height: 32px;
  padding: 0 9px;
  color: #111;
  background: #f7f7f7;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.reviews-pagination button.is-active {
  background: var(--purple-soft);
  border-color: var(--lilac);
  color: var(--purple-dark);
}

.reviews-pagination button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(17, 17, 17, 0.72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 0ms linear 220ms;
}

.review-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 220ms ease,
    visibility 0ms linear 0ms;
}

.review-lightbox img {
  width: min(100%, 760px);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.review-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.review-lightbox__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 999px;
}

.review-lightbox__close span:first-child {
  transform: rotate(45deg);
}

.review-lightbox__close span:last-child {
  transform: rotate(-45deg);
}

@media (hover: hover) {
  .write-review-btn:hover,
  .review-submit:hover {
    background: #222;
  }
}

@media (min-width: 768px) {
  .reviews-section {
    padding: 58px 28px;
  }

  .reviews-title {
    font-size: 1.9rem;
  }

  .reviews-summary {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    max-width: 720px;
    margin: 0 auto;
  }

  .reviews-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }
}

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

/* Keep product/color images fully visible inside 1:1 frames */
.gallery-main-image,
.gallery-thumb img,
.color-swatch img,
.color-ribbon__item img {
  object-fit: contain;
  background: linear-gradient(145deg, #ffffff, var(--purple-soft));
}

.color-ribbon__item {
  aspect-ratio: 1 / 1;
  height: auto;
}

.gallery-main {
  aspect-ratio: 1 / 1;
}

.mothers-day-media {
  aspect-ratio: 1 / 1;
}

.mothers-day-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* FAQ */
.faq-section {
  padding: 44px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}

.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 26px;
  text-align: center;
}

.faq-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.faq-header h2 {
  margin: 0;
  color: var(--purple-dark);
  font-size: clamp(1.75rem, 7vw, 2.88rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.faq-header p {
  max-width: 520px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(91, 75, 183, 0.13);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(47, 41, 90, 0.06);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 18px;
  color: var(--purple-dark);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: left;
}

.faq-icon {
  display: inline-flex;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  background: var(--purple-soft);
  border-radius: 999px;
  font-size: 1.25rem;
  line-height: 1;
  transition:
    transform 250ms ease,
    background-color 250ms ease,
    color 250ms ease;
}

.faq-item.is-open .faq-icon {
  color: #fff;
  background: var(--purple);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: #3c334d;
  font-size: 0.91rem;
  line-height: 1.72;
}

/* Trust slider */
.trust-slider-section {
  overflow: hidden;
  padding: 34px 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}

.trust-slider {
  position: relative;
  max-width: 620px;
  min-height: 172px;
  margin: 0 auto;
  text-align: center;
}

.trust-slide {
  position: absolute;
  inset: 0 0 auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 350ms ease,
    transform 350ms ease;
  visibility: hidden;
}

.trust-slide.is-active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.trust-icon {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--purple);
}

.trust-icon svg {
  display: block;
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
}

.trust-icon svg * {
  stroke: currentColor !important;
}

.trust-slide h3 {
  margin: 0 0 8px;
  color: var(--purple-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.trust-slide p {
  max-width: 350px;
  margin: 0 auto;
  color: #3c334d;
  font-size: 0.91rem;
  line-height: 1.55;
}

.trust-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.trust-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: transparent;
  border: 2px solid var(--purple);
  border-radius: 999px;
  cursor: pointer;
  transition:
    background-color 250ms ease,
    border-color 250ms ease,
    transform 250ms ease;
}

.trust-dot.is-active {
  background: var(--purple);
  transform: scale(1.05);
}

.trust-dot:active {
  transform: scale(0.92);
}

/* Footer */
.site-footer {
  padding: 28px 20px 0;
  color: #fff;
  background: linear-gradient(180deg, var(--purple) 0%, var(--purple-dark) 100%);
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.footer-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-accordion__button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
}

.footer-accordion__icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 250ms ease;
}

.footer-accordion.is-open .footer-accordion__icon {
  transform: rotate(45deg);
}

.footer-accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease;
}

.footer-accordion__content-inner {
  padding: 0 0 20px;
}

.footer-accordion__content p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-block {
  margin-top: 28px;
}

.footer-block h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
}

.footer-payments,
.footer-security {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-payments img {
  width: 48px;
  height: 31px;
  padding: 4px;
  object-fit: contain;
  background: #fff;
  border-radius: 4px;
}

.footer-payments img.is-missing,
.footer-security img.is-missing,
.footer-shipping img.is-missing {
  display: none;
}

.footer-shipping {
  display: inline-flex;
  width: 100%;
  max-width: 360px;
  min-height: 34px;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 7px 9px;
  overflow: hidden;
  color: var(--purple-dark);
  background: #fff;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

.footer-shipping img {
  max-width: 100%;
  max-height: 28px;
  height: auto;
  object-fit: contain;
}

.footer-shipping img:not(.is-missing) + span {
  display: none;
}

.footer-shipping svg {
  display: block;
  flex: 0 1 auto;
  width: auto !important;
  max-width: 100%;
  height: 24px !important;
}

.footer-shipping svg:first-of-type {
  flex-basis: 34%;
  max-width: 96px;
}

.footer-shipping svg:last-of-type {
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 104px);
}

.footer-security img {
  width: auto;
  max-width: 110px;
  height: 32px;
  object-fit: contain;
}

.footer-security {
  flex-wrap: nowrap;
  gap: 10px;
  max-width: 100%;
  overflow: hidden;
}

.footer-security svg {
  display: block;
  flex: 0 1 auto;
  width: auto !important;
  height: 30px !important;
  max-width: 32%;
}

.footer-security svg:nth-of-type(1) {
  width: clamp(70px, 22vw, 88px) !important;
  height: 34px !important;
}

.footer-security svg:nth-of-type(2) {
  width: clamp(112px, 34vw, 136px) !important;
  height: 25px !important;
}

.footer-security svg:nth-of-type(3) {
  width: clamp(78px, 24vw, 94px) !important;
  height: 32px !important;
}

.footer-security::before,
.footer-security::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 9px;
  color: var(--purple-dark);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 900;
}

.footer-security:has(img.is-missing)::before {
  content: "Norton Secured";
}

.footer-security:has(img.is-missing)::after {
  content: "Google Seguro";
}

.footer-warning {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
  line-height: 1.75;
}

.footer-warning strong {
  color: #fff;
  font-weight: 800;
}

.footer-bottom {
  margin-top: 30px;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.82rem;
  line-height: 1.6;
  text-align: center;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 64px 24px;
  }

  .faq-question {
    padding: 20px 22px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 22px 22px;
    font-size: 0.94rem;
  }

  .trust-slider-section {
    padding: 42px 20px;
  }

  .trust-slider {
    min-height: 182px;
  }

  .trust-slide h3 {
    font-size: 1.13rem;
  }

  .trust-slide p {
    font-size: 0.94rem;
  }

  .site-footer {
    padding: 34px 32px 0;
  }

  .footer-payments img {
    width: 52px;
    height: 33px;
  }
}

/* Mobile UX and scroll-flow polish */
[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 450ms ease,
    transform 450ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.color-ribbon-section {
  padding: 42px 0 30px;
}

.ribbon-heading,
.benefits-story__heading {
  margin-bottom: 20px;
}

.ribbon-heading h2,
.benefits-story__heading h2 {
  max-width: 16ch;
  font-size: clamp(1.82rem, 7.4vw, 3.2rem);
}

.ribbon-heading p:not(.section-kicker),
.benefits-story__heading p:not(.section-kicker) {
  margin-top: 10px;
}

.color-ribbon__track {
  animation-duration: 18s;
}

.section-divider {
  height: 24px;
}

.section-divider::before {
  top: 12px;
  width: min(70vw, 380px);
}

.section-divider::after {
  top: 8px;
}

.benefits-story-section {
  min-height: auto;
  padding: 40px 0 38px;
}

.benefits-story__sticky {
  position: relative;
  min-height: auto;
  padding: 0 16px;
}

.benefits-story__panel {
  display: flex;
  gap: 12px;
  min-height: auto;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 4px 2px 34px;
  overflow-x: auto;
  overflow-y: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  backdrop-filter: none;
}

.benefits-story__panel::-webkit-scrollbar {
  display: none;
}

.benefit-stage {
  grid-area: auto;
  flex: 0 0 min(82vw, 360px);
  min-height: 310px;
  padding: 24px 18px;
  opacity: 1;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(91, 75, 183, 0.12);
  border-radius: 26px;
  box-shadow: 0 16px 40px rgba(47, 41, 90, 0.08);
  scroll-snap-align: center;
  transform: none;
  pointer-events: auto;
}

.benefit-stage.is-active {
  transform: none;
}

.benefit-stage__icon {
  width: 92px;
  height: 92px;
  border-radius: 28px;
  animation: none;
}

.benefit-stage__icon svg {
  width: 60px;
  height: 60px;
}

.benefit-progress {
  right: 18px;
  bottom: 12px;
  left: 18px;
}

.mothers-day-section {
  padding: 42px 16px;
}

.mothers-day-section__inner {
  gap: 20px;
}

.mothers-day-chips {
  gap: 8px;
  margin-top: 14px;
}

.mothers-day-chip {
  min-height: 32px;
  padding: 8px 11px;
  animation: none;
  box-shadow: 0 8px 18px rgba(47, 41, 90, 0.05);
}

.mothers-day-button {
  margin-top: 16px;
}

.mothers-day-visual {
  gap: 14px;
}

.mothers-day-cards {
  gap: 10px;
}

.mothers-day-card {
  padding: 14px;
  box-shadow: 0 10px 24px rgba(47, 41, 90, 0.06);
}

.product-section {
  padding: 36px 0 44px;
}

.product-description {
  padding-top: 30px;
}

.payment-security {
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 24px;
}

.reviews-section {
  padding-top: 34px;
  padding-bottom: 38px;
}

@media (max-width: 767px) {
  [data-animate] {
    transition-duration: 380ms;
  }

  .hero-content [data-animate],
  .hero-actions,
  .hero-rating,
  .hero-benefits,
  .hero-floating-card-1,
  .hero-floating-card-2,
  .section-heading,
  .product-card,
  .product-layout,
  .product-section-label {
    transition-delay: 0s !important;
    animation-delay: 0s !important;
  }
}

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

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }

  .trust-slide,
  .trust-dot,
  .faq-answer,
  .faq-icon {
    transition: none !important;
  }
}

@media (min-width: 768px) {
  .color-ribbon-section {
    padding: 70px 0 48px;
  }

  .benefits-story-section {
    padding: 70px 0 64px;
  }

  .benefits-story__sticky {
    padding: 0 32px;
  }

  .benefits-story__panel {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    max-width: 1120px;
    margin: 0 auto;
    overflow: visible;
    padding-bottom: 0;
  }

  .benefit-stage {
    flex-basis: auto;
    min-height: 320px;
  }

  .benefit-progress {
    display: none;
  }

  .mothers-day-section {
    padding: 70px 32px;
  }
}
