﻿:root {
  --surface-alt: #171411;
  --surface-dark: #120f0d;
  --surface-soft: rgba(255,255,255,0.78);
  --surface-card: rgba(255,255,255,0.88);
  --text: #171411;
  --text-soft: #655a50;
  --line: #ddd2c5;
  --accent: #bf5b28;
  --accent-strong: #9f4215;
  --accent-soft: #f7d6c0;
  --success: #1f7a44;
  --shadow: 0 16px 40px rgba(23,20,17,0.12);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(191,91,40,0.16), transparent 22%),
    radial-gradient(circle at left 20%, rgba(250,223,196,0.65), transparent 28%),
    linear-gradient(180deg, #f7f1e8 0%, #efe5d8 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.container { width: min(1280px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247,241,232,0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23,20,17,0.08);
}

.site-header__row,
.site-footer__row,
.site-nav,
.site-actions,
.footer-links,
.hero-actions,
.page-actions,
.filter-pills,
.promo-card__actions { display: flex; align-items: center; gap: 16px; }
.site-header__row,
.site-footer__row { justify-content: space-between; padding: 18px 0; }
.brand-wordmark { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.03em; }
.brand-wordmark em { color: var(--accent); font-style: normal; }
.site-nav a,
.ghost-link,
.footer-links a,
.helper-card a { color: var(--text-soft); }
.search-box { width: min(300px, 100%); }
.search-box input,
.page-input,
.page-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  padding: 13px 16px;
  color: var(--text);
}
.page-textarea { min-height: 120px; border-radius: 22px; resize: vertical; }
.cart-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: #fff;
  padding: 11px 16px;
}
.cart-pill strong {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: none;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--surface-alt); color: #fff; box-shadow: 0 14px 24px rgba(0,0,0,0.15); }
.btn.secondary { background: transparent; border: 1px solid var(--line); color: var(--text); }

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 22px;
}
.section-head h2,
.page-card h1,
.page-card h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.section-note,
.hero-text,
.helper-card p,
.page-card p,
.page-card li,
.message,
.catalog-feedback {
  color: var(--text-soft);
  line-height: 1.65;
}
.section-head--split .section-note {
  max-width: 360px;
  margin: 0;
  text-align: right;
}

.home-stage { padding: 0 0 42px; }

.catalog-shell,
.page-shell,
.ad-gallery,
.showcase-shell,
.shelf-shell { padding: 26px 0 42px; }

.home-stage__stack {
  display: grid;
  gap: 18px;
}

.home-stage__hero {
  display: block;
  width: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.home-stage__support {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
}

.home-stage__slogan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: #6b4d3b;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  box-shadow: var(--shadow);
}

.home-stage__slogan-copy {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.45;
}

.home-stage__slogan-title {
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-style: italic;
  white-space: nowrap;
}

.home-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border: 1px solid rgba(244, 93, 34, 0.1);
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(177, 95, 35, 0.08);
  overflow: hidden;
}

.home-benefits__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
}

.home-benefits__item + .home-benefits__item {
  border-left: 1px solid rgba(244, 93, 34, 0.1);
}

.home-benefits__icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: #f45d22;
  background: #fff3eb;
  flex: 0 0 auto;
}

.home-benefits__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-benefits__copy {
  display: grid;
  gap: 4px;
}

.home-benefits__label {
  color: #26211d;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-benefits__text {
  color: #625349;
  font-size: 0.98rem;
  line-height: 1.4;
}

.home-benefits--secondary {
  margin-top: 18px;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}

.announcement-board,
.promo-card,
.search-banners,
.page-card,
.helper-card,
.announcement-mini,
.ad-card,
.compact-product-card,
.shelf-card,
.product-card,
.hero-banner__copy,
.hero-banner__card {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.announcement-board,
.promo-card,
.search-banners,
.page-card,
.helper-card,
.hero-banner__copy,
.hero-banner__card { padding: 24px; }

.announcement-board {
  display: grid;
  gap: 18px;
}

.announcement-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 430px;
  border-radius: 24px;
  background: linear-gradient(115deg, #ff6d24 0%, #ff7c2f 54%, #ff944f 100%);
  box-shadow: none;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.announcement-carousel::after {
  display: none;
}

.announcement-track {
  position: relative;
  min-height: 430px;
}

.announcement-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(1.01);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.announcement-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}

.announcement-slide__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.announcement-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1) contrast(1.02);
}

.announcement-slide__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,109,36,0.96) 0%, rgba(255,109,36,0.88) 36%, rgba(255,109,36,0.2) 67%, rgba(255,109,36,0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 48%, rgba(110,39,4,0.14) 100%);
}

.announcement-hotspot {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(14vw, 140px);
  border: 0;
  padding: 0;
  background: transparent;
  z-index: 4;
  cursor: ew-resize;
}

.announcement-hotspot--prev { left: 0; }
.announcement-hotspot--next { right: 0; }


.announcement-slide__content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 42px;
  max-width: 38%;
  color: #fff;
}

.announcement-slide__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 9px 16px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e45921;
  font-weight: 800;
}

.announcement-slide h1,
.announcement-slide h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.announcement-slide p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,0.92);
  font-size: 1.05rem;
  line-height: 1.6;
}

.announcement-slide__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.announcement-slide__ghost {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.34);
  color: #fff;
}

.announcement-dots {
  display: none;
}

.announcement-dots button {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  padding: 0;
}

.announcement-dots button.is-active { background: #fff; }

.announcement-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.announcement-mini {
  min-height: 190px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.92), rgba(251,238,228,0.92));
}

.announcement-mini::after {
  content: "";
  position: absolute;
  inset: auto -42px -42px auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(191,91,40,0.14);
}

.announcement-mini__kicker,
.promo-card__kicker,
.search-chip__kicker,
.ad-card__kicker {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.announcement-mini h3,
.promo-card h2,
.promo-card h3,
.search-banners h3,
.ad-card h3,
.compact-product-card h3,
.shelf-card h3,
.product-card h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.announcement-mini h3 { font-size: 1.12rem; }
.announcement-mini p,
.promo-card p,
.search-chip p,
.ad-card p,
.compact-product-card p,
.shelf-card p,
.product-card p { margin: 0; color: var(--text-soft); line-height: 1.55; }

.announcement-mini__foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.promo-stack {
  display: grid;
  gap: 18px;
}

.promo-card--warm {
  background: linear-gradient(160deg, rgba(255,245,239,0.96), rgba(250,226,207,0.96));
}

.promo-card--dark {
  background: linear-gradient(160deg, #1b1613, #2a1e18);
  color: #fff;
}

.promo-card--dark p,
.promo-card--dark li { color: rgba(255,255,255,0.74); }
.promo-card--dark .promo-card__kicker { color: #ffb98c; }
.promo-card--dark .btn.secondary { color: #fff; border-color: rgba(255,255,255,0.22); }

.promo-checks {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.search-banners__head { margin-bottom: 14px; }
.search-banners__head h3 { font-size: 1.26rem; }
.search-banner-list {
  display: grid;
  gap: 12px;
}

.search-chip {
  display: grid;
  gap: 8px;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(23,20,17,0.08);
  background: #fffaf6;
  border-radius: 22px;
  padding: 16px 18px;
  cursor: pointer;
}

.search-chip:hover {
  border-color: rgba(191,91,40,0.22);
  transform: translateY(-1px);
}

.search-chip strong { font-size: 1rem; }

.ad-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ad-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  display: grid;
  align-content: end;
  gap: 12px;
}

.ad-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(18,15,13,0.08), transparent 46%);
}

.ad-card > * { position: relative; z-index: 1; }
.ad-card--accent { background: linear-gradient(150deg, #fff2e7, #f7d7bf); }
.ad-card--neutral { background: linear-gradient(150deg, #fffefb, #efe6dc); }
.ad-card--dark { background: linear-gradient(150deg, #1a1613, #3a2619); color: #fff; }
.ad-card--dark p { color: rgba(255,255,255,0.76); }
.ad-card--dark .ad-card__kicker { color: #ffb98c; }

.feature-product-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(244, 93, 34, 0.1);
  box-shadow: 0 18px 36px rgba(177, 95, 35, 0.08);
  cursor: pointer;
}

.feature-product-card__media {
  position: relative;
  background: linear-gradient(180deg, #fffaf7 0%, #fff2ea 100%);
}

.feature-product-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.feature-product-card__favorite,
.feature-product-card__tag,
.feature-product-card__badge {
  position: absolute;
}

.feature-product-card__favorite {
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  color: #3b2c23;
  font-size: 1.2rem;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(62, 31, 11, 0.08);
}

.feature-product-card__tag,
.feature-product-card__badge {
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.feature-product-card__tag {
  background: #fff5ee;
  color: #f45d22;
}

.feature-product-card__badge {
  background: #ff6a2a;
  color: #fff;
}

.feature-product-card__body {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}

.feature-product-card__body strong {
  font-size: 1.04rem;
  letter-spacing: -0.04em;
}

.feature-product-card__body span {
  color: #6f5444;
  line-height: 1.45;
}

.feature-product-card__price {
  display: grid;
  gap: 3px;
  margin-top: 8px;
}

.feature-product-card__price em {
  color: #171411;
  font-style: normal;
  font-size: 1.08rem;
  font-weight: 800;
}

.feature-product-card__price small {
  color: #8a6d5b;
  text-decoration: line-through;
}

.feature-product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin: 0 18px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f45d22 0%, #ff7d2f 100%);
  color: #fff;
  font-weight: 700;
}

.feature-product-card--spotlight .feature-product-card__media {
  background: linear-gradient(135deg, #fff0e4 0%, #ffd6c0 100%);
}

.campaign-banner-shell {
  padding: 4px 0 30px;
}

.campaign-banner__card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  border-radius: 32px;
  background: linear-gradient(180deg, #fff 0%, #fff8f3 100%);
  border: 1px solid rgba(244, 93, 34, 0.12);
  box-shadow: 0 24px 44px rgba(177, 95, 35, 0.08);
  overflow: hidden;
}

.campaign-banner__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 40px 36px;
  color: #2a1d16;
}

.campaign-banner__eyebrow {
  margin: 0;
  color: #bf5b28;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.campaign-banner__copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  max-width: 9ch;
  color: #cf541f;
}

.campaign-banner__copy p {
  margin: 0;
  max-width: 520px;
  color: #665348;
  line-height: 1.65;
}

.campaign-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.campaign-banner__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.campaign-banner__payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 14px;
  background: transparent;
  color: #49413c;
}

.campaign-banner__payment img {
  max-height: 22px;
  width: auto;
}

.campaign-banner__payment strong {
  font-size: 1.35rem;
  letter-spacing: -0.05em;
}

.campaign-banner__media {
  padding: 28px 22px 28px 0;
}

.campaign-banner__device {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0;
  min-height: 420px;
}

.campaign-banner__device-top,
.campaign-banner__device-nav,
.campaign-banner__visual {
  width: min(100%, 460px);
}

.campaign-banner__device-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 10px;
  color: #7d6656;
  font-size: 0.84rem;
}

.campaign-banner__device-top strong {
  font-size: 1.9rem;
  color: #f45d22;
  letter-spacing: -0.08em;
}

.campaign-banner__device-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0 18px 14px;
  color: #8f7868;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.campaign-banner__visual {
  overflow: hidden;
  min-height: 280px;
  border-radius: 26px 26px 18px 18px;
  background: #fbf4ee;
  border: 12px solid #1b1714;
  box-shadow: 0 28px 48px rgba(36, 27, 20, 0.16);
}

.campaign-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-banner__device-copy {
  position: absolute;
  top: 26px;
  left: 24px;
  right: 24px;
  display: grid;
  gap: 10px;
  color: #fff;
}

.campaign-banner__device-copy p {
  max-width: 240px;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  line-height: 1.45;
}

.campaign-banner__spotlight {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #e45d22;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.campaign-banner__stats {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.campaign-banner__stat {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 16px;
  background: rgba(21, 17, 14, 0.66);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  text-align: center;
}

.campaign-banner__stat strong {
  font-size: 0.82rem;
  letter-spacing: -0.02em;
}

.campaign-banner__device-base {
  width: min(112%, 540px);
  height: 16px;
  margin-top: -1px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, #d6d1cd 0%, #9c948d 100%);
  box-shadow: 0 18px 24px rgba(0,0,0,0.08);
}

.showcase-shell { padding-top: 6px; }
.compact-product-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.compact-product-card {
  padding: 10px;
  display: grid;
  gap: 12px;
}

.compact-product-card img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  border-radius: 18px;
}

.compact-product-card__body {
  display: grid;
  gap: 8px;
}

.compact-product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  font-size: 0.76rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.compact-product-card h3 {
  font-size: 1rem;
  line-height: 1.2;
  min-height: 2.4em;
}

.compact-product-card__price {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}

.compact-product-card__price strong { font-size: 1rem; }
.compact-product-card__price span { color: var(--text-soft); font-size: 0.78rem; }

.product-shelf {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 1fr);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.product-shelf::-webkit-scrollbar { display: none; }

.shelf-card {
  overflow: hidden;
  min-height: 100%;
}

.shelf-card img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.shelf-card__body,
.product-card__body { padding: 16px; display: grid; gap: 8px; }
.shelf-card__price,
.product-card__price { display: grid; gap: 3px; }
.shelf-card__price strong,
.product-card__price strong { font-size: 1.14rem; }
.shelf-card__price span,
.product-card__price span { color: var(--text-soft); text-decoration: line-through; font-size: 0.78rem; }
.shelf-card__actions,
.product-card__actions { display: flex; gap: 8px; }
.shelf-card__actions .btn,
.product-card__actions .btn { flex: 1; }

.product-grid {
  display: grid;
  gap: 16px;
}

.product-grid--dense {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
}

.product-card__meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(191,91,40,0.1);
  color: var(--accent-strong);
  padding: 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-banner { padding: 42px 0 24px; }
.hero-banner__grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); gap: 28px; }
.hero-banner__copy, .hero-banner__card { padding: 28px; }
.hero-banner h1 { margin: 0; font-size: clamp(2rem, 4vw, 4.1rem); line-height: 0.96; letter-spacing: -0.05em; }
.hero-stats, .helper-strip, .page-grid, .page-stack { display: grid; gap: 18px; }
.hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; }
.helper-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); padding: 24px 0 42px; }
.page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.page-stack { gap: 14px; }
.stat { border-radius: var(--radius-md); background: rgba(23,20,17,0.04); padding: 18px; }
.stat strong { display: block; font-size: 1.45rem; font-weight: 800; }
.stat span { color: var(--text-soft); }
.hero-banner__card img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; border-radius: 20px; }
.hero-card__label { margin: 0 0 10px; font-size: 0.84rem; text-transform: uppercase; letter-spacing: 0.12em; }
.hero-card__body { padding-top: 18px; }
.page-shell { min-height: calc(100vh - 180px); }
.page-card { width: min(820px, 100%); margin: 0 auto; }
.field-row { display: grid; gap: 8px; }
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  min-width: 240px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 18px;
  background: #171411;
  color: #fff;
  box-shadow: var(--shadow);
}

.site-footer { padding: 12px 0 42px; }
.site-footer strong { display: block; margin-bottom: 6px; }
.site-footer p { margin: 0; color: var(--text-soft); }
.footer-links { flex-wrap: wrap; justify-content: flex-end; }

.pill {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 11px 16px;
  color: var(--text-soft);
  cursor: pointer;
}
.pill.is-active { background: var(--surface-alt); color: #fff; border-color: var(--surface-alt); }

body.home-page {
  background:
    radial-gradient(circle at top left, rgba(255,124,54,0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff8f3 42%, #fffaf7 100%);
}

body.home-page .container {
  width: min(1248px, calc(100% - 40px));
}

body.home-page .btn.primary {
  background: linear-gradient(135deg, #f45d22 0%, #ff7d2f 100%);
  color: #fff;
  box-shadow: 0 18px 28px rgba(244, 93, 34, 0.22);
}

body.home-page .btn.secondary {
  background: #fff7f1;
  border-color: rgba(244, 93, 34, 0.16);
  color: #e35319;
}

body.home-page .eyebrow {
  color: #f45d22;
}

body.home-page .section-head h2 {
  color: #291d16;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

body.home-page .section-note,
body.home-page .catalog-feedback {
  color: #7b5c49;
}

body.home-page .home-stage {
  padding: 0 0 42px;
}

body.home-page .home-stage__hero {
  width: min(1248px, calc(100% - 40px));
  margin: 0 auto 22px;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
}

body.home-page .home-stage__stack {
  gap: 18px;
}

body.home-page .announcement-carousel {
  min-height: 430px;
  border-radius: 0 0 26px 26px;
  background: linear-gradient(120deg, #f45d22 0%, #ff7d2f 55%, #ff9647 100%);
}

body.home-page .announcement-carousel::after {
  display: none;
}

body.home-page .announcement-slide__overlay {
  background:
    linear-gradient(90deg, rgba(244, 93, 34, 0.96) 0%, rgba(244, 93, 34, 0.9) 34%, rgba(244, 93, 34, 0.28) 60%, rgba(244, 93, 34, 0) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 34%, rgba(84, 26, 4, 0.14) 100%);
}

body.home-page .announcement-slide__content {
  max-width: 40%;
  align-content: center;
  padding: 44px 42px;
}

body.home-page .announcement-slide__tag {
  background: rgba(255,255,255,0.92);
  border-color: transparent;
  color: #e35319;
  font-weight: 800;
}

body.home-page .announcement-slide h1,
body.home-page .announcement-slide h2 {
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

body.home-page .announcement-slide p {
  max-width: 470px;
  color: rgba(255,255,255,0.92);
  font-size: 1.08rem;
}

body.home-page .announcement-slide__badge {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.18);
}

body.home-page .ad-gallery .section-head,
body.home-page .showcase-shell .section-head {
  align-items: center;
}

body.home-page .ad-gallery .eyebrow,
body.home-page .showcase-shell .eyebrow {
  display: none;
}

body.home-page .ad-gallery .section-note,
body.home-page .showcase-shell .section-note {
  max-width: 320px;
}

body.home-page .promo-card,
body.home-page .search-banners,
body.home-page .announcement-mini,
body.home-page .ad-card,
body.home-page .compact-product-card,
body.home-page .shelf-card,
body.home-page .product-card,
body.home-page .campaign-banner__card {
  background: #fff;
  border: 1px solid rgba(244, 93, 34, 0.1);
  box-shadow: 0 18px 36px rgba(177, 95, 35, 0.08);
}

body.home-page .announcement-mini {
  background: linear-gradient(180deg, #fffaf7 0%, #fff2ea 100%);
}

body.home-page .announcement-mini::after {
  background: rgba(244, 93, 34, 0.12);
}

body.home-page .promo-card--warm {
  background: linear-gradient(180deg, #fffaf7 0%, #fff2ea 100%);
}

body.home-page .promo-card--dark {
  background: linear-gradient(135deg, #f45d22 0%, #ff7d2f 100%);
}

body.home-page .promo-card--dark p,
body.home-page .promo-card--dark li {
  color: rgba(255,255,255,0.88);
}

body.home-page .promo-card--dark .promo-card__kicker {
  color: rgba(255,255,255,0.8);
}

body.home-page .search-chip {
  background: #fff;
  border-color: rgba(244, 93, 34, 0.1);
}

body.home-page .search-chip:hover {
  border-color: rgba(244, 93, 34, 0.26);
  box-shadow: 0 14px 24px rgba(177, 95, 35, 0.08);
}

body.home-page .ad-card--accent {
  background: linear-gradient(180deg, #fff4ec 0%, #ffe5d5 100%);
}

body.home-page .ad-card--neutral {
  background: linear-gradient(180deg, #fffdfb 0%, #fff4ed 100%);
}

body.home-page .ad-card--dark {
  background: linear-gradient(135deg, #f45d22 0%, #da4f1e 100%);
}

body.home-page .campaign-banner__card {
  background: linear-gradient(180deg, #fff 0%, #fff7f1 100%);
  border-color: rgba(244, 93, 34, 0.12);
  box-shadow: 0 24px 48px rgba(177, 95, 35, 0.08);
}

body.home-page .campaign-banner__copy {
  color: #2a1d16;
}

body.home-page .campaign-banner__copy p {
  color: #6f5444;
}

body.home-page .campaign-banner__eyebrow {
  color: #f45d22;
}

body.home-page .campaign-banner__copy h2 {
  color: #cf4f1d;
}

body.home-page .campaign-banner__payment {
  color: #524740;
}

body.home-page .campaign-banner__visual {
  background: linear-gradient(180deg, #f6eee7 0%, #fff8f3 100%);
  border-color: #1d1815;
}

body.home-page .campaign-banner__device-copy p {
  color: rgba(255,255,255,0.9);
}

body.home-page .campaign-banner__spotlight {
  background: rgba(255,255,255,0.94);
  color: #e35319;
}

body.home-page .campaign-banner__stat {
  background: rgba(21, 17, 14, 0.7);
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

body.home-page .badge-pill {
  background: #fff0e8;
  color: #e35319;
}

body.home-page .compact-product-card img,
body.home-page .shelf-card img,
body.home-page .product-card img {
  background: #fff7f2;
}

body.home-page .compact-product-card__price strong,
body.home-page .shelf-card__price strong,
body.home-page .product-card__price strong {
  color: #f45d22;
}

body.home-page .product-card__meta,
body.home-page .compact-product-card__meta,
body.home-page .shelf-card p,
body.home-page .product-card p {
  color: #7c5b47;
}

body.home-page .pill {
  background: #fff;
  border-color: rgba(244, 93, 34, 0.12);
  color: #7b5c49;
}

body.home-page .pill.is-active {
  background: #f45d22;
  border-color: #f45d22;
  color: #fff;
}

body.home-page .site-footer {
  margin-top: 18px;
  padding: 24px 0 48px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff6ee 28%, #fff0e4 100%);
}

body.home-page .site-footer__row {
  padding: 28px 0 0;
  border-top: 1px solid rgba(244, 93, 34, 0.12);
}

body.home-page .site-footer p,
body.home-page .footer-links a {
  color: #6b5040;
}

@media (max-width: 1220px) {
  .campaign-banner__copy h2 { max-width: none; }
  .compact-product-board { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .product-grid--dense { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .ad-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }

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

  .home-benefits__item:nth-child(3),
  .home-benefits__item:nth-child(4) {
    border-top: 1px solid rgba(244, 93, 34, 0.1);
  }

  .home-benefits__item:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 1100px) {
  .site-header__row,
  .site-footer__row,
  .site-nav,
  .site-actions { flex-wrap: wrap; }
  .ad-flow,
  .campaign-banner__card,
  .hero-banner__grid,
  .helper-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .announcement-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compact-product-board { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .product-grid--dense { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .campaign-banner__card { grid-template-columns: 1fr; }
  .campaign-banner__media { padding: 0 24px 24px; }
}

@media (max-width: 760px) {
  .site-actions,
  .site-nav,
  .page-grid,
  .helper-strip,
  .hero-banner__grid,
  .hero-stats,
  .announcement-mini-grid,
  .product-grid--dense,
  .compact-product-board {
    grid-template-columns: 1fr;
  }

  .site-actions,
  .site-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .search-box { width: 100%; }
  .announcement-slide__content { max-width: 100%; padding: 26px 26px 92px; }
  .home-stage__slogan { padding: 18px 20px; }
  .announcement-dots { display: none; }
  .announcement-hotspot { width: min(22vw, 96px); }
  .campaign-banner__copy {
    padding: 26px 20px 20px;
  }
  .campaign-banner__media {
    padding: 0 20px 20px;
  }
  .campaign-banner__visual {
    min-height: 300px;
  }
  .campaign-banner__stats {
    grid-template-columns: 1fr;
  }
  .promo-card__actions,
  .campaign-banner__actions,
  .product-card__actions,
  .shelf-card__actions,
  .hero-actions,
  .page-actions { flex-direction: column; align-items: stretch; }
  .announcement-board,
  .promo-card,
  .search-banners,
  .page-card,
  .helper-card,
  .hero-banner__copy,
  .hero-banner__card { padding: 20px; }
  .section-head--split .section-note { text-align: left; max-width: none; }
  .product-shelf { grid-auto-columns: minmax(240px, 82vw); }
  .profile-summary-footer { align-items: stretch; }
  .profile-logout { width: 100%; }

  body.home-page .container,
  body.home-page .home-stage__hero {
    width: min(100% - 24px, 1248px);
  }

  body.home-page .announcement-carousel {
    min-height: 460px;
    border-radius: 28px;
  }

  body.home-page .announcement-slide__content {
    align-content: end;
    padding: 30px 24px 96px;
  }

  .home-benefits {
    grid-template-columns: 1fr;
  }

  .ad-flow {
    grid-template-columns: 1fr;
  }

  .home-benefits__item + .home-benefits__item {
    border-left: 0;
    border-top: 1px solid rgba(244, 93, 34, 0.1);
  }

  .home-benefits__item:nth-child(3),
  .home-benefits__item:nth-child(4) {
    border-top: 1px solid rgba(244, 93, 34, 0.1);
  }
}

.announcement-carousel.is-dragging {
  cursor: grabbing;
}
.profile-page {
  display: grid;
  gap: 20px;
}

.profile-summary-card,
.payment-guide-card {
  width: min(820px, 100%);
}

.profile-summary-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.profile-actions {
  flex-wrap: wrap;
}

.profile-logout {
  min-width: 120px;
  align-self: flex-end;
}

.payment-guide-copy {
  max-width: 860px;
  font-size: 1rem;
  line-height: 1.55;
}

.payment-guide-card--stacked {
  padding-bottom: 28px;
}

.payment-method-list {
  display: grid;
  gap: 26px;
  margin-top: 28px;
}

.payment-method-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.payment-method-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  box-shadow: 0 12px 24px rgba(23, 20, 17, 0.08);
}

.payment-method-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-method-icon-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.payment-method-body h3 {
  margin: 2px 0 6px;
  font-size: 1rem;
  line-height: 1.1;
}

.payment-method-body p {
  margin: 0;
  font-size: 0.99rem;
  line-height: 1.5;
}

.payment-method-row--pix .payment-method-icon {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

.payment-method-icon-logo--pix {
  width: 78px;
  height: 78px;
}

.payment-method-row--cards .payment-method-icon {
  background: linear-gradient(135deg, #1e293b, #0f172a);
}

.payment-method-row--boleto .payment-method-icon {
  background: linear-gradient(135deg, #9c643f, #714626);
}

.payment-method-row--paypal .payment-method-icon {
  background: linear-gradient(135deg, #0a58c6, #003087);
}

.payment-brand-logos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.payment-brand-image {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.payment-brand-image--visa {
  width: 92px;
}

.payment-brand-image--master {
  width: 76px;
}

.payment-brand-image--hiper {
  width: 94px;
}

.payment-brand-image--elo {
  width: 44px;
}



@media (max-width: 640px) {
  .campaign-banner-shell {
    padding-bottom: 22px;
  }

  .campaign-banner__spotlight {
    left: 14px;
    right: auto;
    min-width: 0;
  }

  .payment-method-row {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
  }

  .payment-method-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .payment-method-icon svg {
    width: 28px;
    height: 28px;
  }

  .payment-method-icon-logo--pix {
    width: 66px;
    height: 66px;
  }

  .payment-brand-logos {
    gap: 8px;
    margin-top: 10px;
  }

  .payment-brand-image--visa {
    width: 76px;
  }

  .payment-brand-image--master {
    width: 64px;
  }

  .payment-brand-image--hiper {
    width: 80px;
  }

  .payment-brand-image--elo {
    width: 38px;
  }

  .product-variant-card {
    width: 3rem;
    height: 3rem;
  }


}









.profile-data-card {
  width: min(820px, 100%);
}

.profile-data-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.profile-data-copy {
  max-width: 520px;
}

.profile-data-status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--text-soft);
}

.profile-data-status.is-success {
  color: #1f7a44;
}

.profile-data-status.is-error {
  color: #a3311f;
}

.profile-data-form {
  display: grid;
  gap: 22px;
}

.profile-data-block {
  display: grid;
  gap: 16px;
}

.profile-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-row--wide {
  grid-column: span 2;
}

.field-row span {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.profile-data-actions {
  justify-content: flex-start;
}

@media (max-width: 760px) {
  .profile-data-card__head {
    flex-direction: column;
  }

  .profile-data-grid {
    grid-template-columns: 1fr;
  }

  .field-row--wide {
    grid-column: auto;
  }
}


.order-history-shell {
  width: min(820px, 100%);
}

.order-history-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  justify-items: start;
}

.order-history-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: min(680px, 100%);
  padding: 10px 12px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(221,210,197,0.86);
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(23,20,17,0.05);
}

.order-history-thumb-wrap {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  overflow: hidden;
  background: #efe3d6;
}

.order-history-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-history-body {
  display: grid;
  gap: 3px;
  align-content: center;
}

.order-history-id {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  text-transform: uppercase;
}

.order-history-title {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.order-history-extra,
.order-history-status,
.order-history-note,
.order-history-empty {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.35;
  font-size: 0.8rem;
}

.order-history-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.order-history-price {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text);
}

.order-history-price.is-cancelled {
  color: #a06b52;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.order-history-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(159,66,21,0.12);
  color: #a3311f;
  font-size: 0.8rem;
  font-weight: 800;
}

.order-history-card.is-cancelled {
  background: rgba(255,255,255,0.95);
}

.order-history-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.8rem;
}

.order-history-track-code {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f6efe8;
  color: #8a5241;
  font-size: 0.76rem;
  font-weight: 700;
}

.order-history-tracking,
.order-history-state {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid #efe5dc;
  border-radius: 1rem;
  background: #fffaf7;
}

.order-history-tracking strong,
.order-history-state strong {
  font-size: 0.96rem;
}

.order-history-tracking p,
.order-history-state p,
.order-history-review {
  margin: 0;
  color: #6f635c;
  line-height: 1.55;
}

.order-history-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.order-history-actions .btn {
  min-width: 190px;
}

.order-history-confirm {
  box-shadow: none;
}

@media (max-width: 760px) {
  .order-history-card {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .order-history-thumb-wrap {
    width: 100%;
    height: 150px;
  }

  .order-history-actions .btn {
    width: 100%;
  }
}




.product-card--interactive,
.shelf-card--interactive,
.compact-product-card--interactive {
  cursor: pointer;
}

.product-card__summary,
.compact-product-card__summary {
  color: #6f635c;
  margin: 0;
}

.product-detail-page,
.favorites-page {
  padding-block: 2rem 4rem;
}

.product-detail-page {
  width: min(1360px, calc(100% - 22px));
}

.product-detail-shell,
.favorites-shell {
  padding: clamp(1.25rem, 2vw, 1.9rem);
}

.product-detail-shell {
  width: 100%;
  background: #fff;
  border: 0;
  box-shadow: none;
  padding: 1rem 1.1rem 1.3rem;
}

.product-detail-shell-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1.2rem;
  align-items: start;
  margin-bottom: 0.6rem;
}

.product-detail-shell-head .eyebrow {
  margin: 0;
}

.product-detail-top-features {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: baseline;
  min-height: 1.6rem;
  max-width: min(100%, 680px);
  overflow: hidden;
  padding-top: 0.05rem;
}

.product-top-highlight {
  display: inline-flex;
  align-items: center;
  color: #d06b45;
  font-size: 0.72rem;
  font-style: italic;
  letter-spacing: 0.05em;
  line-height: 1.15;
  white-space: nowrap;
}

.product-top-highlight + .product-top-highlight::before {
  content: "|";
  margin: 0 0.45rem;
  color: #d06b45;
  font-style: normal;
}

.product-detail-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: minmax(360px, 1.14fr) minmax(380px, 0.82fr);
  align-items: start;
}

.product-detail-media {
  border-radius: 1.5rem;
  overflow: hidden;
  background: #f4eadf;
  border: 0;
  box-shadow: none;
  height: 585px;
  min-height: 585px;
  display: grid;
  place-items: center;
  padding: 1.55rem;
}

.product-detail-media img {
  width: min(100%, 82%);
  height: min(100%, 94%);
  min-height: 0;
  object-fit: contain;
  display: block;
}

.product-detail-panel {
  display: grid;
  align-content: start;
  gap: 1.05rem;
  padding-top: 0.2rem;
  padding-left: 1.35rem;
  border-left: 1px solid #efe6dc;
  margin-top: 0;
}

.product-detail-headbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
}

.product-sales-copy {
  margin: 0;
  color: #cb5d33;
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}

.product-rating-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: center;
  color: #1f1713;
}

.product-rating-ribbon strong {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1;
}

.product-rating-ribbon .rating-stars {
  color: #f5c746;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.product-favorite-heart {
  width: 4rem;
  height: 4rem;
  border: 2px solid #cb5d33;
  border-radius: 999px;
  background: transparent;
  color: #cb5d33;
  display: inline-grid;
  place-items: center;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.product-favorite-heart:hover {
  transform: translateY(-1px);
}

.product-favorite-heart.is-active {
  background: #fff1ec;
  border-color: #cb5d33;
  color: #cb5d33;
}

.product-detail-topline {
  display: none;
}

.product-detail-panel h1 {
  margin: 0;
  max-width: none;
  color: #cb5d33;
  font-size: clamp(2.7rem, 3.5vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.product-detail-summary,
.product-description-card p,
.favorite-card p,
.review-card p,
.favorite-empty-state p,
.favorites-head p {
  color: #6f635c;
}

.product-detail-summary {
  display: none;
}

.product-detail-price {
  display: grid;
  gap: 0.32rem;
  align-content: start;
}

.product-detail-price__compare {
  color: #8a7b70;
  font-size: 0.95rem;
  text-decoration: line-through;
}

.product-detail-price__pix {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.55rem;
}

.product-detail-price strong {
  color: #cb5d33;
  font-size: clamp(2.2rem, 3vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.product-detail-price__pix span {
  color: #1f1713;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.product-detail-price small {
  color: #1f1713;
  font-size: 0.95rem;
}

.product-delivery-card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  justify-items: start;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: left;
  box-shadow: none;
}

.product-delivery-card__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.8rem;
}

.product-delivery-card__label {
  margin: 0;
  color: #594941;
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.product-delivery-card p,
.product-delivery-card a {
  margin: 0;
  color: #3e342d;
  line-height: 1.55;
}

.product-delivery-card__freight-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
}

.product-delivery-card__freight {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.7rem;
  border: 1px solid #2a2018;
  border-radius: 0.1rem;
  background: #fff;
  color: #2a2018;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.product-delivery-card__freight.is-free {
  border-color: #b9e6bf;
  color: #1ea930;
  background: #fff;
}

.product-delivery-card__freight-meta {
  color: #2a2018;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-delivery-card__freight-meta.is-quoted {
  color: #2a2018;
}

.product-delivery-card__estimate {
  color: #1f1713;
  font-size: 0.92rem;
  line-height: 1.35;
}

.product-delivery-card__note {
  max-width: 32rem;
  color: #5c4d44;
  font-size: 0.9rem;
}

.product-delivery-card__link {
  border: 0;
  padding: 0;
  background: transparent;
  color: #cb5d33;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.product-delivery-card__link:hover {
  text-decoration: underline;
}

.has-cep-modal {
  overflow: hidden;
}

.cep-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cep-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 12, 8, 0.48);
}

.cep-modal__panel {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
  border-radius: 1.35rem;
  background: #fff;
  box-shadow: 0 30px 70px rgba(17, 12, 8, 0.2);
}

.cep-modal__close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid #eadfd6;
  border-radius: 999px;
  background: #fff;
  color: #1f1713;
  font: inherit;
  font-size: 1.2rem;
  cursor: pointer;
}

.cep-modal__panel h3,
.cep-modal__copy {
  margin: 0;
}

.cep-modal__copy,
.cep-form__result span,
.cep-form__message {
  color: #6f635c;
  line-height: 1.6;
}

.cep-form {
  display: grid;
  gap: 0.85rem;
}

.cep-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  color: #443b35;
}

.cep-form input {
  width: 100%;
  border: 1px solid #d9c8bb;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
}

.cep-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}

.cep-form__result {
  display: none;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid #eadfd6;
  border-radius: 1rem;
  background: #fffaf7;
}

.cep-form__result.is-visible {
  display: grid;
}

.cep-form__message {
  margin: 0;
  font-size: 0.9rem;
}

.cep-form__message.is-error {
  color: #c7512f;
}

.cep-form__message.is-success {
  color: #1f7a44;
}

.cep-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.7rem;
}



.product-quantity-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 0.95rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.product-quantity-box.is-sold-out {
  background: transparent;
  opacity: 0.82;
}

.product-variant-stack {
  display: grid;
  gap: 0.95rem;
}

.product-variant-current {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.55rem 0.8rem;
}

.product-variant-current__copy {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
}

.product-variant-current strong {
  color: #171210;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.product-variant-current__copy span,
.product-variant-status {
  color: #2b221d;
  font-size: 1.05rem;
}

.product-variant-current__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.9rem;
  margin-left: auto;
}

.product-variant-current__tools small {
  color: #8a776c;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-media-expand {
  border: 0;
  padding: 0;
  background: transparent;
  color: #4d86e5;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.product-media-expand:hover {
  text-decoration: underline;
}

.product-variant-status {
  display: none;
}

.product-variant-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 5rem));
  gap: 0.85rem 0.9rem;
  justify-content: start;
}

.product-variant-card {
  position: relative;
  width: 100%;
  max-width: 5rem;
  display: grid;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid transparent;
  border-radius: 0.2rem;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.18s ease, opacity 0.18s ease;
}

.product-variant-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.12rem;
  border: 1px solid #e3ddd6;
  background: #fff;
  box-shadow: none;
}

.product-variant-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-variant-swatch {
  position: absolute;
  right: 0.3rem;
  bottom: 0.3rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: var(--variant-swatch, linear-gradient(135deg, #ece3db 0%, #d0bfb2 100%));
  box-shadow: 0 4px 10px rgba(23, 20, 17, 0.2);
}

.product-variant-name {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: #1f1713;
  text-align: center;
}

.product-variant-card:hover {
  transform: none;
}

.product-variant-card.is-selected {
  border-color: #cb5d33;
  box-shadow: none;
}

.product-variant-card.is-selected .product-variant-thumb-wrap {
  border-color: #cb5d33;
  box-shadow: none;
}

.product-variant-card.is-unavailable {
  opacity: 0.55;
}

.product-variant-card.is-unavailable::before {
  content: "";
  position: absolute;
  inset: 1.65rem 0.8rem auto;
  height: 2px;
  border-radius: 999px;
  background: rgba(23, 20, 17, 0.38);
  transform: rotate(-45deg);
  pointer-events: none;
  z-index: 2;
}

.product-variant-card.is-unavailable .product-variant-thumb {
  filter: saturate(0.72) brightness(0.95);
}

.product-variant-empty {
  color: #8e7f74;
  font-size: 0.88rem;
}

.product-size-panel {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-size-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.45rem 0.8rem;
  font-weight: 700;
}

.product-size-panel__head small,
.product-size-panel__current span,
.product-size-empty {
  color: #8e7f74;
  font-size: 0.82rem;
}

.product-size-panel__current {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: baseline;
}

.product-size-panel__current strong {
  color: #171210;
  font-size: 0;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.product-size-panel__current strong::after {
  content: "Tamanho:";
  font-size: 1rem;
}

.product-size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.product-size-card {
  min-width: 2.2rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid #d8d2cc;
  border-radius: 0.3rem;
  background: #fff;
  color: #443b35;
  font: inherit;
  font-weight: 500;
  font-size: 0.8rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.product-size-card:hover {
  transform: none;
}

.product-size-card.is-selected {
  border-color: #cb5d33;
  background: #fff1e8;
  box-shadow: none;
  color: #8a3e25;
}

.product-purchase-box {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  margin-top: 0.45rem;
}

.product-purchase-box.is-sold-out {
  opacity: 0.82;
}

.product-inline-qty {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.6rem;
  padding-top: 0.1rem;
}

.product-inline-qty > span {
  color: #2b221d;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  justify-self: start;
}

.quantity-stepper button,
.quantity-stepper input {
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
  font: inherit;
}

.quantity-stepper button {
  width: auto;
  height: auto;
  padding: 0;
  color: #cb5d33;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.quantity-stepper input {
  width: 1.2rem;
  padding: 0;
  color: #cb5d33;
  font-size: 1.2rem;
  font-weight: 700;
}

.quantity-stepper.is-disabled {
  opacity: 0.58;
}

.quantity-stepper input::-webkit-outer-spin-button,
.quantity-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-stepper input[type=number] {
  -moz-appearance: textfield;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 1rem;
}

.product-detail-actions .btn {
  min-width: 0;
  width: 100%;
  min-height: 48px;
  border-radius: 0.6rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.product-detail-actions .btn.secondary {
  background: #fff2e6;
  border: 1px solid #efc8b2;
  color: #8a4c31;
}

.product-detail-actions .btn.primary {
  background: #cb5d33;
  color: #fff;
  box-shadow: none;
}

.product-detail-feedback {
  margin: 0;
  color: #c7512f;
  font-weight: 700;
}

.has-product-gallery {
  overflow: hidden;
}

.product-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.product-gallery-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 12, 8, 0.68);
}

.product-gallery-modal__panel {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100vw - 2rem));
  max-height: min(320px, calc(100vh - 2rem));
  display: grid;
  gap: 0.9rem;
  padding: 3.3rem 1rem 1.1rem;
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 0 30px 70px rgba(17, 12, 8, 0.26);
  overflow: auto;
}

.product-gallery-modal__close {
  border: 1px solid #eadfd6;
  border-radius: 999px;
  background: #fff;
  color: #1f1713;
  cursor: pointer;
  font: inherit;
}

.product-gallery-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.3rem;
  line-height: 1;
}

.product-gallery-modal__thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.7rem;
  align-items: start;
}

.product-gallery-thumb {
  display: grid;
  gap: 0.4rem;
  padding: 0.35rem;
  border: 1px solid #eadfd6;
  border-radius: 1rem;
  background: #fff;
  color: #443b35;
  font: inherit;
  cursor: pointer;
  text-align: center;
}

.product-gallery-thumb img {
  width: 100%;
  height: 142px;
  border-radius: 0.8rem;
  object-fit: cover;
}

.product-gallery-thumb span {
  font-size: 0.76rem;
  font-weight: 600;
  color: #8e7f74;
}

.product-gallery-thumb.is-selected {
  border-color: #c7512f;
  box-shadow: 0 0 0 3px rgba(199, 81, 47, 0.12);
}

.product-extra-grid {
  display: grid;
  gap: 1.55rem;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, 0.9fr);
  align-items: start;
  margin-top: 2.3rem;
}

.product-description-card,
.product-reviews-card,
.product-seller-card,
.related-products-block,
.favorite-card,
.favorite-empty-state {
  background: #fff;
  border: 1px solid #eadfd6;
  border-radius: 1.6rem;
  padding: 1.25rem;
}

.product-reviews-card__head,
.related-products-head,
.favorites-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #f6efe8;
  color: #8a5241;
  font-weight: 700;
}

.product-reviews-card--expanded {
  padding: 1.55rem;
}

.product-reviews-body {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.product-reviews-card__copy {
  margin: 0.4rem 0 0;
  max-width: 640px;
  color: #78695f;
  line-height: 1.6;
}

.product-reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.82fr);
  gap: 1.35rem;
  margin-top: 1.15rem;
}

.product-reviews-layout.is-stream-only {
  grid-template-columns: 1fr;
}

.product-reviews-stream {
  display: grid;
  gap: 1rem;
}

.product-reviews-overview {
  display: grid;
  gap: 0.6rem;
  padding: 1.1rem 1.15rem;
  border: 1px solid #efe5dc;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
}

.product-reviews-overview__score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.product-reviews-overview__score strong {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.product-reviews-overview p {
  margin: 0;
  color: #78695f;
  line-height: 1.6;
}

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

.review-card {
  display: grid;
  gap: 0.85rem;
  border: 1px solid #efe5dc;
  border-radius: 1.15rem;
  padding: 1rem 1.05rem;
  background: #fffaf7;
}

.review-card__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.review-card__author {
  display: grid;
  gap: 0.2rem;
}

.review-card__author strong,
.review-empty-card strong {
  font-size: 1rem;
}

.review-card__author small {
  color: #8b7467;
}

.review-card__media {
  overflow: hidden;
  border-radius: 0.95rem;
}

.review-card__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.review-card p,
.review-empty-card p {
  margin: 0;
  color: #443b35;
  line-height: 1.6;
}

.rating-stars {
  color: #d98341;
  letter-spacing: 0.12em;
}

.review-form {
  display: grid;
  gap: 0.85rem;
}

.review-form--panel {
  align-content: start;
  padding: 1rem;
  border: 1px solid #efe5dc;
  border-radius: 1.2rem;
  background: #fffaf7;
}

.review-gate-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.review-gate-card strong,
.review-form-access strong {
  font-size: 1rem;
}

.review-gate-card p,
.review-form-access p {
  margin: 0;
  color: #6f635c;
  line-height: 1.6;
}

.review-form-access {
  display: grid;
  gap: 0.3rem;
  padding: 0.95rem 1rem;
  border: 1px solid #eadfd6;
  border-radius: 1rem;
  background: #fff;
}

.review-form-access span {
  color: #8b7467;
  font-size: 0.88rem;
}

.review-form label {
  display: grid;
  gap: 0.45rem;
  color: #443b35;
  font-weight: 600;
}

.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid #d9c8bb;
  border-radius: 1rem;
  padding: 0.85rem 1rem;
  font: inherit;
  background: #fff;
}

.review-photo-field input {
  padding: 0.8rem;
}

.review-photo-preview {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  padding: 1rem;
  border: 1px dashed #d9c8bb;
  border-radius: 1rem;
  background: #fff;
}

.review-photo-preview p,
.review-form-note {
  margin: 0;
  color: #78695f;
  line-height: 1.6;
}

.review-photo-preview.has-photo img {
  width: min(220px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.95rem;
}

.review-photo-preview__meta {
  display: grid;
  gap: 0.25rem;
}

.review-photo-preview__meta span {
  color: #8b7467;
  font-size: 0.88rem;
}

.review-photo-preview__remove {
  min-height: 42px;
}

.review-empty-card {
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px dashed #dbc9bc;
  border-radius: 1rem;
  background: #fff;
}

.product-seller-card {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  padding: 1.55rem;
}

.product-seller-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}

.product-seller-card__head h2 {
  margin: 0.2rem 0 0;
  font-size: 1.5rem;
  line-height: 1.05;
}

.product-seller-profile {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  padding: 1.2rem 1.05rem;
  border: 1px solid #efe5dc;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
  text-align: center;
}

.product-seller-profile img {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
  border: 3px solid #fff;
  box-shadow: 0 14px 28px rgba(23, 20, 17, 0.12);
}

.product-seller-profile strong {
  font-size: 1.08rem;
}

.product-seller-profile span,
.product-seller-profile small,
.product-seller-card__copy {
  color: #78695f;
  line-height: 1.6;
}

.product-seller-rating {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  padding: 1.05rem;
  border: 1px solid #efe5dc;
  border-radius: 1.15rem;
  background: #fffaf7;
  text-align: center;
}

.product-seller-rating strong {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.product-seller-rating span:last-child {
  color: #8b7467;
}

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

.product-seller-stats article {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 0.9rem;
  border: 1px solid #efe5dc;
  border-radius: 1rem;
  background: #fffaf7;
  min-height: 86px;
}

.product-seller-stats strong {
  font-size: 1.15rem;
}

.product-seller-stats span {
  color: #8b7467;
  font-size: 0.86rem;
  line-height: 1.45;
}

.product-seller-card__copy {
  margin: 0;
}

.related-products-block {
  margin-top: 1.5rem;
}

.related-products-grid,
.favorite-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1rem;
}

.related-product-card,
.favorite-card__media {
  text-decoration: none;
}

.related-product-card {
  display: grid;
  gap: 0.5rem;
  color: #231f1b;
  background: #fffaf7;
  border: 1px solid #efe5dc;
  border-radius: 1.4rem;
  padding: 0.8rem;
}

.related-product-card img {
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
  border-radius: 1rem;
}

.related-product-card span,
.favorite-card__body span {
  color: #8b7467;
  font-size: 0.9rem;
}

.related-product-card strong,
.favorite-card__body h3 {
  font-size: 1.05rem;
  margin: 0;
}

.related-product-card em {
  font-style: normal;
  font-weight: 700;
}

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

.favorite-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.favorite-card__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 1.2rem;
}

.favorite-card__body {
  display: grid;
  gap: 0.6rem;
}

.favorite-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.favorite-card__body strong {
  font-size: 1.1rem;
}

.favorite-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.favorite-empty-state,
.product-empty-state {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.favorite-empty-state h1,
.product-empty-state h1,
.favorites-head h1,
.product-description-card h2,
.product-reviews-card h2,
.related-products-head h2 {
  margin: 0;
}

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

  .product-detail-media {
    height: 480px;
    min-height: 480px;
  }

  .product-detail-panel {
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }

  .product-detail-headbar {
    justify-content: space-between;
  }

  .product-rating-ribbon {
    justify-self: auto;
  }

  .quantity-stepper {
    justify-self: start;
  }

  .product-delivery-card {
    justify-items: start;
    text-align: left;
  }

  .product-extra-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .product-detail-grid,
  .product-extra-grid,
  .favorite-card {
    grid-template-columns: 1fr;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .product-detail-shell,
  .favorites-shell {
    padding: 1.1rem;
  }

  .product-detail-shell-head {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .product-detail-panel {
    margin-top: 0;
  }

  .product-detail-headbar {
    justify-content: space-between;
    gap: 0.7rem;
  }

  .product-sales-copy {
    font-size: 0.95rem;
  }

  .product-rating-ribbon {
    justify-self: auto;
  }

  .product-detail-panel h1 {
    font-size: clamp(2.2rem, 10vw, 3.15rem);
  }

  .product-detail-top-features {
    max-width: 100%;
    flex-wrap: wrap;
  }

  .product-detail-media {
    height: 340px;
    min-height: 340px;
    padding: 1rem;
  }

  .product-detail-media img {
    width: min(100%, 92%);
    height: min(100%, 94%);
  }

  .product-quantity-box,
  .product-reviews-card__head,
  .product-seller-card__head,
  .related-products-head,
  .favorites-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-reviews-card--expanded {
    padding: 1.1rem;
  }

  .product-detail-actions {
    grid-template-columns: 1fr;
  }

  .quantity-stepper {
    justify-self: start;
  }

  .product-variant-current {
    align-items: flex-start;
  }

  .product-variant-current__tools {
    width: 100%;
    margin-left: 0;
    justify-content: space-between;
  }

  .product-media-expand {
    font-size: 0.8rem;
  }

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

  .product-variant-card {
    max-width: none;
  }

  .product-delivery-card {
    justify-items: start;
    text-align: left;
  }

  .product-size-card {
    min-width: calc(33.333% - 0.6rem);
  }

  .product-delivery-card__freight {
    min-height: 38px;
    font-size: 0.9rem;
  }

  .product-gallery-modal {
    padding: 0.7rem;
  }

  .product-gallery-modal__panel {
    max-height: min(420px, calc(100vh - 1.4rem));
    padding: 3.1rem 0.9rem 0.9rem;
  }

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

  .product-gallery-thumb img {
    height: 118px;
  }

  .product-seller-stats {
    grid-template-columns: 1fr;
  }

  .cep-modal__panel {
    padding: 1rem;
  }

  .cep-form__row,
  .cep-form__actions {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .cep-form__actions {
    display: grid;
  }

  .related-products-grid,
  .favorite-grid {
    grid-template-columns: 1fr;
  }
}

