/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --color-primary: #971052;
  --color-accent: #d80f83;
  --color-bg: #f8f8f8;
  --color-surface: #fff;
  --color-surface-muted: #f0f0f0;
  --color-surface-warm: #f0ede9;
  --color-text: #3e3c3b;
  --color-text-body: rgba(62, 60, 59, 0.75);
  --color-text-muted: #707372;
  --color-on-primary: #f8f7f2;
  --color-line: #d9d9d9;
  --color-alert-bg: #fff4e8;
  --color-alert-line: #f5d9b8;
  --color-error: #c1121f;
  --font: "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-checkout: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --gutter: 16px;
  --max: 1400px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (min-width: 768px) { :root { --gutter: 50px; } }

/* ==========================================================================
   Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--color-bg); color: var(--color-text);
  font: 400 16px/1.8 var(--font); letter-spacing: 0.6px;
}
body.is-locked { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; letter-spacing: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, p, ul, dl, dd { margin: 0; }
ul { padding: 0; list-style: none; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 0; background: var(--color-primary); color: #fff; padding: 8px 14px; z-index: 200; }
.skip:focus { left: 8px; }
.muted { color: var(--color-text-muted); }
.overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); animation: fade 0.25s var(--ease); }
@keyframes fade { from { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }

/* ==========================================================================
   Buttons, badges, prices
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 47px; padding: 0 30px; border: 1px solid var(--color-primary); border-radius: 0;
  background: var(--color-primary); color: #fff; text-decoration: none;
  font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; line-height: 1;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}
.btn:hover:not(:disabled) { background: #7d0d44; }
.btn:disabled { background: #cfcfcf; border-color: #cfcfcf; cursor: not-allowed; }
.btn--block { display: flex; width: 100%; }
.btn--grow { flex: 1; }
.btn--ghost { background: transparent; color: var(--color-primary); }
.btn--ghost:hover:not(:disabled) { background: var(--color-primary); color: #fff; }
.btn--sm { height: 38px; padding: 0 18px; }
.btn--lg { height: 54px; font-size: 13px; }
.btn.is-loading { pointer-events: none; color: transparent; position: relative; }
.btn.is-loading::after { content: ""; position: absolute; width: 18px; height: 18px; border: 2px solid #fff; border-right-color: transparent; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.icon-btn { background: none; border: 0; padding: 6px; display: inline-grid; place-items: center; color: var(--color-text); line-height: 0; text-decoration: none; position: relative; }
.badge { position: absolute; top: 8px; left: 8px; background: #ece3d8; color: var(--color-text); font-size: 12px; padding: 2px 9px; line-height: 1.6; letter-spacing: 1px; }
.badge--soldout { background: #fff; border: 1px solid var(--color-line); }
.tag { background: var(--color-primary); color: #fff; font-size: 12px; padding: 2px 8px; vertical-align: middle; letter-spacing: 1px; }
.price { font-size: 15px; letter-spacing: 1px; }
.price strong { font-weight: 700; }
.price s { color: var(--color-text-muted); font-size: 13px; margin-right: 4px; }
.price--lg { font-size: 18px; }
.price__inst { font-size: 12px; color: var(--color-text-muted); min-height: 1.4em; }

/* ==========================================================================
   Announcement bar, header, nav
   ========================================================================== */
.announce { background: var(--color-primary); color: #f8f8f8; height: 38px; display: flex; align-items: center; justify-content: space-between; padding-inline: 12px; position: relative; font-size: 14px; letter-spacing: 1px; }
.announce__msgs { flex: 1; position: relative; height: 100%; overflow: hidden; }
.announce__msg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; transform: translateX(30px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s; pointer-events: none; line-height: 1.2; font-size: 12px; }
.announce__msg.is-active { transform: none; opacity: 1; pointer-events: auto; }
.announce__nav { background: none; border: 0; color: #fff; font-size: 22px; padding: 0 6px; line-height: 1; }
@media (min-width: 768px) { .announce { padding-inline: 50px; } .announce__msg { font-size: 14px; } }

.header { position: sticky; top: 0; z-index: 50; background: var(--color-bg); transition: transform 0.3s var(--ease); }
.header.is-hidden { transform: translateY(-100%); }
.header__top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-block: 12px 8px; }
.header__left, .header__right { display: flex; align-items: center; gap: 4px; }
.header__right { justify-content: flex-end; }
.header__search { color: var(--color-primary); }
.header__account { display: none; }
.header__bag .bubble, .bubble { position: absolute; top: -2px; right: -4px; min-width: 18px; height: 18px; border-radius: 9px; background: var(--color-primary); color: #fff; font-size: 11px; line-height: 18px; text-align: center; padding: 0 4px; letter-spacing: 0; }
.logo { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: #6e6e6e; font-weight: 700; font-size: 20px; letter-spacing: 3px; line-height: 1; }
.logo .lips { width: 34px; height: 20px; color: var(--color-primary); }
.nav { display: none; }
@media (min-width: 992px) {
  .header__top { padding-block: 20px 12px; }
  .header__burger { display: none; }
  .header__account { display: inline-grid; }
  .logo { font-size: 26px; }
  .nav { display: block; }
  .nav__list { display: flex; justify-content: center; gap: 22px; padding-bottom: 8px; }
  .nav__link { display: inline-flex; align-items: center; gap: 6px; padding: 8px 0; font-weight: 600; text-decoration: none; }
  .nav__link .caret { transition: transform 0.2s; }
  .nav__item.is-open > .nav__link { color: var(--color-primary); }
  .nav__item.is-open .caret { transform: rotate(180deg); }
  .nav__panel { position: absolute; left: 0; right: 0; background: #fff; box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s; }
  .nav__item.is-open .nav__panel { opacity: 1; visibility: visible; transform: none; }
  .nav__panel-in { display: flex; justify-content: space-between; align-items: flex-start; padding-block: 24px; }
  .nav__panel ul { display: grid; gap: 20px; }
  .nav__panel a { font-size: 14px; font-weight: 600; text-decoration: none; }
  .nav__panel a:hover { color: var(--color-primary); text-decoration: underline; }
  .nav__panel img { width: 220px; height: 220px; object-fit: cover; }
}

/* menu mobile */
.mnav { position: fixed; inset: 0; z-index: 120; }
.mnav__panel { position: absolute; left: 0; top: 0; bottom: 0; width: min(86vw, 380px); background: #fff; overflow-y: auto; padding: 12px 20px 24px; animation: slideL 0.25s var(--ease); z-index: 1; }
@keyframes slideL { from { transform: translateX(-100%); } }
.mnav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.mnav__group summary, .mnav__link { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-weight: 600; border-bottom: 1px solid #eee; list-style: none; text-decoration: none; cursor: pointer; }
.mnav__group summary::-webkit-details-marker { display: none; }
.mnav__group ul { padding: 4px 0 8px 12px; }
.mnav__group li a { display: block; padding: 8px 0; text-decoration: none; font-size: 14px; }
.mnav__link--account { border-bottom: 0; color: var(--color-primary); }

/* busca */
.search { position: fixed; inset: 0; z-index: 130; }
.search__box { position: absolute; z-index: 1; top: 0; left: 0; right: 0; background: #fff; padding-block: 16px; display: grid; grid-template-columns: 1fr auto; gap: 8px; max-width: none; }
.search__box input { height: 46px; border: 1px solid var(--color-line); padding: 0 14px; font: inherit; font-size: 16px; }
.search__results { grid-column: 1 / -1; max-height: 60vh; overflow: auto; }
.search__results a { display: grid; grid-template-columns: 48px 1fr auto; gap: 12px; align-items: center; padding: 8px 0; text-decoration: none; border-bottom: 1px solid #eee; }
.search__empty { padding: 12px 0; color: var(--color-text-muted); }

.shipbar { background: var(--color-accent); color: #fff; text-align: center; font-size: 13px; line-height: 30px; min-height: 30px; letter-spacing: 0.8px; }

/* drawer da sacola */
.drawer { position: fixed; inset: 0; z-index: 140; }
.drawer__panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(100%, 420px); background: #fff; display: flex; flex-direction: column; animation: slideR 0.3s var(--ease); z-index: 1; }
@keyframes slideR { from { transform: translateX(100%); } }
#drawer-inner { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; border-bottom: 1px solid #eee; }
.drawer__head h2 { font-size: 14px; font-weight: 600; }
.drawer__ship { background: var(--color-accent); color: #fff; padding: 10px 20px 12px; font-size: 13px; text-align: center; }
.meter { height: 5px; background: rgba(255, 255, 255, 0.35); margin-top: 8px; }
.meter i { display: block; height: 100%; background: #fff; transition: width 0.4s var(--ease); }
.drawer__lines { flex: 1; overflow-y: auto; padding: 8px 20px; }
.line { display: grid; grid-template-columns: 80px 1fr auto; gap: 12px; padding: 14px 24px 14px 0; border-bottom: 1px solid #f0f0f0; position: relative; }
.line img { width: 80px; height: 80px; object-fit: cover; background: #f2f2f2; }
.line__name { font-size: 13px; font-weight: 600; line-height: 1.4; }
.line__meta { font-size: 12px; color: var(--color-text-muted); line-height: 1.5; }
.line__price { text-align: right; font-size: 13px; display: grid; align-content: start; }
.line__price s { color: var(--color-text-muted); font-size: 12px; }
.line__x { position: absolute; right: -6px; top: 8px; color: var(--color-text-muted); }
.qty { display: inline-flex; border: 1px solid var(--color-line); height: 44px; background: #fff; }
.qty button { width: 40px; border: 0; background: none; font-size: 18px; }
.qty input, .qty span { width: 44px; text-align: center; border: 0; font: inherit; display: grid; place-items: center; background: none; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty--sm { height: 30px; margin-top: 6px; }
.qty--sm button { width: 28px; font-size: 15px; }
.qty--sm span { width: 30px; font-size: 13px; }
.drawer__foot { padding: 16px 20px 20px; border-top: 1px solid #eee; display: grid; gap: 10px; }
.drawer__sub { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; }
.drawer__sub s { color: var(--color-text-muted); font-weight: 400; }
.drawer__note { font-size: 11px; color: var(--color-text-muted); text-align: center; }
.drawer__empty { flex: 1; display: grid; place-content: center; justify-items: center; gap: 16px; text-align: center; }

/* cookies + chat */
.cookie { position: fixed; z-index: 90; left: 12px; right: 12px; bottom: 12px; max-width: 560px; background: #fff; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18); padding: 14px 16px; font-size: 13px; line-height: 1.5; display: grid; gap: 10px; }
.cookie div { display: flex; gap: 8px; justify-content: flex-end; }
body:has(.cookie:not([hidden])) 
/* ==========================================================================
   Footer
   ========================================================================== */
.footer { position: relative; background: var(--color-primary); color: var(--color-on-primary); margin-top: 52px; padding: 48px 0 32px; overflow: hidden; }
.footer__mark { position: absolute; left: -20px; top: -10px; width: 260px; opacity: 0.12; color: #fff; }
.footer__grid { position: relative; display: grid; gap: 28px; grid-template-columns: 1fr 1fr; }
.footer__social { display: flex; gap: 10px; grid-column: 1 / -1; }
.footer__social a { width: 32px; height: 32px; border-radius: 6px; background: #fff; display: grid; place-items: center; }
.footer h2 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.footer li { margin-bottom: 6px; }
.footer a { font-size: 14px; font-weight: 600; color: rgba(248, 247, 242, 0.75); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer__legal { position: relative; margin-top: 36px; text-align: center; font-size: 12px; }
.footer__policies { display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: center; }
.footer__policies a, .footer__policies button { font-size: 11px; text-decoration: underline; background: none; border: 0; color: rgba(248, 247, 242, 0.85); padding: 0; }
.footer__pay { display: flex; gap: 8px; justify-content: center; margin: 20px 0; }
.paytag { background: #fff; color: var(--color-primary); font-weight: 700; padding: 2px 14px; border-radius: 4px; font-size: 13px; }
.paytag--muted { background: transparent; border: 1px solid rgba(255, 255, 255, 0.5); color: #fff; font-weight: 400; }
.footer hr { border: 0; border-top: 1px solid rgba(255, 255, 255, 0.25); margin: 16px 0; }
@media (min-width: 992px) { .footer__grid { grid-template-columns: 120px repeat(3, 1fr); } .footer__social { grid-column: auto; flex-direction: column; } }

/* ==========================================================================
   Home
   ========================================================================== */
.hero { position: relative; background: #f6b8d2; overflow: hidden; }
.hero__slides { display: grid; }
.hero__slide { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateX(3%); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), visibility 0.5s; display: block; }
.hero__slide.is-active { opacity: 1; visibility: visible; transform: none; }
.hero__slide img { width: 100%; height: auto; }
.hero__ctrl { position: absolute; right: 12px; bottom: 10px; display: flex; gap: 6px; }
.hero__btn { width: 34px; height: 34px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.85); color: var(--color-primary); font-size: 16px; line-height: 1; }
.hero__btn:hover { background: #fff; }
@media (min-width: 992px) { .hero__ctrl { right: 50px; bottom: 18px; } }

.benefits { background: var(--color-surface-warm); }
.benefits__list { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin: 0 auto; }
.benefits__list li { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 12px 6px; text-align: center; color: var(--color-accent); line-height: 1.3; font-size: 12px; }
.benefits__list li + li { border-left: 1px solid #d8d3cd; }
.benefits__list img { width: 28px; height: 28px; }
.benefits__list strong { display: block; font-weight: 700; }
@media (min-width: 768px) {
  .benefits { background: var(--color-surface-muted); }
  .benefits__list li { flex-direction: row; justify-content: center; gap: 12px; height: 71px; padding: 0; font-size: 14px; text-align: left; }
  .benefits__list img { width: 32px; height: 32px; }
}

.section { margin-top: 36px; }
@media (min-width: 768px) { .section { margin-top: 52px; } }
.section__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section__head h2 { font-size: 26px; font-weight: 400; line-height: 1.2; }
@media (min-width: 768px) { .section__head h2 { font-size: 34px; } }
.link-caps { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--color-primary); }

/* slider */
.slider { position: relative; }
.slider__track { display: flex; gap: 8px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-behavior: smooth; }
.slider__track::-webkit-scrollbar { display: none; }
.slider__item { flex: 0 0 calc((100% - 8px) / 2); scroll-snap-align: start; min-width: 0; }
.slider__nav { position: absolute; top: 38%; z-index: 3; width: 40px; height: 40px; border-radius: 50%; border: 0; background: #fff; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); font-size: 22px; line-height: 1; display: none; }
.slider__nav--prev { left: -8px; } .slider__nav--next { right: -8px; }
@media (min-width: 768px) {
  .slider__track { gap: 16px; }
  .slider__item { flex-basis: calc((100% - 32px) / 3); }
  .slider__nav { display: block; }
  .slider__nav--prev { left: -20px; } .slider__nav--next { right: -20px; }
}
@media (min-width: 1100px) { .slider--cards .slider__item { flex-basis: calc((100% - 48px) / 4); } }

/* card de produto */
.card { background: var(--color-surface); height: 100%; display: flex; flex-direction: column; animation: rise 0.5s var(--ease) both; }
.card__media { position: relative; display: block; aspect-ratio: 1; overflow: hidden; background: #f2f2f2; }
.card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity 0.4s, transform 0.5s; }
.card__img--hover { opacity: 0; }
.card:hover .card__img--hover { opacity: 1; }
.card:hover .card__img { transform: scale(1.03); }
.card__shades { position: absolute; right: 10px; bottom: 8px; font-size: 12px; text-decoration: underline; }
.card__body { padding: 12px 12px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card__title { font-size: 16px; font-weight: 500; line-height: 1.3; color: var(--color-text-muted); }
.card__title a { text-decoration: none; }
.card__title a:hover { text-decoration: underline; text-decoration-thickness: 2px; }
.card__sub { font-size: 12px; letter-spacing: 0.4px; color: var(--color-text-muted); line-height: 1.4; min-height: 1.4em; }
.card .btn { margin-top: auto; }
.swatches { display: flex; align-items: center; gap: 2px; margin: 6px 0 10px; min-height: 30px; }
.swatches__track { display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; flex: 1; padding: 3px; scroll-snap-type: x proximity; }
.swatches__track::-webkit-scrollbar { display: none; }
.swatches__nav { border: 0; background: none; font-size: 18px; width: 18px; color: var(--color-text-muted); padding: 0; }
.swatch { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--c); border: 1px solid rgba(0, 0, 0, 0.15); padding: 0; scroll-snap-align: start; }
.swatch.is-selected { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-primary); }

.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-block: 20px 0; }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, 1fr); } }

/* "em ação" */
.slider--video .slider__item { flex-basis: 62%; }
@media (min-width: 768px) { .slider--video .slider__item { flex-basis: calc((100% - 64px) / 5); } .slider--video .slider__track { align-items: center; } }
.vcard { display: grid; gap: 8px; }
.vcard__media { display: block; aspect-ratio: 9 / 16; overflow: hidden; border-radius: 8px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08); background: #ddd; }
.vcard__media img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) { .vcard--main .vcard__media { transform: scale(1.06); } }
.vcard__chip { display: grid; grid-template-columns: 44px 1fr; gap: 10px; align-items: center; background: #fff; padding: 6px; text-decoration: none; font-size: 13px; line-height: 1.3; }
.vcard__chip img { width: 44px; height: 44px; object-fit: cover; }
.vcard__chip strong { display: block; }

.cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.cats a { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; }
.cats img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.cats a:hover img { transform: scale(1.04); }
.cats span { position: absolute; left: 0; right: 0; bottom: 18px; text-align: center; color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55); }
@media (min-width: 768px) { .cats { grid-template-columns: repeat(4, 1fr); } }

.newsletter { position: relative; overflow: hidden; margin-top: 52px; padding: 40px var(--gutter); text-align: center; }
.newsletter__bg { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 420px; opacity: 0.08; pointer-events: none; max-width: none; }
.newsletter__box { position: relative; max-width: 480px; margin-inline: auto; display: grid; gap: 10px; }
.newsletter h2 { font-size: 20px; font-weight: 400; line-height: 1.4; }
.newsletter form { display: grid; gap: 10px; margin-top: 8px; }
.newsletter input { height: 44px; border: 1px solid var(--color-line); background: #fff; padding: 0 14px; font: inherit; }
.newsletter small { font-size: 10px; color: var(--color-text-muted); line-height: 1.4; }
.newsletter__msg { font-size: 13px; min-height: 1.4em; }
.newsletter__msg.is-error { color: var(--color-error); } .newsletter__msg.is-ok { color: var(--color-primary); font-weight: 600; }

/* ==========================================================================
   Coleção
   ========================================================================== */
.promo { display: block; }
.crumbs { font-size: 11px; color: var(--color-text-muted); padding-block: 14px 6px; line-height: 1.5; }
.crumbs a { text-decoration: none; }
.coll-head h1 { font-size: 26px; font-weight: 600; line-height: 1.3; }
.coll-head p { font-size: 14px; font-weight: 600; margin-top: 6px; max-width: 70ch; }
.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.chip { border: 1px solid var(--color-line); padding: 4px 14px; font-size: 13px; text-decoration: none; background: #fff; line-height: 1.6; }
.chip.is-active { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; font-size: 14px; }
.empty { text-align: center; padding: 40px 0; color: var(--color-text-muted); }
.fdrawer { position: fixed; inset: 0; z-index: 140; }
.fdrawer__panel { position: absolute; right: 0; top: 0; bottom: 0; width: min(100%, 380px); background: #fff; z-index: 1; overflow-y: auto; animation: slideR 0.3s var(--ease); }
.fdrawer__form { padding: 12px 20px 24px; display: grid; gap: 22px; }
.fdrawer fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 8px; }
.fdrawer legend { font-weight: 600; margin-bottom: 8px; padding: 0; }
.fdrawer select { height: 44px; border: 1px solid var(--color-line); padding: 0 10px; font: inherit; background: #fff; }
.fdrawer input[type="range"] { accent-color: var(--color-primary); width: 100%; }
.fdrawer__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.4; cursor: pointer; }
.check input { accent-color: var(--color-primary); width: 18px; height: 18px; margin: 1px 0 0; flex: none; }

/* ==========================================================================
   PDP
   ========================================================================== */
.pdp__grid { display: grid; gap: 20px; padding-bottom: 8px; }
@media (min-width: 992px) { .pdp__grid { grid-template-columns: 55fr 45fr; gap: 48px; } }
.gallery { display: grid; gap: 10px; align-content: start; }
.gallery__main { position: relative; aspect-ratio: 1; background: #f2f2f2; order: -1; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.9); font-size: 22px; line-height: 1; }
.gallery__nav--prev { left: 8px; } .gallery__nav--next { right: 8px; }
.gallery__thumbs { display: flex; gap: 8px; }
.gallery__thumbs button { padding: 0; border: 1px solid transparent; background: #f2f2f2; width: 70px; height: 70px; }
.gallery__thumbs button.is-active { border-color: var(--color-primary); }
.gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 992px) {
  .gallery { grid-template-columns: 70px 1fr; }
  .gallery__main { order: 0; grid-column: 2; }
  .gallery__thumbs { flex-direction: column; grid-column: 1; grid-row: 1; }
}
.buybox { display: grid; gap: 14px; align-content: start; }
.pdp__title { font-size: 26px; font-weight: 400; line-height: 1.25; }
.pdp__sub { font-size: 12px; color: var(--color-text-muted); margin-top: -10px; }
.pdp__desc { font-size: 12px; line-height: 1.7; display: grid; gap: 6px; }
.pdp__gift { background: #fbe8f1; color: var(--color-primary); padding: 8px 12px; font-size: 13px; line-height: 1.4; }
.tabs { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.tabs button { background: none; border: 0; padding: 2px 0; color: var(--color-text-muted); }
.tabs button.is-active { color: var(--color-text); font-weight: 700; text-decoration: underline; text-underline-offset: 4px; }
.field { display: grid; gap: 4px; }
.field__label { font-size: 12px; color: var(--color-text-muted); }
.select { position: relative; display: block; }
.select select { width: 100%; height: 44px; border: 1px solid var(--color-line); background: #fff; padding: 0 12px 0 40px; font: inherit; font-size: 14px; appearance: none; border-radius: 0; }
.select .dot { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, 0.15); pointer-events: none; }
.select::after { content: "⌄"; position: absolute; right: 14px; top: 8px; pointer-events: none; }
.pswatches { display: flex; align-items: center; gap: 4px; }
.pswatches__track { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; padding: 4px; scroll-snap-type: x proximity; scroll-behavior: smooth; }
.pswatches__track::-webkit-scrollbar { display: none; }
.pswatch { flex: none; width: 46px; background: none; border: 0; padding: 0; display: grid; justify-items: center; gap: 2px; font-size: 10px; line-height: 1.2; scroll-snap-align: start; letter-spacing: 0; }
.pswatch i { width: 40px; height: 40px; border-radius: 50%; background: var(--c); border: 1px solid rgba(0, 0, 0, 0.15); }
.pswatch.is-selected i { box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--color-primary); }
.buyrow { display: flex; gap: 10px; }
.buyrow .btn, .buyrow .qty { height: 47px; }
.ship-calc summary { cursor: pointer; font-size: 13px; }
.ship-calc__body { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.ship-calc input { height: 38px; border: 1px solid var(--color-line); padding: 0 10px; font: inherit; width: 140px; }
.ship-calc ul { flex-basis: 100%; font-size: 13px; display: grid; gap: 4px; }
.err { color: var(--color-error); font-size: 12px; }
.pdp__free { text-align: center; font-size: 13px; }
.stickybuy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; background: #fff; box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12); display: flex; justify-content: space-between; align-items: center; padding: 10px var(--gutter); transform: translateY(100%); transition: transform 0.25s var(--ease); }
.stickybuy.is-on { transform: none; }
.stickybuy s { color: var(--color-text-muted); font-size: 13px; }
@media (min-width: 992px) { .stickybuy { display: none; } }
.notfound { text-align: center; padding-block: 80px; display: grid; gap: 16px; justify-items: center; }

.acc { margin-bottom: 20px; }
.acc summary { font-size: 20px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; padding: 8px 0; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; } .acc[open] summary::after { content: "−"; }
.tiles4, .tiles2 { display: grid; gap: 10px; margin-top: 10px; }
@media (min-width: 768px) { .tiles4 { grid-template-columns: repeat(4, 1fr); } .tiles2 { grid-template-columns: repeat(2, 1fr); background: var(--color-surface-warm); padding: 14px; } }
.tile { background: var(--color-surface-warm); padding: 18px; display: grid; gap: 8px; align-content: start; }
.tile--w { background: #fff; grid-template-columns: 1fr auto; align-items: center; }
.tile h3 { font-size: 15px; font-weight: 700; }
.tile p { font-size: 13px; line-height: 1.5; }
.ico { width: 48px; height: 48px; border-radius: 50%; background: var(--color-accent); display: grid; place-items: center; }

/* ==========================================================================
   Checkout / Pix / Confirmação / Institucional
   ========================================================================== */
.page-checkout, .page-checkout button, .page-checkout input, .page-checkout select, .page-checkout textarea { font-family: var(--font-checkout); }
.page-checkout { background: #fff; letter-spacing: 0; line-height: 1.5; }
.co-header { border-bottom: 1px solid #e6e6e6; }
.co-header__in { max-width: 1100px; margin: 0 auto; padding: 14px var(--gutter); display: flex; justify-content: space-between; align-items: center; }
.co-header .icon-btn { color: var(--color-primary); }
.co { display: flex; flex-direction: column; max-width: 1100px; margin: 0 auto; }
.co__mobile-sum { background: #f5f5f0; border-bottom: 1px solid #e6e6e6; }
.co__mobile-sum summary { display: flex; justify-content: space-between; padding: 14px var(--gutter); cursor: pointer; color: var(--color-primary); font-size: 14px; list-style: none; }
.co__mobile-sum summary::-webkit-details-marker { display: none; }
.co__summary { display: none; background: #f5f5f0; padding: 20px var(--gutter); }
body.sum-open .co__summary { display: block; order: -1; }
.co__form { padding: 20px var(--gutter) 40px; display: grid; gap: 28px; }
.co__form section { display: grid; gap: 12px; }
.co__row-head h2 { font-size: 21px; font-weight: 600; }
.co__note { font-size: 13px; color: var(--color-text-muted); margin-top: -6px; }
.co__legal { font-size: 12px; text-align: center; color: var(--color-text-muted); }
@media (min-width: 900px) {
  .co { flex-direction: row; min-height: calc(100vh - 62px); }
  .co__mobile-sum { display: none; }
  .co__form { flex: 1 1 58%; max-width: 620px; margin-left: auto; padding: 32px 44px 60px var(--gutter); }
  .co__summary { display: block !important; flex: 1 1 42%; max-width: 480px; padding: 32px var(--gutter) 60px 40px; position: sticky; top: 0; align-self: flex-start; border-left: 1px solid #e6e6e6; min-height: calc(100vh - 62px); background: #f5f5f0; }
}
.f { position: relative; }
.f input, .f select { width: 100%; height: 48px; border: 1px solid var(--color-line); border-radius: 8px; padding: 18px 12px 4px; font-size: 15px; background: #fff; color: var(--color-text); appearance: none; }
.f select { padding-top: 16px; }
.f label { position: absolute; left: 13px; top: 15px; font-size: 15px; color: var(--color-text-muted); pointer-events: none; transition: all 0.15s; transform-origin: left top; }
.f input:focus + label, .f input:not(:placeholder-shown) + label, .f--static label { top: 6px; font-size: 11px; }
.f input:focus, .f select:focus { outline: 2px solid var(--color-primary); outline-offset: -1px; border-color: var(--color-primary); }
.f--static::after { content: "⌄"; position: absolute; right: 14px; top: 10px; pointer-events: none; }
.f .err, .f__hint { display: block; margin-top: 3px; font-size: 12px; }
.f__hint { color: var(--color-text-muted); }
.f2 { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.f2--num { grid-template-columns: 2fr 1fr; }
.page-checkout .check input { accent-color: var(--color-primary); }
.ship-box { background: #f4f4f4; color: var(--color-text-muted); padding: 14px 16px; border-radius: 8px; font-size: 14px; }
.ship-list { display: grid; border: 1px solid var(--color-line); border-radius: 8px; overflow: hidden; }
.ship-opt { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; padding: 14px; align-items: center; cursor: pointer; font-size: 14px; }
.ship-opt + .ship-opt { border-top: 1px solid var(--color-line); }
.ship-opt.is-on { background: #fbe8f1; }
.ship-opt small, .pay__opt small { display: block; color: var(--color-text-muted); font-size: 12px; }
.ship-opt input, .pay__opt input { accent-color: var(--color-primary); width: 18px; height: 18px; }
.pay { border: 1px solid var(--color-line); border-radius: 8px; overflow: hidden; }
.pay__opt { display: flex; gap: 12px; padding: 14px; align-items: center; background: #fbe8f1; font-size: 14px; }
.pay__body { padding: 14px; font-size: 13px; color: var(--color-text-muted); background: #fafafa; }
.err--form { background: #fdecea; padding: 10px 12px; border-radius: 8px; font-size: 14px; }
.sum__lines { display: grid; gap: 14px; margin-bottom: 18px; }
.sum__line { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; font-size: 14px; }
.sum__thumb { position: relative; width: 64px; height: 64px; border: 1px solid #e0e0e0; border-radius: 8px; background: #fff; }
.sum__thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.sum__qty { position: absolute; top: -8px; right: -8px; min-width: 20px; height: 20px; border-radius: 10px; background: #000; color: #fff; font-size: 12px; display: grid; place-items: center; padding: 0 5px; }
.sum__info small { display: block; color: var(--color-text-muted); font-size: 12px; }
.sum__coupon { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: start; }
.sum__coupon .btn { height: 48px; border-radius: 8px; padding: 0 20px; font-size: 13px; letter-spacing: 0.5px; text-transform: none; color: #fff; background: #b9b9b9; border-color: #b9b9b9; }
.sum__coupon .btn.is-ready { background: var(--color-primary); border-color: var(--color-primary); }
.sum__totals { display: grid; gap: 8px; margin-top: 16px; font-size: 14px; }
.sum__totals div { display: flex; justify-content: space-between; gap: 12px; }
.sum__total { font-size: 17px; align-items: baseline; margin-top: 4px; }
.sum__total strong { font-size: 22px; }
.sum__total small { color: var(--color-text-muted); font-size: 12px; }
.fraud { margin-top: 22px; background: var(--color-alert-bg); border: 1px solid var(--color-alert-line); border-radius: 8px; padding: 14px 16px; font-size: 13px; display: grid; gap: 8px; }
.fraud ul { list-style: disc; padding-left: 18px; }

.pixpage { display: grid; gap: 32px; max-width: 1000px; margin: 0 auto; padding: 28px var(--gutter) 60px; }
@media (min-width: 900px) { .pixpage { grid-template-columns: 1fr 1fr; gap: 56px; } }
.pixpage h1 { font-size: 28px; }
.pixpage__lead { color: var(--color-text-muted); margin-top: 6px; }
.pixpage__status { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; background: #fbe8f1; color: var(--color-primary); font-weight: 600; padding: 6px 14px; border-radius: 999px; font-size: 14px; }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--color-accent); animation: pulse 1.4s infinite; }
@keyframes pulse { 50% { transform: scale(1.5); opacity: 0.5; } }
.pixpage__timer { margin-top: 12px; font-size: 14px; }
.pixpage__list { margin-top: 18px; display: grid; gap: 8px; font-size: 14px; }
.pixpage__sum { margin-top: 24px; border-top: 1px solid #e6e6e6; padding-top: 16px; font-size: 14px; }
.pixpage__sum h2 { font-size: 16px; margin-bottom: 8px; }
.pixpage__sum small { color: var(--color-text-muted); font-weight: 400; }
.pixpage__sum li { display: flex; justify-content: space-between; gap: 10px; padding: 4px 0; }
.pixpage__right { display: grid; gap: 12px; justify-items: center; align-content: start; }
.qr { width: min(280px, 100%); padding: 12px; border: 1px solid #e0e0e0; border-radius: 12px; background: #fff; }
.qr svg { width: 100%; height: auto; display: block; }
.pixpage__value { font-size: 18px; }
.pixpage__warn { font-size: 12px; color: var(--color-text-muted); text-align: center; max-width: 380px; }
.pixpage textarea { width: 100%; border: 1px solid var(--color-line); border-radius: 8px; padding: 10px; font: 12px/1.4 monospace; resize: none; }
.pixpage__fail { background: #fdecea; color: var(--color-error); padding: 10px 12px; border-radius: 8px; font-size: 14px; }

.thanks { text-align: center; padding-block: 72px; display: grid; gap: 14px; justify-items: center; }
.thanks h1 { font-size: 34px; font-weight: 400; }
.thanks__icon { width: 72px; height: 72px; border-radius: 50%; background: var(--color-accent); color: #fff; font-size: 38px; display: grid; place-items: center; animation: rise 0.5s var(--ease); }
.thanks__ref { color: var(--color-text-muted); }

.info { padding-block: 32px 8px; display: grid; gap: 36px; max-width: 860px; }
.info h1, .info h2 { font-weight: 400; font-size: 28px; margin-bottom: 10px; }
.info details { background: #fff; padding: 12px 16px; margin-bottom: 8px; }
.info summary { cursor: pointer; font-weight: 600; }
.info details p { margin-top: 8px; font-size: 15px; }

/* evita que o carrossel de tons (50 itens) estique a grade da PDP */
.pdp__grid > *, .buybox > *, .pswatches, .pswatches__track { min-width: 0; }

/* cards com muitos swatches (ex.: 50 tons) não podem esticar a coluna da grade */
.grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 768px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.grid > *, .card, .card__body, .swatches { min-width: 0; }
/* popup do cupom de primeira compra + toast + linhas de desconto da sacola */
.cpop { position: fixed; inset: 0; z-index: 160; display: grid; place-items: center; padding: 16px; }
.cpop__box { position: relative; z-index: 1; width: min(100%, 360px); border-radius: 22px; overflow: hidden; background: #fff; text-align: center; animation: rise 0.35s var(--ease); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35); }
.cpop__x { position: absolute; right: 12px; top: 12px; z-index: 2; width: 34px; height: 34px; border-radius: 50%; border: 0; background: #fff; display: grid; place-items: center; box-shadow: 0 0 0 2px var(--color-primary); }
.cpop__top { background: linear-gradient(160deg, var(--color-accent), var(--color-primary)); color: #fff; padding: 26px 20px 24px; display: grid; justify-items: center; gap: 4px; line-height: 1.1; }
.cpop__logo { width: 46px; height: 46px; border-radius: 50%; background: #2a1a24; display: grid; place-items: center; margin-bottom: 8px; }
.cpop__logo .lips { width: 26px; height: 15px; color: #fff; }
.cpop__hello { font: italic 700 30px/1.1 Georgia, "Times New Roman", serif; letter-spacing: 0; }
.cpop__off { font-size: 60px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.cpop__off small { font-size: 24px; letter-spacing: 0; margin-left: 2px; }
.cpop__pill { margin-top: 10px; background: #fff; color: #2a1a24; font-weight: 700; font-size: 12px; letter-spacing: 1.2px; padding: 10px 18px; border-radius: 999px; line-height: 1.2; }
.cpop__bottom { padding: 20px 24px 22px; display: grid; gap: 10px; justify-items: center; }
.cpop__label { font-size: 12px; font-weight: 700; letter-spacing: 3px; color: #4a4450; }
.cpop__code { width: 100%; border: 2px dashed #f29bc6; border-radius: 16px; padding: 12px 8px; font-size: 22px; font-weight: 800; color: var(--color-accent); letter-spacing: 1px; line-height: 1.2; overflow-wrap: anywhere; }
.cpop__hint { font-size: 13px; color: #6b6470; line-height: 1.5; }
.cpop__cta { width: 100%; height: 50px; border: 0; border-radius: 999px; background: #2a1a24; color: #fff; font-weight: 800; font-size: 15px; letter-spacing: 0; }
.cpop__cta:hover { background: #000; }
.cpop__no { background: none; border: 0; font-size: 13px; color: #6b6470; text-decoration: underline; padding: 4px; }
.toast { position: fixed; z-index: 170; left: 50%; bottom: 24px; transform: translateX(-50%); background: #2a1a24; color: #fff; padding: 12px 20px; border-radius: 999px; font-size: 14px; max-width: calc(100vw - 32px); text-align: center; animation: rise 0.3s var(--ease); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); }
.drawer__disc, .drawer__total { display: flex; justify-content: space-between; font-size: 13px; color: var(--color-primary); }
.drawer__total { color: var(--color-text); font-size: 15px; }

/* ---- order bump do checkout ---- */
.bump { display: grid; grid-template-columns: auto 56px 1fr; gap: 12px; align-items: center; padding: 12px 14px; border: 2px dashed #e7a3c6; border-radius: 12px; background: #fdf1f7; cursor: pointer; }
.bump.is-on { border-style: solid; border-color: var(--color-primary); background: #fbe8f1; }
.bump input { width: 20px; height: 20px; accent-color: var(--color-primary); }
.bump img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; background: #fff; }
.bump__txt { display: grid; gap: 2px; font-size: 14px; line-height: 1.35; }
.bump__txt small { color: var(--color-text-muted); font-size: 12px; }
.bump__txt b { color: var(--color-primary); font-size: 15px; }
.bump__txt s { color: var(--color-text-muted); font-weight: 400; font-size: 12px; margin-left: 4px; }

/* label longo não pode quebrar linha dentro do campo flutuante */
.f label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: calc(100% - 26px); }

/* ---- forma de pagamento: Pix / cartão ---- */
.pay__opt { position: relative; }
.pay__opt + .pay__opt { border-top: 1px solid var(--color-line); }
.pay__opt:not(.is-on) { background: #fff; cursor: pointer; }
.pay__opt > span { flex: 1; }
.pay__badge { font-style: normal; font-size: 11px; font-weight: 700; color: #0a7a3d; background: #dff5e7; padding: 2px 8px; border-radius: 999px; white-space: nowrap; }
.pay__tag { font-style: normal; font-size: 11px; font-weight: 700; color: var(--color-text-muted); letter-spacing: 0.5px; text-transform: uppercase; }
.pay__opt.is-unavailable { opacity: 0.55; cursor: not-allowed; }
.pay__notice { display: block; color: var(--color-text); line-height: 1.5; }
.pay__loading { display: flex; align-items: center; gap: 10px; color: var(--color-text); }
.spinner { width: 18px; height: 18px; border: 2px solid var(--color-primary); border-right-color: transparent; border-radius: 50%; animation: spin 0.7s linear infinite; }
