/* Editorial trust pass: keep image treatment consistent while every page gets its own context. */
main img[src*="/assets/editorial/"] {
  background: #171715;
  object-fit: cover;
}

/* Home marketplace feature: one message, one supporting line, one action. */
.marketPremiere {
  height: 360px;
}

.marketPremiereShade {
  background: linear-gradient(90deg, rgba(2, 5, 12, 0.98) 0%, rgba(5, 8, 20, 0.86) 36%, rgba(5, 8, 20, 0.12) 72%, rgba(2, 5, 12, 0.32) 100%);
}

.marketPremiere .premiereCopy {
  width: min(430px, 42%);
}

.marketPremiere .premiereCopy h2 {
  font-size: clamp(40px, 3.8vw, 56px);
  line-height: 0.96;
  margin: 0 0 16px;
}

.marketPremiere .premiereSynopsis {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  max-width: 380px;
}

.marketPremiere .premiereCopy > a {
  margin-top: 22px;
}

@media (max-width: 820px) {
  .marketPremiere {
    height: 520px;
  }

  .marketPremiere .premiereCopy {
    bottom: 38px;
    left: 28px;
    right: 28px;
    width: auto;
  }
}

@media (max-width: 560px) {
  .marketPremiere {
    height: 470px;
  }

  .marketPremiere .premiereCopy {
    bottom: 28px;
    left: 22px;
    right: 22px;
  }

  .marketPremiere .premiereCopy h2 {
    font-size: 38px;
  }

  .marketPremiere .premiereCopy > a {
    justify-content: center;
    width: 100%;
  }
}

/* Publisher carousel between the bestseller grid and experience categories. */
.publisherShowcase {
  margin: -58px auto 78px;
  max-width: 1380px;
  overflow: hidden;
  padding: 0 24px;
}

.publisherShowcase > header {
  align-items: center;
  border-bottom: 1px solid rgba(23, 23, 20, 0.14);
  display: flex;
  padding-bottom: 20px;
}

.publisherShowcase > header > p {
  color: #d74420;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0;
  text-transform: uppercase;
}

.publisherViewport {
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  overflow: hidden;
  padding: 24px 0;
}

.publisherTrack {
  animation: publisherFlow 34s linear infinite;
  display: flex;
  width: max-content;
  will-change: transform;
}

.publisherShowcase:hover .publisherTrack {
  animation-play-state: paused;
}

.publisherGroup {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}

.publisherLogo {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(23, 23, 20, 0.11);
  border-radius: 14px;
  display: flex;
  height: 96px;
  justify-content: center;
  padding: 20px 28px;
  width: 214px;
}

.publisherLogo img {
  display: block;
  max-height: 50px;
  max-width: 150px;
  object-fit: contain;
  width: auto;
}

.publisherLogo--ludofun {
  gap: 12px;
}

.publisherLogo--ludofun img {
  height: 45px;
  width: 45px;
}

.publisherLogo--ludofun b {
  color: #1f1f29;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.publisherLogo--devir img {
  filter: brightness(0);
}

.publisherLogo--copag img,
.publisherLogo--meeple img {
  filter: brightness(0);
}

.publisherLogo--asmodee img {
  mix-blend-mode: multiply;
}

.publisherShowcase > small {
  color: #858078;
  display: block;
  font-size: 9px;
  line-height: 1.5;
}

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

@media (max-width: 720px) {
  .publisherShowcase {
    margin: -52px auto 64px;
    padding: 0 12px;
  }

  .publisherLogo {
    height: 86px;
    padding: 18px 24px;
    width: 184px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .publisherTrack {
    animation: none;
  }

  .publisherViewport {
    overflow-x: auto;
  }
}

.offersPage .commerceOffersEmpty + .offerPaths {
  display: none !important;
}

.commerceOfferPrice {
  color: #77736b;
  display: block;
  font-size: 11px;
  margin-top: 10px;
}

.offersPage .commerceOffersEmpty button {
  background: #171714;
  border: 0;
  border-radius: 10px;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  margin-top: 20px;
  min-height: 44px;
  padding: 0 18px;
  text-transform: uppercase;
}

/* Checkout: CEP is the entry point and address lookup remains editable. */
.deliveryForm .postalCodeField {
  grid-column: 1 / -1;
  max-width: 360px;
}

.deliveryForm .postalCodeField input {
  font-size: 17px;
  letter-spacing: 0.08em;
}

.cepLookupStatus {
  color: #77736b;
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
  margin-top: 7px;
  text-transform: none;
}

.cepLookupStatus[data-state="loading"] {
  color: #8b5d10;
}

.cepLookupStatus[data-state="success"] {
  color: #267044;
}

.cepLookupStatus[data-state="error"] {
  color: #a53a31;
}

.deliveryForm.postalLookupPending .postalCodeField input {
  background-image: linear-gradient(90deg, transparent, rgba(245, 197, 24, 0.18), transparent);
  background-size: 220% 100%;
  animation: postalLookupSweep 1.1s linear infinite;
}

@keyframes postalLookupSweep {
  to {
    background-position: -220% 0;
  }
}

@media (max-width: 560px) {
  .deliveryForm .postalCodeField {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .deliveryForm.postalLookupPending .postalCodeField input {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  main img[src*="/assets/editorial/"] {
    transition: none !important;
  }
}

@media print {
  main img[src*="/assets/editorial/"] {
    filter: none !important;
  }
}

/* Footer rebuilt as a compact trust and navigation surface. */
.commerceTrustFooter {
  background: #171714;
  color: #f4f1e9;
  display: block;
  margin-top: 0;
  overflow: hidden;
  padding: 0;
}

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

.footerTrustBar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1440px;
}

.footerTrustBar > a {
  align-items: center;
  display: flex;
  gap: 14px;
  min-height: 92px;
  padding: 20px 34px;
  transition: background-color 180ms ease;
}

.footerTrustBar > a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.footerTrustBar > a:hover {
  background: rgba(255, 255, 255, 0.045);
}

.footerTrustBar .uiIcon {
  filter: invert(48%) sepia(96%) saturate(2500%) hue-rotate(345deg)
    brightness(101%);
  height: 24px;
  width: 24px;
}

.footerTrustBar span,
.footerContact span,
.footerMarketplace p {
  display: grid;
  gap: 4px;
}

.footerTrustBar b {
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footerTrustBar small {
  color: #aaa79f;
  font-size: 11px;
  line-height: 1.4;
}

.footerCore {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(250px, 0.9fr) minmax(520px, 1.7fr) minmax(250px, 0.85fr);
  margin: 0 auto;
  max-width: 1440px;
  padding: 62px 34px 54px;
}

.footerIdentity .shopBrand {
  color: #fff;
  width: max-content;
}

.footerIdentity .shopBrand img {
  filter: brightness(0) invert(1);
}

.footerIdentity > p {
  color: #b8b5ad;
  font-size: 13px;
  line-height: 1.65;
  margin: 28px 0 26px;
  max-width: 310px;
}

.footerContact {
  border-left: 2px solid #ef4c23;
  display: grid;
  gap: 12px;
  padding-left: 16px;
}

.footerContact small,
.footerMarketplace p > small {
  color: #ef633e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footerContact b {
  color: #ddd9d0;
  font-size: 11px;
}

.footerContact > a {
  font-size: 12px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 4px;
}

.footerNavigation {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footerNavigation section {
  align-content: start;
  display: grid;
  gap: 13px;
}

.footerNavigation section > b {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.footerNavigation a {
  color: #aaa79f;
  font-size: 12px;
  line-height: 1.45;
  transition: color 160ms ease, transform 160ms ease;
}

.footerNavigation a:hover,
.footerBase a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footerMarketplace {
  align-content: start;
  background: #24241f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 15px;
  display: grid;
  gap: 18px;
  grid-template-columns: 42px 1fr;
  padding: 22px;
}

.footerMarketplace .mlMark {
  align-items: center;
  background: #ffe600;
  border-radius: 10px;
  color: #191914;
  display: flex;
  font-size: 12px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.footerMarketplace p b {
  color: #fff;
  font-size: 15px;
}

.footerMarketplace p span {
  color: #aaa79f;
  font-size: 10px;
  line-height: 1.55;
}

.footerMarketplace > a {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: 0.04em;
  padding-top: 15px;
  text-transform: uppercase;
}

.footerMarketplace > a .uiIcon {
  filter: invert(1);
  height: 15px;
  width: 15px;
}

.footerBase {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 24px 34px 28px;
}

.footerBase nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footerBase a,
.footerBase > small {
  color: #85827a;
  font-size: 10px;
}

@media (max-width: 1060px) {
  .footerCore {
    grid-template-columns: minmax(220px, 0.8fr) 1.7fr;
  }

  .footerMarketplace {
    grid-column: 1 / -1;
  }
}

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

  .footerTrustBar > a {
    min-height: 72px;
    padding: 16px 20px;
  }

  .footerTrustBar > a + a {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footerCore {
    gap: 38px;
    grid-template-columns: 1fr;
    padding: 42px 20px 36px;
  }

  .footerIdentity > p {
    max-width: 100%;
  }

  .footerNavigation {
    gap: 30px 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footerNavigation section:last-child {
    grid-column: 1 / -1;
  }

  .footerMarketplace {
    grid-column: auto;
  }

  .footerBase {
    align-items: flex-start;
    display: grid;
    gap: 22px;
    padding: 24px 20px 30px;
  }

  .footerBase nav {
    gap: 13px 20px;
  }
}

/* Sanitized footer v2: shorter, no marketplace promotion. */
.commerceTrustFooter .footerTrustBar,
.commerceTrustFooter .footerMarketplace {
  display: none !important;
}

.commerceTrustFooter .footerCore {
  display: grid !important;
  gap: clamp(44px, 7vw, 110px);
  grid-template-columns: minmax(260px, 0.75fr) minmax(600px, 1.65fr);
  padding-bottom: 44px;
  padding-top: 50px;
}

.commerceTrustFooter .footerNavigation {
  align-self: start;
}

.footerCommerce {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1440px;
  padding: 24px 34px;
}

.footerPayments {
  align-items: center;
  display: flex;
  gap: 24px;
}

.footerPayments > span {
  display: grid;
  gap: 4px;
}

.footerPayments > span small {
  color: #ef633e;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footerPayments > span b {
  color: #d8d4ca;
  font-size: 11px;
}

.paymentMarks {
  align-items: center;
  display: flex;
  gap: 8px;
}

.paymentMark {
  align-items: center;
  background: #f7f5ef;
  border-radius: 6px;
  box-sizing: border-box;
  color: #171714;
  display: inline-flex;
  font-style: normal;
  height: 34px;
  justify-content: center;
  min-width: 52px;
  padding: 0 10px;
}

.paymentVisa {
  color: #1434cb;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.paymentMastercard {
  min-width: 52px;
  padding: 0 8px;
}

.paymentMastercard > span {
  background: #eb001b;
  border-radius: 50%;
  height: 19px;
  width: 19px;
}

.paymentMastercard > span + span {
  background: #f79e1b;
  margin-left: -6px;
  mix-blend-mode: multiply;
}

.paymentElo {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.paymentPix {
  gap: 5px;
}

.paymentPix img {
  height: 17px;
  width: 17px;
}

.paymentPix b {
  font-size: 11px;
}

.footerSrOnly {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.footerAssurance {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: flex-end;
}

.footerAssurance > * {
  align-items: center;
  color: #aaa79f;
  display: flex;
  font-size: 10px;
  gap: 7px;
}

.footerAssurance .uiIcon {
  filter: invert(48%) sepia(96%) saturate(2500%) hue-rotate(345deg)
    brightness(101%);
  height: 15px;
  width: 15px;
}

.footerCompany {
  align-items: flex-end;
  display: flex;
  text-align: right;
}

.footerCompany small {
  color: #85827a;
  font-size: 10px;
}

@media (max-width: 980px) {
  .commerceTrustFooter .footerCore {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .footerCommerce {
    align-items: flex-start;
    display: grid;
  }

  .footerAssurance {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .commerceTrustFooter .footerCore {
    padding-bottom: 34px;
    padding-top: 38px;
  }

  .footerPayments {
    align-items: flex-start;
    display: grid;
    gap: 16px;
  }

  .footerCommerce {
    gap: 22px;
    padding: 22px 20px;
  }

  .paymentMarks {
    flex-wrap: wrap;
  }

  .footerAssurance {
    align-items: flex-start;
    display: grid;
  }

  .footerCompany {
    text-align: left;
  }
}

/* Estado inicial da área do cliente */
.portalLoading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  min-height: 500px;
  padding: 48px 20px;
  text-align: center;
}

.portalLoading h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.055em;
  margin: 0;
}

.portalLoading span {
  color: var(--muted);
  font-size: 12px;
}

/* Guia editorial */
.guideArticle {
  padding-top: clamp(64px, 8vw, 112px);
}

.guideArticle > header {
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 28px clamp(42px, 5vw, 68px);
}

.guideArticle > header > p {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.guideArticle > header h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 0;
  max-width: 980px;
}

.guideArticle > header > span {
  color: var(--muted);
  display: block;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.65;
  margin-top: 26px;
  max-width: 780px;
}

.guideArticle > header > div {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
}

.guideArticle > header > div b {
  font-size: 11px;
}

.guideArticle > header > div small {
  color: var(--muted);
  font-size: 10px;
}

.guideCover {
  border-radius: 22px;
  height: clamp(420px, 50vw, 680px);
  margin: 0 auto;
  object-fit: cover;
  width: min(1380px, calc(100% - 48px));
}

.articleBody {
  align-items: start;
  display: grid;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: 220px minmax(0, 760px);
  margin: clamp(72px, 9vw, 120px) auto;
  max-width: 1120px;
  padding: 0 28px;
}

.articleBody > aside {
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 0;
  position: sticky;
  top: 100px;
}

.articleBody > aside b {
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 18px 0 12px;
  text-transform: uppercase;
}

.articleBody > aside a {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
  padding: 13px 0;
  transition: color 180ms ease, padding-left 180ms ease;
}

.articleBody > aside a:hover {
  color: var(--orange-dark);
  padding-left: 6px;
}

.articleMain .lead {
  font-family: var(--font-display);
  font-size: clamp(25px, 3vw, 36px);
  letter-spacing: -0.035em;
  line-height: 1.25;
  margin: 0 0 72px;
}

.articleMain > section {
  border-top: 1px solid var(--line);
  padding: 48px 0 64px;
  scroll-margin-top: 110px;
}

.articleMain > section > small {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.articleMain h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.04;
  margin: 12px 0 24px;
}

.articleMain section > p {
  color: #4f4d47;
  font-size: 16px;
  line-height: 1.85;
  margin: 0;
}

.articleMain blockquote {
  border-left: 3px solid var(--orange);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.025em;
  line-height: 1.4;
  margin: 36px 0 0;
  padding: 4px 0 4px 24px;
}

.articleChoices {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, 1fr);
}

.articleChoices article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  display: grid;
  gap: 8px;
  min-height: 172px;
  padding: 22px;
}

.articleChoices .uiIcon {
  color: var(--orange-dark);
  height: 24px;
  margin-bottom: 12px;
  width: 24px;
}

.articleChoices b {
  font-size: 13px;
}

.articleChoices span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.guideProducts {
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: 1380px;
  padding: clamp(72px, 8vw, 110px) 24px;
}

.guideProducts > header {
  margin-bottom: 34px;
}

.guideProducts > header p {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.guideProducts > header h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 62px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
  margin: 0;
}

.guideProducts > div {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .articleBody {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .articleBody > aside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: static;
  }

  .articleBody > aside b {
    grid-column: 1 / -1;
  }

  .articleBody > aside a {
    padding-right: 12px;
  }
}

@media (max-width: 680px) {
  .guideArticle {
    padding-top: 52px;
  }

  .guideArticle > header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .guideArticle > header h1 {
    font-size: clamp(43px, 14vw, 58px);
  }

  .guideArticle > header > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .guideCover {
    border-radius: 16px;
    height: 52vh;
    min-height: 360px;
    width: calc(100% - 24px);
  }

  .articleBody {
    margin: 58px auto;
    padding: 0 18px;
  }

  .articleBody > aside {
    grid-template-columns: 1fr;
  }

  .articleMain .lead {
    margin-bottom: 48px;
  }

  .articleMain > section {
    padding: 38px 0 50px;
  }

  .articleMain section > p {
    font-size: 15px;
    line-height: 1.75;
  }

  .articleChoices,
  .guideProducts > div {
    grid-template-columns: 1fr;
  }

  .articleChoices article {
    min-height: 0;
  }

  .guideProducts {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.consentBanner {
  display: none !important;
}

.cartRecoveryNotice {
  align-items: center;
  background: #eef7ed;
  border: 1px solid #b9d9b5;
  border-radius: 14px;
  color: #245c2d;
  display: flex;
  font-size: 12px;
  font-weight: 750;
  gap: 10px;
  margin: -22px auto 22px;
  padding: 13px 16px;
  width: min(1180px, calc(100% - 48px));
}

.cartRecoveryNotice .uiIcon {
  height: 17px;
  width: 17px;
}

.cartReminder {
  border-top: 1px solid rgba(23, 23, 20, 0.12);
  margin-top: 22px;
  padding-top: 18px;
}

.cartReminder summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.cartReminder summary::-webkit-details-marker {
  display: none;
}

.cartReminder summary span {
  display: grid;
  gap: 4px;
}

.cartReminder summary small {
  color: #d6532b;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.cartReminder summary b {
  font-size: 12px;
}

.cartReminder summary > .uiIcon {
  height: 16px;
  transition: transform 180ms ease;
  width: 16px;
}

.cartReminder[open] summary > .uiIcon {
  transform: rotate(45deg);
}

.cartReminderForm {
  display: grid;
  gap: 12px;
  padding-top: 16px;
}

.cartReminderForm > p {
  color: #706e67;
  font-size: 10px;
  line-height: 1.55;
  margin: 0;
}

.cartReminderForm > label:not(.cartReminderConsent) {
  display: grid;
  gap: 6px;
}

.cartReminderForm > label > span:first-child {
  color: #706e67;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cartReminderForm input[type="email"] {
  background: #fff;
  border: 1px solid rgba(23, 23, 20, 0.18);
  border-radius: 9px;
  font-size: 12px;
  min-height: 42px;
  outline: 0;
  padding: 0 12px;
  width: 100%;
}

.cartReminderForm input[type="email"]:focus-visible {
  border-color: #d6532b;
  box-shadow: 0 0 0 3px rgba(214, 83, 43, 0.12);
}

.cartReminderConsent {
  align-items: flex-start;
  color: #67645d;
  display: flex;
  font-size: 9px;
  gap: 8px;
  line-height: 1.45;
}

.cartReminderConsent input {
  accent-color: #d6532b;
  flex: 0 0 auto;
  height: 15px;
  margin-top: 1px;
  width: 15px;
}

.cartReminderForm > button {
  background: #171714;
  border: 0;
  border-radius: 9px;
  color: #fff;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  min-height: 42px;
  text-transform: uppercase;
}

.cartReminderForm > button:disabled {
  cursor: default;
  opacity: 0.55;
}

.cartReminderForm .commerceStatus {
  color: #a23d23;
  display: block;
  font-size: 9px;
  line-height: 1.45;
  margin: 0;
}

.cartReminderForm .commerceStatus:empty {
  display: none;
}

.cartReminderForm .commerceStatus[data-ok="1"] {
  color: #247a3c;
}

.commerceFlowError {
  align-content: center;
  background: #fff;
  border: 1px solid rgba(23, 23, 20, 0.12);
  border-radius: 18px;
  display: grid;
  justify-items: start;
  margin: 32px auto 72px;
  min-height: 360px;
  padding: clamp(28px, 6vw, 64px);
  width: min(760px, calc(100% - 32px));
}

.commerceFlowError > .uiIcon {
  background: #fff1e9;
  border-radius: 50%;
  height: 24px;
  margin-bottom: 18px;
  padding: 12px;
  width: 24px;
}

.commerceFlowError > small {
  color: #d6532b;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.commerceFlowError h2 {
  font-size: clamp(28px, 5vw, 46px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 9px 0 16px;
  max-width: 580px;
}

.commerceFlowError p,
.commerceFlowError > span {
  color: #66625b;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.commerceFlowError > span {
  font-size: 12px;
  margin-top: 8px;
}

.commerceFlowError > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.commerceFlowError button,
.commerceFlowError a,
.checkoutRecoveryLink {
  align-items: center;
  border: 1px solid #171714;
  border-radius: 9px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 850;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  text-decoration: none;
}

.commerceFlowError button {
  background: #171714;
  color: #fff;
}

.commerceFlowError a,
.checkoutRecoveryLink {
  background: #fff;
  color: #171714;
}

.checkoutRecoveryLink {
  margin-top: 10px;
}

@media (max-width: 720px) {
  .cartRecoveryNotice {
    margin-top: -8px;
    width: calc(100% - 24px);
  }

  .commerceFlowError {
    margin-top: 16px;
    min-height: 320px;
    padding: 28px 22px;
  }

  .commerceFlowError > div,
  .commerceFlowError button,
  .commerceFlowError a {
    width: 100%;
  }
}
.homeDecisionActions{display:flex;flex-wrap:wrap;gap:10px;margin-top:27px}.visualEditorial .homeDecisionActions a{margin-top:0}.visualEditorial .homeDecisionSecondary{background:#ffffff10;color:#fff;border:1px solid #ffffff52}.visualEditorial .homeDecisionSecondary:hover{background:#ffffff1f;border-color:#fff}

/* O carrinho precisa continuar inteiramente operável na largura mínima
   suportada. Os estilos originais preservavam três colunas de largura fixa e
   forçavam o resumo para fora do viewport em 320 px. */
@media (max-width: 380px) {
  .flowHeader > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
  }

  .flowHeader > div span {
    min-width: 0;
    padding: 8px 3px;
    text-align: center;
    white-space: nowrap;
  }

  .cartPageLayout,
  .cartPageItems,
  .cartSummary {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
  }

  .cartPageItems {
    padding-inline: 12px;
  }

  .cartPageItems > header {
    gap: 10px;
  }

  .cartPageItems > header > a {
    overflow-wrap: anywhere;
    text-align: right;
  }

  .cartPageItems article {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 10px;
  }

  .cartPageItems article > a > img {
    height: 76px;
    width: 64px;
  }

  .cartPageItems article > div:not(.cartQty) {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    min-width: 0;
  }

  .cartPageItems article > div:not(.cartQty) > span,
  .cartPageItems article > div:not(.cartQty) > button {
    display: block;
  }

  .cartPageItems article > div:not(.cartQty) > button {
    margin-top: 8px;
    min-height: 36px;
  }

  .cartPageItems article h2 {
    overflow-wrap: anywhere;
  }

  .cartPageItems .cartQty {
    grid-area: auto;
    grid-column: 2;
    width: 84px;
  }

  .cartPageItems article > strong {
    grid-column: 2;
    min-width: 0;
    text-align: left;
  }

  .cartSummary {
    padding-inline: 20px;
  }
}
/* Crawlable catalog directory: compact by default, useful to people and search engines. */
.catalogSeoIndex {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 64px;
  border: 1px solid rgba(21, 21, 19, .16);
  border-radius: 18px;
  background: #fff;
  color: #171715;
  overflow: clip;
}

.catalogSeoIndex summary {
  padding: 18px 22px;
  cursor: pointer;
  font: 700 13px/1.4 "Space Grotesk", sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  list-style-position: inside;
}

.catalogSeoIndex[open] summary { border-bottom: 1px solid rgba(21, 21, 19, .12); }
.catalogSeoIndex nav { padding: 22px; display: grid; gap: 24px; }
.catalogSeoIndex section { display: grid; gap: 12px; }
.catalogSeoIndex section > b { font: 700 12px/1.4 "Space Grotesk", sans-serif; text-transform: uppercase; letter-spacing: .08em; color: #b83a17; }
.catalogSeoIndex section > div { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px 18px; }
.catalogSeoIndex a { color: inherit; font-size: 14px; line-height: 1.35; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.catalogSeoIndex a:hover { color: #b83a17; }
.catalogSeoNews { justify-self: start; font-weight: 700; }

@media (max-width: 820px) {
  .catalogSeoIndex section > div { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .catalogSeoIndex { width: calc(100% - 24px); margin-bottom: 40px; }
  .catalogSeoIndex summary, .catalogSeoIndex nav { padding: 16px; }
  .catalogSeoIndex section > div { grid-template-columns: 1fr; }
}
