:root {
  --pp-orange: #B7522A;
  --pp-navy: #1F1B17;
  --pp-ember: #D87A4A;
  --pp-iron: #2A2522;
  --pp-cream: #F5EFE6;
  --purple: #B7522A;
  --purple-dark: #1F1B17;
  --purple-soft: #FBF6EE;
  --lilac: #EAD9C7;
  --white: #ffffff;
  --text: #2A2522;
  --muted: #8a7f74;
  --peach: #D87A4A;
  --cream: #F5EFE6;
  --pink-soft: #F1E2D1;
  --success: #21b83b;
  --success-dark: #15952b;
  --star: #f3c621;
  --pix-bg: #f0fff4;
  --pix-border: #bfeccb;
  --border: rgba(42, 37, 34, 0.18);
  --container: min(100% - 32px, 1120px);
  --header-height: 68px;
  --shadow-soft: 0 18px 52px rgba(42, 37, 34, 0.14);
  --shadow-card: 0 24px 70px rgba(31, 27, 23, 0.18);
  --shadow-button: 0 15px 32px rgba(183, 82, 42, 0.28);
  --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: "Inter", 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: relative;
  z-index: 20;
  background: rgba(251, 246, 238, 0.78);
  border-bottom: 1px solid rgba(217, 200, 184, 0.56);
  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(42, 37, 34, 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(245, 239, 230, 0.96));
  border-right: 1px solid rgba(217, 200, 184, 0.72);
  box-shadow: 28px 0 70px rgba(31, 27, 23, 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(217, 200, 184, 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(217, 200, 184, 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(251, 246, 238, 0.98) 0%, rgba(255, 255, 255, 0.84) 54%, rgba(245, 239, 230, 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(217, 200, 184, 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(217, 200, 184, 0.34));
  box-shadow: 0 24px 60px rgba(183, 82, 42, 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(217, 200, 184, 0.78);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(183, 82, 42, 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: "Fraunces", 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(183, 82, 42, 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(245, 239, 230, 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(183, 82, 42, 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(245, 239, 230, 0.62) 100%);
}

.visual-benefits {
  background: linear-gradient(180deg, #ffffff 0%, #FBF6EE 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(183, 82, 42, 0.12);
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(42, 37, 34, 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(245, 239, 230, 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(31, 27, 23, 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(245, 239, 230, 0.72);
  border: 1px solid rgba(183, 82, 42, 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%, #F5EFE6 45%, #FBF6EE 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(217, 200, 184, 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(183, 82, 42, 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: "Fraunces", 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(183, 82, 42, 0.12);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(42, 37, 34, 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(183, 82, 42, 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(42, 37, 34, 0.12);
}

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

.mothers-day-media::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 26px;
  color: rgba(31, 27, 23, 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(183, 82, 42, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(42, 37, 34, 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(245, 239, 230, 0.88), rgba(251, 246, 238, 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(217, 200, 184, 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(217, 200, 184, 0.66);
  border-radius: 30px;
  box-shadow: 0 26px 76px rgba(31, 27, 23, 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(245, 239, 230, 0.78)),
    var(--purple-soft);
  border: 1px solid rgba(217, 200, 184, 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(31, 27, 23, 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(183, 82, 42, 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(183, 82, 42, 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(217, 200, 184, 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(183, 82, 42, 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(251, 246, 238, 0.76);
  border: 1px solid rgba(217, 200, 184, 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(245, 239, 230, 0.92);
  border-color: var(--purple);
  box-shadow: 0 12px 28px rgba(183, 82, 42, 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(251, 246, 238, 0.72);
  border: 1px solid rgba(217, 200, 184, 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(217, 200, 184, 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(217, 200, 184, 0.72);
  border-radius: 9px;
}

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

.payment-flag b {
  display: none;
  color: rgba(31, 27, 23, 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(42, 37, 34, 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(217, 200, 184, 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(31, 27, 23, 0.27);
  }

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

  .gallery-thumb:hover,
  .color-swatch:hover,
  .size-option:hover {
    transform: translateY(-2px);
    border-color: rgba(183, 82, 42, 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(31, 27, 23, 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(251, 246, 238, 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(217, 200, 184, 0.62);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(245, 239, 230, 0.55)),
    var(--purple-soft);
  box-shadow: 0 10px 24px rgba(31, 27, 23, 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(217, 200, 184, 0.7);
  background: var(--white);
  box-shadow: none;
}

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

.product-info {
  gap: 12px;
  padding: 16px 0 0;
  background: transparent;
  border-top: 1px solid rgba(217, 200, 184, 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(217, 200, 184, 0.8);
  background: var(--white);
}

.color-swatch.is-selected {
  border: 2px solid var(--purple);
  box-shadow: 0 6px 14px rgba(183, 82, 42, 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(42, 37, 34, 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(245, 239, 230, 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(42, 37, 34, 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(42, 37, 34, 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(183, 82, 42, 0.12);
  box-shadow: 0 -8px 24px rgba(42, 37, 34, 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(42, 37, 34, 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(42, 37, 34, 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(245, 239, 230, 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(42, 37, 34, 0.02) 20%, rgba(42, 37, 34, 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(31, 27, 23, 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(245, 239, 230, 0.66), #ffffff);
}

.section-divider::before {
  position: absolute;
  top: 20px;
  left: 50%;
  width: min(58vw, 420px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 82, 42, 0.2), transparent);
  box-shadow: 0 0 22px rgba(183, 82, 42, 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(183, 82, 42, 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(217, 200, 184, 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(183, 82, 42, 0.12);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(42, 37, 34, 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(245, 239, 230, 0.94), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(183, 82, 42, 0.12);
  border-radius: 34px;
  box-shadow: 0 18px 34px rgba(183, 82, 42, 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(183, 82, 42, 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-card {
  display: grid;
  gap: 22px;
  margin-bottom: 26px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(245, 241, 255, 0.92), #fff 82%);
  border: 1px solid rgba(183, 82, 42, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(42, 37, 34, 0.08);
}

.reviews-summary-card__top {
  display: grid;
  gap: 16px;
}

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

.review-score__number {
  color: #1F1B17;
  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: #f6a69b;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

.review-score p {
  margin: 10px 0 0;
  color: #625a86;
  font-size: 0.88rem;
}

.reviews-summary-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.reviews-summary-badge,
.reviews-summary-note {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.reviews-summary-badge {
  color: #1F1B17;
  background: rgba(183, 82, 42, 0.1);
}

.reviews-summary-note {
  color: #5e5876;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(183, 82, 42, 0.08);
}

.rating-distribution {
  width: 100%;
}

.rating-row {
  display: grid;
  grid-template-columns: 34px 1fr 68px;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #2b2750;
  font-size: 0.88rem;
}

.rating-row b {
  color: #f6a69b;
}

.rating-bar {
  height: 10px;
  overflow: hidden;
  background: rgba(183, 82, 42, 0.1);
  border-radius: 999px;
}

.rating-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #f6a69b, #8b78e6);
}

.rating-count {
  min-height: 24px;
  padding: 4px 8px;
  background: #fff;
  border: 1px solid rgba(183, 82, 42, 0.1);
  border-radius: 999px;
  color: #2b2750;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.write-review-btn {
  display: block;
  margin: 0 auto 34px;
  padding: 12px 24px;
  color: #fff;
  background: #1F1B17;
  border: 0;
  border-radius: 999px;
  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: 12px;
  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: 999px;
  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: 18px;
  padding-top: 18px;
}

.review-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(183, 82, 42, 0.1);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(42, 37, 34, 0.08);
}

.review-card__body {
  padding: 16px 16px 18px;
}

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

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

.review-author strong {
  display: block;
  color: #2b2750;
  font-size: 0.95rem;
  font-weight: 800;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 4px;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #2b2750;
  font-size: 0.72rem;
  font-weight: 700;
}

.review-verified svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: #2fbf58;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.review-date {
  color: #847da5;
  font-size: 0.72rem;
}

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

.review-comment {
  margin: 0;
  color: #3b355d;
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.review-image-button img {
  display: block;
  width: 100%;
  height: auto;
  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-card {
    padding: 28px;
  }

  .reviews-summary-card__top {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .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%, #F5EFE6 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(183, 82, 42, 0.13);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(42, 37, 34, 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%, #F5EFE6 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: 16px;
}

.ribbon-heading h2,
.benefits-story__heading h2 {
  max-width: 18ch;
  font-size: clamp(1.5rem, 4.4vw, 2.25rem);
}


.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: 32px 0 30px;
}

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

.benefits-story__panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: auto;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 4px 0 8px;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

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

.benefit-stage {
  position: relative;
  grid-area: auto;
  display: grid;
  grid-template-columns: 48px 1fr 24px;
  grid-template-areas:
    "icon header chev"
    "body body body";
  align-items: center;
  text-align: left;
  justify-items: start;
  width: 100%;
  max-width: 100%;
  gap: 12px 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(183, 82, 42, 0.14);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(42, 37, 34, 0.06);
  opacity: 1;
  transform: none;
  pointer-events: auto;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.benefit-stage:hover,
.benefit-stage.is-expanded {
  background: #fff;
  border-color: rgba(183, 82, 42, 0.28);
  box-shadow: 0 12px 28px rgba(42, 37, 34, 0.10);
}

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

.benefit-stage__icon {
  grid-area: icon;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  animation: none;
}
.benefit-stage__icon svg { width: 28px; height: 28px; stroke-width: 3.4; }

.benefit-stage span {
  grid-area: header;
  align-self: end;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 2px;
}

.benefit-stage h3 {
  grid-area: header;
  align-self: start;
  font-size: 1.05rem;
  line-height: 1.2;
  margin-top: 14px;
}

.benefit-stage::after {
  content: "";
  grid-area: chev;
  justify-self: end;
  width: 10px; height: 10px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .3s ease;
  opacity: .7;
}
.benefit-stage.is-expanded::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.benefit-stage p {
  grid-area: body;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 100%;
  margin: 0;
  text-align: left;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease, padding-top .25s ease;
}
.benefit-stage.is-expanded p {
  max-height: 200px;
  opacity: 1;
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(183, 82, 42, 0.10);
}

.benefit-progress { display: none; }


.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(42, 37, 34, 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(42, 37, 34, 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: auto;
    display: grid;
    grid-template-columns: none;
    grid-template-areas: none;
    cursor: default;
  }
  .benefit-stage::after { display: none; }
  .benefit-stage__icon { grid-area: auto; }
  .benefit-stage span,
  .benefit-stage h3,
  .benefit-stage p { grid-area: auto; }
  .benefit-stage p {
    max-height: none;
    opacity: 1;
    overflow: visible;
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
    text-align: center;
  }

  .benefit-progress {
    display: none;
  }

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

/* ============================================================
   PH HERO – Product page (estilo Mellow)
   ============================================================ */
:root{
  --ph-bg: #F5EFE6;
  --ph-bg-soft: #FBF6EE;
  --ph-ink: #2A2522;
  --ph-ink-soft: #7C7066;
  --ph-coral: #B7522A;
  --ph-line: #D9C8B8;
}

.ph-hero{
  background: var(--ph-bg);
  padding: 32px 20px 64px;
  position: relative;
}
.ph-hero__inner{
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(0,1fr);
  gap: 48px;
  align-items: start;
}

/* ----- GALERIA ----- */
.ph-gallery__main{
  display:block;
  width:100%;
  aspect-ratio: 1/1;
  background: linear-gradient(180deg, #EAD9C7 0%, #F5EFE6 62%, #FBF6EE 100%);
  border-radius: 28px;
  border:none;
  padding:0;
  position:relative;
  overflow:hidden;
  cursor: zoom-in;
}
.ph-gallery__main img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.ph-gallery__pills{
  position:absolute;
  left:0; right:0; bottom:18px;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  padding: 0 18px;
  pointer-events:none;
}
.ph-pill{
  background:#fff;
  color:var(--ph-ink);
  font-weight:600;
  font-size:12px;
  padding: 8px 14px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  box-shadow: 0 4px 14px rgba(42,37,34,.08);
}
.ph-pill--wide{ font-size:12px; }
.ph-pill__dot{
  width:18px; height:18px; border-radius:50%;
  background: #FFD9CC;
  display:inline-block;
  position:relative;
}
.ph-pill__dot--cloud{ background:#EAD9C7; }
.ph-pill__dot--wash{  background:#FFE2BD; }
.ph-pill__dot--star{  background:#FFD9CC; }
.ph-pill__dot--heat{  background:#FFCAB8; }

.ph-thumbs{
  margin-top: 14px;
  display:flex;
  gap:10px;
  overflow-x:auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.ph-thumbs::-webkit-scrollbar{ display:none; }
.ph-thumb{
  flex: 0 0 78px;
  width:78px; height:78px;
  border-radius: 14px;
  overflow:hidden;
  border: 2px solid transparent;
  padding:0;
  background:#fff;
  cursor:pointer;
  transition: border-color .2s, transform .2s;
}
.ph-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.ph-thumb.is-selected{ border-color: var(--ph-ink); }
.ph-thumb:hover{ transform: translateY(-2px); }

/* ----- INFO ----- */
.ph-info{
  display:flex;
  flex-direction: column;
  gap: 18px;
  color: var(--ph-ink);
}
.ph-rating{
  display:flex; align-items:center; gap:8px;
  font-weight:600; font-size:14px; color: var(--ph-ink-soft);
}
.ph-stars{ color: var(--ph-coral); letter-spacing: 2px; font-size:16px; }
.ph-title{
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  color: var(--ph-ink);
  line-height: 1.1;
  margin: 0;
}
.ph-price-row{
  display:flex; align-items:baseline; gap:12px; flex-wrap:wrap;
}
.ph-price{ font-size: 32px; font-weight: 800; color: var(--ph-ink); }
.ph-price-old{ font-size: 20px; color:#9A8D82; text-decoration: line-through; }
.ph-price-save{
  background: var(--ph-coral); color:#fff;
  font-weight: 700; font-size:13px;
  padding: 4px 10px; border-radius: 999px;
}
.ph-pix{
  display:inline-flex; align-items:center; gap:10px;
  background:#fff; border:1px dashed var(--ph-line);
  padding: 10px 14px; border-radius: 14px;
  width:fit-content;
  font-size:14px; color: var(--ph-ink-soft);
}
.ph-pix__icon{
  background: var(--ph-ink); color:#fff;
  font-size: 11px; font-weight:800; letter-spacing:.5px;
  padding: 4px 8px; border-radius: 6px;
}
.ph-pix strong{ color: var(--ph-ink); font-size: 16px; }

.ph-group{ display:flex; flex-direction:column; gap:10px; }
.ph-group__label{
  margin:0; font-size:14px; color: var(--ph-ink-soft); font-weight: 500;
}
.ph-group__label strong{ color: var(--ph-ink); font-weight:700; margin-left: 4px; }

.ph-swatches{ display:flex; gap:12px; }
.ph-swatch{
  width:38px; height:38px; border-radius:50%;
  background: var(--sw, #fff);
  border: 2px solid #fff;
  outline: 2px solid transparent;
  cursor:pointer; padding:0;
  box-shadow: 0 1px 4px rgba(42,37,34,.15);
  transition: outline-color .15s, transform .15s;
}
.ph-swatch:hover{ transform: scale(1.06); }
.ph-swatch.is-selected{ outline-color: var(--ph-ink); }

.ph-bullets{
  list-style:none; padding:0; margin: 6px 0 0;
  display:grid; gap:10px;
}
.ph-bullets li{
  display:flex; align-items:center; gap:12px;
  font-size:15px; color: var(--ph-ink); font-weight:500;
}
.ph-bullet__icon{
  width:28px; height:28px; border-radius:8px;
  background: #FFE3D9; color: var(--ph-coral);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:14px; flex-shrink:0;
}

.ph-size-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
}
.ph-size-guide{
  color: var(--ph-ink); font-size:13px;
  text-decoration: underline; text-underline-offset: 3px;
}
.ph-sizes{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.ph-size{
  background:#fff;
  border: 1.5px solid var(--ph-line);
  border-radius: 12px;
  padding: 10px 8px;
  cursor:pointer;
  color: var(--ph-ink);
  text-align:center;
  display:flex; flex-direction:column; gap:2px;
  transition: border-color .15s, background .15s;
}
.ph-size strong{ font-size:14px; font-weight:700; }
.ph-size span{ font-size:11px; color: var(--ph-ink-soft); }
.ph-size:hover{ border-color: var(--ph-ink-soft); }
.ph-size.is-selected{
  border-color: var(--ph-ink);
  background: var(--ph-bg-soft);
}

.ph-cta{
  background: var(--ph-ink);
  color:#fff;
  border:none;
  border-radius: 999px;
  padding: 18px 24px;
  cursor:pointer;
  display:flex; flex-direction:column; align-items:center; gap:2px;
  font-family: inherit;
  margin-top: 6px;
  transition: transform .15s, background .15s;
  box-shadow: 0 10px 24px rgba(42,37,34,.25);
}
.ph-cta:hover{ background:#1F1B17; transform: translateY(-1px); }
.ph-cta__main{ font-size: 17px; font-weight: 800; letter-spacing: .3px; }
.ph-cta__sub{ font-size: 12px; opacity: .8; font-weight: 500; }

.ph-trust{
  display:flex; flex-wrap:wrap; justify-content:center; gap: 18px 22px;
  font-size: 13px; color: var(--ph-ink); font-weight:600;
  letter-spacing:.01em;
}
.ph-trust__item{ display:inline-flex; align-items:center; gap:8px; }
.ph-trust__item svg{ width:20px; height:20px; color:#B7522A; flex-shrink:0; }

/* ----- MOBILE ----- */
@media (max-width: 900px){
  .ph-hero{ padding: 10px 12px 28px; }
  .ph-hero__inner{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ph-gallery{ max-width: 100%; }
  .ph-gallery__main{
    border-radius: 18px;
    aspect-ratio: auto;
    height: 58vh;
    max-height: 420px;
    min-height: 280px;
  }
  .ph-gallery__main img{ object-fit: cover; }
  .ph-thumbs{ gap: 6px; }
  .ph-thumb{ width: 52px; height: 52px; border-radius: 10px; }
  .ph-testimonial{ display: none; }
  .ph-pill{ font-size: 11px; padding: 6px 10px; }
  .ph-title{ font-size: 22px; line-height: 1.18; margin: 6px 0 8px; }
  .ph-price{ font-size: 24px; }
  .ph-price-old{ font-size: 14px; }
  .ph-rating{ font-size: 13px; }
  .ph-sizes{ grid-template-columns: repeat(2, 1fr); }
  .ph-bullets li{ font-size: 13px; }
  .ph-info > * + *{ margin-top: 10px; }
}
@media (max-width: 480px){
  .ph-gallery__main{ height: 52vh; min-height: 240px; }
  .ph-title{ font-size: 20px; }
}

.ph-pix__icon{ background:transparent !important; padding:0 !important; display:inline-flex; }
.ph-pix__icon img, .ph-pix__icon svg{ width:34px; height:34px; display:block; object-fit:contain; }

/* ============================================================
   PH ACCORDIONS – seção Visão Geral / Materiais / FAQ / Cuidados
   ============================================================ */
.ph-accordions{
  background: var(--ph-bg);
  padding: 8px 20px 56px;
}
.ph-accordions__inner{
  max-width: 1280px;
  margin: 0 auto;
  background: transparent;
}
.ph-acc{
  border-top: 1px solid var(--ph-line);
  background: transparent;
}
.ph-acc:last-of-type{ border-bottom: 1px solid var(--ph-line); }
.ph-acc > summary{
  list-style:none;
  cursor:pointer;
  padding: 22px 4px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ph-ink);
}
.ph-acc > summary::-webkit-details-marker{ display:none; }
.ph-acc__plus{
  width: 24px; height: 24px;
  position: relative;
  flex-shrink:0;
}
.ph-acc__plus::before,
.ph-acc__plus::after{
  content:"";
  position:absolute;
  inset:0;
  margin:auto;
  background: var(--ph-ink);
  transition: transform .25s ease;
}
.ph-acc__plus::before{ width: 18px; height: 2px; }
.ph-acc__plus::after{  width: 2px; height: 18px; }
.ph-acc[open] .ph-acc__plus::after{ transform: rotate(90deg); }
.ph-acc__body{
  padding: 4px 4px 24px;
  color: var(--ph-ink-soft);
  font-size: 15px;
  line-height: 1.65;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.ph-acc__body strong{ color: var(--ph-ink); }
.ph-acc__list{
  margin: 4px 0 0;
  padding: 0 0 0 18px;
  display:flex; flex-direction:column; gap: 8px;
}
.ph-link{
  color: var(--ph-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* Modal de instruções de lavagem */
.ph-wash-modal{
  position: fixed; inset: 0;
  display:none;
  align-items:center; justify-content:center;
  z-index: 1000;
}
.ph-wash-modal.is-open{ display:flex; }
.ph-wash-modal__backdrop{
  position:absolute; inset:0;
  background: rgba(42,37,34,.55);
  backdrop-filter: blur(4px);
}
.ph-wash-modal__card{
  position:relative;
  background:#fff;
  border-radius: 20px;
  padding: 24px;
  width: min(560px, 92vw);
  max-height: 90vh;
  overflow:auto;
  box-shadow: 0 30px 80px rgba(42,37,34,.35);
}
.ph-wash-modal__close{
  position:absolute; top:10px; right:14px;
  width:36px; height:36px;
  border:none; background:transparent;
  font-size:28px; line-height:1;
  cursor:pointer; color: var(--ph-ink);
}
.ph-wash-modal__card h3{
  font-family:"Fraunces", serif;
  font-size: 22px;
  color: var(--ph-ink);
  margin: 0 0 16px;
}
.ph-wash-modal__image{
  background: var(--ph-bg-soft);
  border-radius: 14px;
  overflow: hidden;
  display:flex; align-items:center; justify-content:center;
}
.ph-wash-modal__image img{
  display:block; width:100%; height:auto; border-radius: 14px;
}
.ph-wash-modal__btn{
  margin-top: 16px;
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 999px;
  background: var(--ph-ink, #2A2522);
  color:#fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  letter-spacing:.02em;
  transition: transform .15s ease, opacity .15s ease;
}
.ph-wash-modal__btn:hover{ opacity:.92; transform: translateY(-1px); }

@media (max-width: 900px){
  .ph-accordions{ padding: 4px 14px 32px; }
  .ph-acc > summary{ font-size: 18px; padding: 18px 4px; }
  .ph-acc__body{ font-size: 14.5px; }
}

/* ============ PRESS / AUTHORITY MARQUEE ============ */
.press-bar{
  background:#1F1B17;
  color:#fff;
  overflow:hidden;
  padding:22px 0;
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.press-bar__track{
  display:flex;
  width:max-content;
  animation: pressScroll 38s linear infinite;
}
.press-bar__row{
  display:flex;
  align-items:center;
  gap:56px;
  padding-right:56px;
  flex-shrink:0;
}
.press-logo{
  font-family: Georgia, 'Times New Roman', serif;
  color:#fff;
  opacity:.92;
  white-space:nowrap;
  font-size:22px;
  line-height:1;
  letter-spacing:.5px;
  display:inline-flex;
  align-items:center;
  font-weight:700;
}
.press-logo--istoe{ font-family: Impact, 'Arial Black', sans-serif; font-weight:900; font-size:30px; letter-spacing:-1px; font-style:italic; }
.press-logo--casacor{ font-family: 'Helvetica Neue', Arial, sans-serif; font-weight:300; font-size:24px; letter-spacing:2px; }
.press-logo--veja{ font-family: 'Helvetica Neue', Arial, sans-serif; font-weight:900; font-size:34px; letter-spacing:-1.5px; text-transform:lowercase; }
.press-logo--g1{ font-family: 'Helvetica Neue', Arial, sans-serif; font-weight:900; font-size:32px; letter-spacing:-2px; }
.press-logo--forbes{ font-family:'Times New Roman', Georgia, serif; font-weight:900; font-size:30px; letter-spacing:-1px; }
@keyframes pressScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.press-bar:hover .press-bar__track{ animation-play-state: paused; }

/* ============ BENEFITS HERO (Wrap yourself) ============ */
.bh-section{
  background:#F5EFE6;
  padding: 72px 24px 88px;
}
.bh-head{
  max-width: 880px;
  margin: 0 auto 48px;
  text-align:center;
  color:#2A2522;
}
.bh-title{
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  margin: 0 0 18px;
}
.bh-sub{
  font-size: 16px;
  line-height: 1.6;
  color:#7C7066;
  margin: 0;
}
.bh-grid{
  max-width: 1180px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items:center;
}
.bh-media{
  border-radius: 24px;
  overflow:hidden;
  aspect-ratio: 1/1;
  background:#EAD9C7;
}
.bh-media img{ width:100%; height:100%; object-fit:cover; display:block; }
.bh-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.bh-item{
  background:#fff;
  border-radius: 999px;
  padding: 18px 22px;
  display:grid;
  grid-template-columns: auto 1fr auto;
  align-items:center;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(42,37,34,0.04);
  position:relative;
}
.bh-num{
  font-family:'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color:#B7522A;
  min-width: 28px;
}
.bh-label{
  font-size: 17px;
  font-weight: 600;
  color:#2A2522;
}
.bh-toggle{
  width:36px; height:36px;
  border-radius:50%;
  border:none;
  background:#B7522A;
  color:#fff;
  font-size:22px;
  font-weight:400;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition: transform .3s ease, background .2s ease;
}
.bh-toggle:hover{ background:#1F1B17; }
.bh-item.is-open{ border-radius: 24px; }
.bh-item.is-open .bh-toggle{ transform: rotate(45deg); }
.bh-body{
  grid-column: 1 / -1;
  max-height: 0;
  overflow:hidden;
  transition: max-height .35s ease, margin .35s ease;
}
.bh-item.is-open .bh-body{
  max-height: 200px;
  margin-top: 4px;
}
.bh-body p{
  margin: 8px 4px 4px 44px;
  color:#7C7066;
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 900px){
  .bh-section{ padding: 48px 16px 64px; }
  .bh-grid{ grid-template-columns: 1fr; gap: 28px; }
  .bh-head{ margin-bottom: 32px; }
  .bh-item{ padding: 14px 16px; gap: 12px; }
  .bh-label{ font-size: 15px; }
  .bh-num{ font-size: 19px; min-width: 24px; }
  .bh-toggle{ width:32px; height:32px; font-size:20px; }
  .bh-body p{ margin-left: 38px; font-size: 14px; }
  .press-logo{ font-size: 18px; }
  .press-logo--forbes{ font-size: 24px; }
  .press-logo--us{ font-size: 24px; }
  .press-bar__row{ gap: 40px; padding-right: 40px; }
}

/* Accordions inline na coluna do produto */
.ph-accordions--inline{
  margin-top: 18px;
  padding: 0;
  border-top: 1px solid rgba(42,37,34,.12);
}
.ph-accordions--inline .ph-acc{
  border-bottom: 1px solid rgba(42,37,34,.12);
}
.ph-accordions--inline .ph-acc > summary{
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .005em;
  color: var(--ph-ink);
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color .2s ease;
}
.ph-accordions--inline .ph-acc > summary:hover{ color:#B7522A; }
.ph-accordions--inline .ph-acc__title{
  display:inline-flex; align-items:center; gap:12px;
}
.ph-accordions--inline .ph-acc__icon{
  width:20px; height:20px; color:#B7522A; flex-shrink:0;
}
.ph-accordions--inline .ph-acc > summary::-webkit-details-marker{ display:none; }
.ph-accordions--inline .ph-acc__plus{
  position: relative;
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(183, 82, 42, 0.10);
  border: 1px solid rgba(183, 82, 42, 0.20);
  transition: background .2s ease, border-color .2s ease, transform .25s ease;
}
.ph-accordions--inline .ph-acc > summary:hover .ph-acc__plus{
  background: rgba(183, 82, 42, 0.18);
  border-color: rgba(183, 82, 42, 0.35);
}
.ph-accordions--inline .ph-acc__plus::before,
.ph-accordions--inline .ph-acc__plus::after{
  content:''; position:absolute; background:var(--ph-ink);
  left:50%; top:50%; border-radius: 2px;
}
.ph-accordions--inline .ph-acc__plus::before{ width:12px; height:2px; transform: translate(-50%,-50%); }
.ph-accordions--inline .ph-acc__plus::after{ width:2px; height:12px; transform: translate(-50%,-50%); transition: transform .25s ease; }
.ph-accordions--inline .ph-acc[open] .ph-acc__plus{ background: rgba(183, 82, 42, 0.18); }
.ph-accordions--inline .ph-acc[open] .ph-acc__plus::after{ transform: translate(-50%,-50%) scaleY(0); }
.ph-accordions--inline .ph-acc__body{
  padding: 4px 4px 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ph-ink-soft);
}
.ph-accordions--inline .ph-acc__body p{ margin: 0 0 10px; }
.ph-accordions--inline .ph-acc__list{ margin: 6px 0 0; padding-left: 18px; }
.ph-accordions--inline .ph-acc__list li{ margin-bottom: 6px; }
.ph-accordions--inline .ph-link{ color: #B7522A; text-decoration: underline; }

/* Depoimento embaixo da galeria */
.ph-testimonial{
  margin: 22px 0 0;
  padding: 22px 22px 20px;
  background: #EAD9C7;
  border-radius: 16px;
  color: var(--ph-ink);
}
.ph-testimonial__stars{
  color: #F6A69B;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.ph-testimonial blockquote{
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ph-ink);
}
.ph-testimonial figcaption{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ph-ink-soft);
}
.ph-testimonial figcaption strong{ color:var(--ph-ink); margin-right: 4px; }
.ph-testimonial__badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:16px; height:16px;
  border-radius:50%;
  background:#B7522A;
  color:#fff;
  font-size:10px;
  font-weight:700;
}
@media (max-width: 900px){
  .ph-testimonial{ margin-top: 18px; padding: 18px; }
  .ph-testimonial blockquote{ font-size: 14px; }
}

/* ============== Luxury Materials Section ============== */
.luxury-materials{
  padding: 80px 24px 40px;
  background: #F5EFE6;
}
.luxury-materials__inner{
  max-width: 1100px;
  margin: 0 auto;
}
.luxury-materials__title{
  font-family: 'Fraunces', Georgia, serif;
  text-align: center;
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  color: #2A2522;
  margin: 0 0 48px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.luxury-materials__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.luxury-card__media{
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #EAD9C7;
}
.luxury-card__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.luxury-card__title{
  font-family: 'Fraunces', Georgia, serif;
  text-align: center;
  margin: 22px 0 10px;
  font-size: 22px;
  color: #2A2522;
  font-weight: 700;
}
.luxury-card__text{
  text-align: center;
  color: #7C7066;
  font-size: 15px;
  line-height: 1.55;
  max-width: 360px;
  margin: 0 auto;
}
@media (max-width: 720px){
  .luxury-materials{ padding: 56px 18px 24px; }
  .luxury-materials__grid{ grid-template-columns: 1fr; gap: 28px; }
  .luxury-materials__title{ margin-bottom: 32px; }
}

/* ============== Comparison Section ============== */
.comparison-section{
  padding: 40px 24px 90px;
  background: #F5EFE6;
}
.comparison-card{
  max-width: 1080px;
  margin: 0 auto;
  background: #EAD9C7;
  border-radius: 32px;
  padding: 60px 40px 50px;
}
.comparison-title{
  font-family: 'Fraunces', Georgia, serif;
  text-align: center;
  font-size: clamp(24px, 3.2vw, 36px);
  color: #2A2522;
  font-weight: 700;
  margin: 0 0 44px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.comparison-table{
  display: flex;
  flex-direction: column;
  max-width: 820px;
  margin: 0 auto;
}
.comparison-row{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(42, 37, 34, 0.18);
}
.comparison-row:last-child{ border-bottom: none; }
.comparison-row--head{ border-bottom: none; }
.comparison-cell{
  padding: 18px 10px;
  text-align: center;
  font-size: 15px;
  color: #2A2522;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
}
.comparison-cell--feature{
  justify-content: flex-start;
  text-align: left;
  font-weight: 600;
  color: #2c2547;
  padding-left: 4px;
}
.comparison-row--head .comparison-cell{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #2A2522;
  padding: 20px 10px 24px;
}
.comparison-cell--us{
  background: linear-gradient(180deg, #fff 0%, #fff5ef 100%);
  border-radius: 16px 16px 0 0;
  position: relative;
}
.comparison-row:not(.comparison-row--head) .comparison-cell--us{
  border-radius: 0;
}
.comparison-row:last-child .comparison-cell--us{
  border-radius: 0 0 16px 16px;
}
.comparison-logo{
  height: 28px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.cmp-yes, .cmp-no{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cmp-yes{
  background: #ff8a5b;
  color: #fff;
}
.cmp-yes svg{ width: 13px; height: 13px; }
.cmp-no{
  color: #3a3550;
}
.cmp-no svg{ width: 18px; height: 18px; }

@media (max-width: 720px){
  .comparison-section{ padding: 24px 10px 70px; }
  .comparison-card{ padding: 32px 12px 26px; border-radius: 22px; }
  .comparison-title{ font-size: 20px; line-height: 1.25; margin-bottom: 24px; padding: 0 4px; }
  .comparison-title br{ display: none; }
  .comparison-row{ grid-template-columns: 1.35fr .9fr .9fr .9fr; }
  .comparison-cell{ font-size: 11.5px; padding: 12px 2px; gap: 3px; }
  .comparison-row--head .comparison-cell{ font-size: 10.5px; padding: 12px 2px 16px; line-height: 1.2; }
  .comparison-cell--feature{ font-size: 12px; padding-left: 2px; line-height: 1.2; }
  .comparison-logo{ height: 16px; }
  .cmp-yes, .cmp-no{ width: 16px; height: 16px; }
  .cmp-yes svg{ width: 9px; height: 9px; }
  .cmp-no svg{ width: 12px; height: 12px; }
}

/* ============== Sticky Buy Bar ============== */
.buy-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(183, 82, 42,0.18);
  box-shadow: 0 -8px 30px rgba(60,40,140,0.12);
  transform: translateY(110%);
  transition: transform .35s ease;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
}
.buy-bar.is-visible{ transform: translateY(0); }
.buy-bar__inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.buy-bar__product{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.buy-bar__thumb{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(183, 82, 42,0.12);
}
.buy-bar__info{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.buy-bar__title{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #2c2547;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.buy-bar__meta{
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #5a5470;
}
.buy-bar__stars{ color: #ff8a5b; letter-spacing: 1px; }
.buy-bar__cta{
  background: linear-gradient(135deg, #6a51d4, #4b3aa8);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(183, 82, 42,0.35);
  transition: transform .15s ease, box-shadow .2s ease;
}
.buy-bar__cta:hover{ transform: translateY(-1px); box-shadow: 0 6px 18px rgba(183, 82, 42,0.45); }

@media (max-width: 560px){
  .buy-bar{ padding: 8px 12px calc(8px + env(safe-area-inset-bottom)); }
  .buy-bar__inner{ gap: 10px; }
  .buy-bar__thumb{ width: 48px; height: 48px; border-radius: 12px; }
  .buy-bar__title{ font-size: 13.5px; }
  .buy-bar__meta{ font-size: 11.5px; }
  .buy-bar__cta{ padding: 11px 18px; font-size: 14px; }
}

/* ============================================================
   TYPOGRAPHY HARMONIZATION LAYER (final override)
   Unifica tamanhos, line-heights e responsividade mobile.
   ============================================================ */

html { -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }
.ph-hero, .ph-hero__inner, .ph-info, .ph-gallery { max-width: 100%; min-width: 0; }
.ph-title { word-wrap: break-word; overflow-wrap: anywhere; }

body {
  font-size: 16px;
  line-height: 1.55;
  font-feature-settings: "kern" 1, "liga" 1;
}

/* Hierarchy — serif (Playfair) for emotional headings, sans for UI */
.ph-title,
.reviews-title,
.faq-header h2,
.luxury-materials__title,
.comparison-title,
.bh-section h2,
.benefits-story__panel h2,
.color-ribbon-section h2,
.product-mini h3,
.product-mini h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.012em;
}

.ph-title { font-size: clamp(26px, 3.6vw, 40px); }
.reviews-title,
.faq-header h2,
.luxury-materials__title,
.comparison-title,
.bh-section h2,
.benefits-story__panel h2,
.color-ribbon-section h2 { font-size: clamp(24px, 3.2vw, 36px); }

h3 { line-height: 1.25; letter-spacing: -0.005em; }

p { line-height: 1.6; }

/* Buttons consistent */
.ph-cta,
.write-review-btn,
.buy-bar__cta,
.mobile-menu-cta {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
}

/* ===== Mobile refinements (≤640px) ===== */
@media (max-width: 640px) {
  body { font-size: 15px; }

  .ph-title { font-size: 24px; line-height: 1.18; }
  .ph-price { font-size: 22px; }
  .ph-price-old { font-size: 14px; }

  .ph-features li,
  .ph-trust { font-size: 13px; }

  .reviews-title,
  .faq-header h2,
  .luxury-materials__title,
  .comparison-title,
  .bh-section h2,
  .benefits-story__panel h2,
  .color-ribbon-section h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .luxury-card__title { font-size: 18px; margin-top: 16px; }
  .luxury-card__text { font-size: 14px; }

  .review-card { font-size: 14px; }
  .review-card__header strong { font-size: 14px; }
  .review-comment { font-size: 14px; line-height: 1.55; }

  .faq-question span:first-child { font-size: 15px; }
  .faq-answer p { font-size: 14px; line-height: 1.6; }

  .ph-acc__title { font-size: 15px !important; }

  .topbar p { font-size: 12px; }

  /* Reduzir paddings excessivos no mobile */
  .reviews-section,
  .faq-section,
  .luxury-materials,
  .comparison-section,
  .bh-section,
  .benefits-story-section { padding-left: 16px; padding-right: 16px; }

  .comparison-card { padding: 32px 14px 26px; }

  /* Add bottom space para a buy-bar não cobrir o conteúdo */
  main { padding-bottom: 90px; }
}

/* ===== Tablet (641–960) refinements ===== */
@media (min-width: 641px) and (max-width: 960px) {
  .ph-title { font-size: 30px; }
}

/* Reserve space below buy bar on desktop too */
@media (min-width: 641px) {
  main { padding-bottom: 100px; }
}

/* Smooth scroll for anchor links */
html { scroll-behavior: smooth; }

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

/* Size guide modal */
.size-guide-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:20px}
.size-guide-modal[hidden]{display:none}
.size-guide-modal__backdrop{position:absolute;inset:0;background:rgba(15,12,40,.72);backdrop-filter:blur(4px);cursor:pointer}
.size-guide-modal__dialog{position:relative;max-width:560px;width:100%;max-height:92vh;background:#fff;border-radius:20px;box-shadow:0 30px 80px rgba(15,12,40,.35);overflow:hidden;animation:sgmIn .25s ease}
.size-guide-modal__dialog img{display:block;width:100%;height:auto;max-height:92vh;object-fit:contain}
.size-guide-modal__close{position:absolute;top:10px;right:12px;width:36px;height:36px;border-radius:50%;border:none;background:rgba(255,255,255,.92);color:#1a1a3a;font-size:24px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(15,12,40,.18);transition:transform .15s ease}
.size-guide-modal__close:hover{transform:scale(1.08)}
@keyframes sgmIn{from{opacity:0;transform:scale(.96)}to{opacity:1;transform:scale(1)}}

.brand-logo--text{font-family:"Fraunces",serif;font-weight:800;font-size:24px;letter-spacing:.3px;color:var(--pp-iron);text-transform:none;display:inline-flex;gap:4px;align-items:baseline;}
.brand-logo--text strong{color:var(--pp-orange);font-weight:800;font-style:italic;}
.comparison-logo.brand-logo--text{font-size:18px;}

/* ============================================================
   MARKETPLACE OVERRIDE LAYER
   - White-ish surfaces (ML/Shopee/Amazon feel)
   - Green buy CTAs
   - Tighter, flatter cards
   ============================================================ */
:root{
  --mkt-bg: #ebebeb;
  --mkt-surface: #ffffff;
  --mkt-line: #e6e6e6;
  --mkt-ink: #2d3277;
  --mkt-text: #333333;
  --mkt-muted: #737373;
  --mkt-accent: #B7522A;
  --mkt-green: #00a650;
  --mkt-green-dark: #008a43;
  --mkt-yellow: #fff159;
}

body{
  background: var(--mkt-bg) !important;
  color: var(--mkt-text);
  font-family: "Inter","Proxima Nova",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif !important;
}

/* Hero / sections flatten to white card on gray bg */
.hero,
.section-shell,
.benefits-story-section,
.color-ribbon-section,
.luxury-materials,
.comparison-section,
.reviews-section,
.ph-accordions,
.ph-accordions--inline{
  background: var(--mkt-surface) !important;
}

.hero{
  border-bottom: 1px solid var(--mkt-line);
}

/* Section divider becomes neutral gray gap */
.section-divider,
.section-divider--soft{
  background: var(--mkt-bg) !important;
  height: 8px !important;
  border: none !important;
}

/* Cards: subtle border, no heavy shadow */
.luxury-card,
.comparison-card,
.reviews-summary-card,
.review-card,
.ph-accordion,
.ph-testimonial,
.benefits-story__panel{
  background: var(--mkt-surface) !important;
  border: 1px solid var(--mkt-line) !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 2px rgba(0,0,0,.04) !important;
}

/* === GREEN BUY CTA === */
.ph-cta{
  background: var(--mkt-green) !important;
  color:#fff !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 0 var(--mkt-green-dark) !important;
  padding: 14px 22px !important;
}
.ph-cta:hover{
  background: var(--mkt-green-dark) !important;
  transform: none !important;
}
.ph-cta__main{ font-size:16px !important; font-weight:700 !important; }
.ph-cta__sub{ font-size:12px !important; opacity:.95 !important; font-weight:500 !important; }

.buy-bar{
  background: var(--mkt-surface) !important;
  border-top: 1px solid var(--mkt-line) !important;
  box-shadow: 0 -2px 12px rgba(0,0,0,.08) !important;
}
.buy-bar__cta{
  background: var(--mkt-green) !important;
  color:#fff !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 0 var(--mkt-green-dark) !important;
  font-weight: 700 !important;
}
.buy-bar__cta:hover{
  background: var(--mkt-green-dark) !important;
  box-shadow: 0 2px 0 var(--mkt-green-dark) !important;
}

.mobile-menu-nav .mobile-menu-cta{
  background: var(--mkt-green) !important;
  border-radius: 6px !important;
  box-shadow: 0 2px 0 var(--mkt-green-dark) !important;
}

/* Header → marketplace bar (white w/ subtle blue/orange accent) */
.site-header,
.site-header__inner{
  background: var(--mkt-surface) !important;
  border-bottom: 1px solid var(--mkt-line) !important;
  box-shadow: none !important;
}

/* Star color → marketplace yellow */
.ph-testimonial__stars,
.review-stars,
.buy-bar__stars,
.review-card__stars{
  color: #f5a623 !important;
  letter-spacing: 1px !important;
}

/* Price emphasis (if present) — green to reinforce CTA */
.price, .ph-price__current, .price__current, .product-price{
  color: #333 !important;
}

/* Pills, badges → marketplace style */
.ph-pill,
.reviews-summary-badge{
  background: #f5f5f5 !important;
  color: var(--mkt-text) !important;
  border: 1px solid var(--mkt-line) !important;
  border-radius: 4px !important;
  font-weight: 600 !important;
}

/* Reduce gradient blocks */
.hero-bg,
[class*="__bg"]{
  background: transparent !important;
}

/* Trust icons accent green */
.ph-trust__item svg{ color: var(--mkt-green) !important; }


/* Price now + flash sale */
.ph-price-now{ display:flex; align-items:baseline; gap:8px; margin-top:2px; }
.ph-price-now__label{ font-size:14px; color:var(--mkt-muted); }
.ph-price-now .ph-price{ font-size:34px; color:#1a1a1a; }

.flash-sale{
  display:flex; align-items:center; gap:10px;
  margin-top:10px; padding:8px 12px;
  background:#fff4f0; border:1px solid #ffd9c9; border-radius:6px;
  font-size:13px;
}
.flash-sale__tag{
  display:inline-flex; align-items:center; gap:4px;
  color:#e85d2c; font-weight:800; letter-spacing:.3px;
  font-size:13px; text-transform:uppercase;
}
.flash-sale__bolt{ color:#e85d2c; font-size:15px; line-height:1; }
.flash-sale__text{ color:#333; }
.flash-sale__text strong{ color:#e85d2c; font-weight:700; }

/* === Marketplace look for product info block === */
.ph-info{ font-family: 'Inter', system-ui, -apple-system, sans-serif; }

/* Rating: ML-style condensed */
.ph-rating{ font-size:13px; color:#3483fa !important; font-weight:400; gap:4px; }
.ph-stars{ color:#3483fa !important; font-size:13px; letter-spacing:1px; }
.ph-rating__count{ color:#3483fa; }

/* Title: sans-serif, regular weight */
.ph-title{
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  color: #1a1a1a !important;
  margin: 6px 0 14px !important;
}
@media (max-width: 768px){
  .ph-title{ font-size: 17px !important; }
}

/* Price block — Mercado Livre style */
.ph-price-row{
  display:flex !important;
  gap:10px !important; margin: 0 !important;
  align-items:center !important;
  flex-wrap: wrap;
}
.ph-price-old{
  font-size: 14px !important; color:#999 !important;
  text-decoration: line-through; font-weight:400;
  margin:0 !important;
}
.ph-price-now{
  display:flex !important; align-items:baseline !important;
  gap:12px !important; margin: 2px 0 0 !important;
}
.ph-price-now__label{ display:none !important; }
.ph-price-now .ph-price{
  font-size: 40px !important; font-weight: 400 !important;
  color: #1a1a1a !important; line-height: 1.1;
  letter-spacing: -0.5px;
}
.ph-price-save{
  background: transparent !important; color:#00a650 !important;
  font-size: 16px !important; font-weight: 600 !important;
  padding: 0 !important; border-radius: 0 !important;
  align-self: center;
}

/* Flash sale: punchy banner */
.flash-sale{
  display: inline-flex !important;
  align-items: center !important;
  margin: 14px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 6px !important;
  font-size: 13px !important;
  gap: 0 !important;
  overflow: hidden;
  width: fit-content;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.flash-sale__tag{
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 12px !important; font-weight: 800 !important;
  letter-spacing: .4px !important;
  color: #fff !important;
  background: #e85d2c;
  padding: 7px 11px 7px 10px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 50%, 100% 100%, 0 100%);
  padding-right: 18px;
}
.flash-sale__bolt{
  font-size: 14px !important;
  color: #fff !important;
  filter: drop-shadow(0 0 2px rgba(255,255,255,.4));
}
.flash-sale__text{
  color: #333 !important;
  font-size: 12.5px !important;
  background: #fff4f0;
  padding: 7px 12px 7px 6px;
  border: 1px solid #ffd9c9;
  border-left: none;
  margin-left: -8px;
}
.flash-sale__text strong{ color: #e85d2c !important; font-weight: 700 !important; }

/* Pix block — flat marketplace card */
.ph-pix{
  background: #fff !important;
  border: 1px solid var(--mkt-line) !important;
  border-radius: 4px !important;
  padding: 10px 12px !important;
  margin-top: 14px !important;
  width: 100% !important;
  gap: 8px !important;
  font-size: 13px !important;
}
.ph-pix strong{ font-size:14px !important; font-weight:600 !important; }
.ph-pix__icon{
  background: transparent !important;
  padding: 0 !important;
}
.ph-pix__icon img{ width:22px !important; height:22px !important; }

/* ============================================================
   ML-STYLE PRODUCT INFO (first fold)
   ============================================================ */

/* Hide legacy pix block (replaced by installments line) */
.ph-pix{ display:none !important; }

/* --- Compact ML layout --- */
.ph-info{ padding: 4px 2px !important; }

/* Price block */
.ml-price-block{
  display:flex; flex-direction:column; gap:0;
  margin: 0 0 6px;
}
.ml-price-line{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
}
.ml-price-old{
  font-size: 12px; color:#999;
  text-decoration: line-through; font-weight:400;
  order:-1; margin:0 0 -2px; line-height:1.2;
}
.ml-discount-badge{
  background:#e63946; color:#fff;
  font-size: 11px; font-weight: 700;
  padding: 2px 6px; border-radius: 3px;
  line-height: 1.4; letter-spacing:.2px;
}
.ml-price-now{
  display:inline-flex; align-items:baseline; gap:0;
  color:#1a1a1a; font-weight: 400;
}
.ml-currency{ font-size:14px; margin-right:3px; color:#1a1a1a; }
.ml-price-int{ font-size:30px; line-height:1; letter-spacing:-0.5px; font-weight:300; }
.ml-price-cents{ font-size:14px; line-height:1; font-weight:300; }

/* Installments */
.ml-installments{
  display:flex; align-items:center; gap:8px;
  text-decoration:none; color:#333;
  font-size: 13px;
  margin: 2px 0 10px;
  width: fit-content;
}
.ml-inst-icon{ width:18px; height:18px; color:#333; flex-shrink:0; }
.ml-inst-text{ color:#333; }
.ml-inst-text strong{ font-weight:600; color:#1a1a1a; }
.ml-inst-text em{ color:#00a650; font-style:normal; font-weight:600; margin-left:2px; }
.ml-installments .ml-chev{ color:#bdbdbd; font-size:16px; margin:0 0 0 2px; }

/* Flash sale — tighter */
.flash-sale{
  margin: 4px 0 10px !important;
  font-size: 12px !important;
  box-shadow: none !important;
}
.flash-sale__tag{
  font-size: 10.5px !important;
  padding: 4px 14px 4px 7px !important;
  gap: 3px !important;
}
.flash-sale__bolt{ font-size:12px !important; }
.flash-sale__text{
  font-size: 11.5px !important;
  padding: 4px 8px 4px 4px !important;
  line-height: 1.25 !important;
}

/* Title */
.ph-info .ph-title{
  margin: 10px 0 4px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  line-height: 1.3 !important;
}

/* Rating */
.ml-rating{
  display:flex; align-items:center; gap:5px;
  font-size: 12px; color:#737373;
  margin: 0 0 10px;
}
.ml-rating-num{ color:#737373; }
.ml-rating-stars{ color:#3483fa; letter-spacing:1px; font-size:12px; }
.ml-rating-count{ color:#3483fa; }
.ml-rating-sep{ color:#d6d6d6; margin: 0 3px; }
.ml-rating-sold{ color:#737373; }

/* Shipping */
.ml-shipping{
  display:flex; align-items:center; gap:10px;
  padding: 10px 0;
  border-top: 1px solid var(--mkt-line);
  border-bottom: 1px solid var(--mkt-line);
  margin: 6px 0 12px;
}
.ml-ship-icon{ width:24px; height:24px; color:#1a1a1a; flex-shrink:0; }
.ml-ship-text{ flex:1; }
.ml-ship-text p{ margin:0; font-size:13px; color:#1a1a1a; line-height:1.35; }
.ml-ship-free{ color:#00a650; font-weight:600; }
.ml-ship-sep{ color:#d6d6d6; margin: 0 4px; }
.ml-ship-old{ color:#999; text-decoration: line-through; font-size:12px; }
.ml-ship-receive{ color:#1a1a1a; margin-top:1px !important; font-size:12.5px !important; }

/* Chevron */
.ml-chev{
  color:#bdbdbd; font-size:18px; font-weight:300;
  line-height:1; align-self:center; margin-left:auto;
}

/* Protection */
.ml-protection{
  border-top: 1px solid var(--mkt-line);
  border-bottom: 1px solid var(--mkt-line);
  padding: 12px 0;
  margin: 12px 0;
}
.ml-protection-head{
  display:flex; align-items:center; gap:8px;
  color:#8a6a2a; font-weight:600; font-size:14px;
  margin-bottom:8px;
}
.ml-protection-head svg{ width:18px; height:18px; color:#8a6a2a; }
.ml-protection-list{
  list-style:none; padding:0 0 0 2px; margin:0;
  display:grid; grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
  font-size:12.5px; color:#1a1a1a;
}
.ml-protection-list li{ display:flex; align-items:center; gap:6px; line-height:1.3; }
.ml-check{ color:#8a6a2a; font-weight:700; }

/* Compact ph-group (cores) */
.ph-info .ph-group{ gap:6px !important; margin: 4px 0 !important; }
.ph-info .ph-group__label{ font-size:13px !important; }

@media (max-width: 480px){
  .ml-protection-list{ grid-template-columns: 1fr 1fr; gap: 3px 10px; font-size:12px; }
  .ml-price-int{ font-size:28px; }
}

/* ===== First-fold white bg + tight spacing override ===== */
.ph-hero{
  background: #ffffff !important;
  padding: 12px 14px 20px !important;
}
.ph-hero__inner{ gap: 16px !important; }

.ph-info{
  gap: 0 !important;
  background: #ffffff !important;
}
/* Kill the mobile double-spacing rule */
.ph-info > * + *{ margin-top: 0 !important; }

/* Tight, deliberate vertical rhythm */
.ph-info .ml-price-block{ margin: 0 0 4px !important; }
.ph-info .ml-installments{ margin: 0 0 8px !important; }
.ph-info .flash-sale{ margin: 0 0 12px !important; }
.ph-info .ph-title{ margin: 0 0 6px !important; }
.ph-info .ml-rating{ margin: 0 0 10px !important; }
.ph-info .ml-shipping{ margin: 0 0 12px !important; padding: 10px 0 !important; }
.ph-info .ph-group{ margin: 0 0 12px !important; }
.ph-info .ph-bullets{ margin: 0 0 12px !important; }
.ph-info .ml-protection{ margin: 0 0 14px !important; padding: 12px 0 !important; }
.ph-info .ph-cta{ margin: 4px 0 12px !important; }
.ph-info .ph-trust{ margin: 0 0 12px !important; }

/* Rating as link, count underlined */
a.ml-rating{ text-decoration: none; color: inherit; cursor: pointer; }
a.ml-rating .ml-rating-count{ text-decoration: underline; text-underline-offset: 2px; }

/* Trim bullets list spacing */
.ph-info .ph-bullets{ gap: 6px !important; }
.ph-info .ph-bullets li{ padding: 6px 0 !important; font-size: 13px !important; }

@media (max-width: 900px){
  .ph-hero{ padding: 10px 14px 18px !important; }
}

.brand-logo--img{ display:block; height:40px; width:auto; object-fit:contain; }
.mobile-menu-logo.brand-logo--img{ height:40px; width:auto; }
.comparison-logo.brand-logo--img{ height:32px; width:auto; }

