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

html {
  font-size: var(--fs-root);
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cl-surface-3);
  color: var(--cl-text);
  font-size: var(--fs-base);
  line-height: 1.55;
}

/* Escala dos tamanhos fixos do protótipo (Tailwind arbitrário) */
body .text-\[9px\]  { font-size: 0.6875rem !important; }
body .text-\[10px\] { font-size: 0.75rem !important; }
body .text-\[11px\] { font-size: 0.8125rem !important; }
body .text-\[12px\] { font-size: 0.875rem !important; }
body .text-\[13px\] { font-size: 1rem !important; }
body .text-\[15px\] { font-size: 1.125rem !important; }
body .text-\[22px\] { font-size: 1.625rem !important; }
body .text-\[26px\] { font-size: 1.875rem !important; }

/* Layout: full-width bands + conteúdo centralizado */
.site-full {
  width: 100%;
}

.site-container {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.site-chrome {
  background: var(--cl-surface);
  border-bottom: 1px solid var(--cl-border);
}

/* Home: nav azul encosta no hero (evita faixa do line-height entre blocos) */
.site-chrome:has(+ .hero) {
  border-bottom: none;
}

.site-chrome + .hero {
  margin-top: -1lh;
}

/* Header — mobile first (design-system §8) */
.site-header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "logo actions"
    "search search";
  gap: 0.625rem 0.5rem;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo search actions";
    gap: 1rem;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
  }
}

.site-logo { grid-area: logo; }

.site-header__search {
  grid-area: search;
  min-width: 0;
  width: 100%;
}

.site-header__actions {
  grid-area: actions;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}

.site-header__actions .btn__label,
.search-bar__submit-label {
  display: none;
}

@media (min-width: 640px) {
  .site-header__actions .btn__label,
  .search-bar__submit-label {
    display: inline;
  }
}

@media (max-width: 639px) {
  .site-header__actions .btn {
    padding: 0.5rem 0.625rem;
  }

  .search-bar__submit {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo__img {
  height: 32px;
  width: auto;
  max-width: min(220px, 45vw);
}
.site-logo__img--footer {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

a { text-decoration: none; color: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 500; cursor: pointer;
  border: none; transition: opacity .15s;
}
.btn:hover { opacity: .88; }
.btn-primary { background: var(--cl-primary); color: #fff; }
.btn-accent  { background: var(--cl-accent); color: #1c1917; }
.btn-ghost   { background: transparent; color: var(--cl-primary); border: 1px solid var(--cl-border-strong); }
.btn-danger  { background: var(--cl-danger); color: #fff; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* Badges */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 2px 8px; border-radius: 20px;
  font-size: 11px; font-weight: 500;
}
.badge-primary { background: var(--cl-primary-light); color: var(--cl-primary); }
.badge-accent  { background: var(--cl-accent-light); color: #92400e; }
.badge-success { background: var(--cl-success-light); color: #14532d; }
.badge-danger  { background: var(--cl-danger-light); color: var(--cl-danger); }

/* Cards */
.card {
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.card--featured { border-color: var(--cl-primary); }

/* Topbar — oculta no mobile (contatos só no desktop) */
.topbar {
  display: none;
  background: var(--cl-primary);
  color: #fff;
  font-size: 0.8125rem;
  border-radius: 0;
}

@media (min-width: 640px) {
  .topbar {
    display: block;
  }
}

.topbar__hours {
  line-height: 1.35;
}

/* Nav marcas — scroll horizontal no mobile */
.nav-marcas {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 2px;
  margin-left: -4px;
  margin-right: -4px;
  background: var(--cl-primary);
  list-style: none;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.nav-marcas::-webkit-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .nav-marcas {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}

.nav-marcas ul,
.nav-marcas li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-marcas__item {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  color: rgba(255,255,255,.7);
  font-size: 0.8125rem;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.nav-marcas__item:hover { color: #fff; }

.nav-marcas__item--active {
  color: #fff;
  border-bottom-color: var(--cl-accent);
}

.nav-marcas__item--ofertas,
.nav-marcas__item.ml-auto {
  margin-left: auto;
  gap: 4px;
}

/* Trust bar — mobile: cards em scroll horizontal; desktop: 4 colunas */
.trust-bar {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.625rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  margin-left: -1rem;
  margin-right: -1rem;
  padding: 0.25rem 0 0.5rem 1rem;
  background: transparent;
  border: none;
  border-radius: 0;
}

.trust-bar::-webkit-scrollbar {
  display: none;
}

/* Espaço no fim do scroll + “peek” do próximo card cortado na borda */
.trust-bar::after {
  content: '';
  flex: 0 0 1rem;
}

.trust-bar__item {
  display: flex;
  /* ~1,5 cards visíveis: o segundo aparece pela metade */
  flex: 0 0 calc(66.666% - 0.35rem);
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  min-width: 0;
  padding: 0.75rem 0.625rem;
  text-align: center;
  background: var(--cl-surface);
  border: 1px solid var(--cl-border);
  border-radius: var(--r-md);
  scroll-snap-align: start;
}

.trust-bar__item svg {
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
}

.trust-bar__text {
  min-width: 0;
  width: 100%;
}

.trust-bar__title {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
}

.trust-bar__sub {
  font-size: 0.6875rem;
  color: var(--cl-text-muted);
  line-height: 1.3;
  margin-top: 0.125rem;
}

@media (min-width: 1024px) {
  .trust-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    overflow: visible;
    scroll-snap-type: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0.75rem 1.25rem;
    background: var(--cl-surface);
    border: 1px solid var(--cl-border);
    border-radius: var(--r-lg);
  }

  .trust-bar::after {
    content: none;
  }

  .trust-bar__item {
    flex: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 0;
  }

  .trust-bar__item svg {
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }

  .trust-bar__title {
    font-size: 0.8125rem;
    line-height: 1.3;
  }

  .trust-bar__sub {
    font-size: 0.75rem;
    line-height: 1.35;
  }
}

/* Footer — marcas + institucional lado a lado no mobile */
.site-footer__grid {
  display: grid;
  gap: 1.5rem;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.site-footer__menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .site-footer__menus {
    display: contents;
  }
}

/* Hero */
.hero {
  background: var(--cl-primary);
  width: 100%;
}
.hero__badge {
  background: rgba(245,158,11,.15);
  color: #fcd34d;
}
.hero__widget {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
}

/* Busca aplicação */
.busca-aplicacao { display: flex; flex-direction: column; gap: 8px; }
.busca-aplicacao__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: rgba(255, 255, 255, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-sm);
  padding: 8px 30px 8px 10px;
  font-size: 12px;
  outline: none;
  width: 100%;
  cursor: pointer;
}
.busca-aplicacao__select option { color: var(--cl-text); background: var(--cl-surface); }

/* Search bar — coluna no mobile, linha no sm+ */
.search-bar {
  display: flex;
  flex-direction: column;
  background: var(--cl-surface-3);
  border: 1.5px solid var(--cl-border-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
}

@media (min-width: 640px) {
  .search-bar {
    flex-direction: row;
  }
}

.search-bar__row {
  display: flex;
  flex: 1;
  min-width: 0;
}

.search-bar__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--cl-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  color: #fff;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 30px 8px 12px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  outline: none;
  min-height: 36px;
  flex-shrink: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .search-bar__select {
    width: auto;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
}
.search-bar__select option {
  color: var(--cl-text);
  background: var(--cl-surface);
}
.search-bar__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-size: 12px;
  outline: none;
  color: var(--cl-text);
  min-width: 0;
}

/* ─── Live search autocomplete ─────────────────────────────────────────── */
.search-ac {
  position: fixed; /* posicionado via JS getBoundingClientRect */
  background: var(--cl-surface);
  border: 1.5px solid var(--cl-border-strong);
  border-radius: var(--r-sm);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  z-index: 9999;
  overflow: hidden;
  max-height: 440px;
  overflow-y: auto;
}

.search-ac__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--cl-text);
  border-bottom: 1px solid var(--cl-border);
  outline: none;
  transition: background 0.1s;
}

.search-ac__item:last-of-type { border-bottom: none; }

.search-ac__item:hover,
.search-ac__item.is-active {
  background: var(--cl-primary-light);
}

.search-ac__img {
  width: 48px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  background: var(--cl-surface-3);
  border-radius: 2px;
}

.search-ac__img--placeholder {
  background: var(--cl-surface-3);
}

.search-ac__info {
  flex: 1;
  min-width: 0;
}

.search-ac__name {
  display: block;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--cl-text);
}

.search-ac__name mark {
  background: transparent;
  color: var(--cl-accent);
  font-weight: 700;
}

.search-ac__sku {
  display: block;
  font-size: 10px;
  color: var(--cl-text-muted);
  margin-top: 1px;
}

.search-ac__price {
  font-size: 11px;
  font-weight: 600;
  color: var(--cl-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.search-ac__viewall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--cl-primary);
  text-decoration: none;
  font-weight: 500;
  background: var(--cl-surface-2);
  border-top: 1px solid var(--cl-border);
  outline: none;
}

.search-ac__viewall:hover,
.search-ac__viewall.is-active {
  background: var(--cl-primary-light);
  text-decoration: underline;
}

.search-ac__empty {
  padding: 16px 12px;
  font-size: 12px;
  color: var(--cl-text-muted);
  text-align: center;
}

/* Stock indicators */
.stock--ok  { color: var(--cl-success); font-size: 0.75rem; font-weight: 500; }
.stock--low { color: var(--cl-danger);  font-size: 0.75rem; font-weight: 500; }
.stock--out { color: var(--cl-text-muted); font-size: 0.75rem; font-weight: 500; }

/* ─── Product card ─────────────────────────────────────────────────────── */
/* Imagens Sankhya: 753×502 px (proporção 3:2) */
.product-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,56,168,.1);
}
.product-card__img {
  background: var(--cl-surface-3);
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-card__img--featured { background: var(--cl-primary-light); }
.product-card__body { padding: 0.75rem; }
.product-card__meta {
  font-size: 0.6875rem;
  color: var(--cl-text-muted);
  margin-bottom: 0.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__name {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--cl-text);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(0.8125rem * 1.35 * 2);
}
.product-card__price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--cl-primary);
}
.product-card__price del { color: var(--cl-text-muted); font-weight: 400; font-size: 0.75rem; }

/* ─── Single product page ───────────────────────────────────────────────── */
.product-single__img-wrap {
  background: var(--cl-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  width: 100%;
}
.product-single__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-single__name {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--cl-text);
}
.product-single__meta {
  font-size: 0.75rem;
  color: var(--cl-text-muted);
  margin-top: 0.375rem;
}
.product-single__price-wrap {
  padding: 1.25rem 0;
  border-top: 1px solid var(--cl-border);
  border-bottom: 1px solid var(--cl-border);
  margin-bottom: 1.25rem;
}
.product-single__price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--cl-primary);
  line-height: 1.1;
}
.product-single__price del {
  font-size: 1rem;
  font-weight: 400;
  color: var(--cl-text-muted);
  text-decoration: line-through;
  margin-left: 0.5rem;
}
.product-single__stock {
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
}
.product-single__add-to-cart {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  flex-wrap: wrap;
}
.product-single__qty-wrap { min-width: 5rem; }
.product-single__add-to-cart .btn-primary {
  flex: 1;
  min-width: 180px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  justify-content: center;
}
.product-single__trust {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 1px solid var(--cl-border);
  margin-top: 1.25rem;
}
.product-single__trust-item {
  font-size: 0.75rem;
  color: var(--cl-text-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* Footer */
.site-footer {
  background: var(--cl-primary);
  border-radius: 0;
  overflow: hidden;
  width: 100%;
}
.site-footer__bottom { background: rgba(0,0,0,.2); }

/* Form fields */
.field {
  display: flex; flex-direction: column; gap: 4px;
}
.field label {
  font-size: 11px; font-weight: 500; color: var(--cl-text-muted);
}
.field input, .field select, .field textarea {
  border: 1px solid var(--cl-border-strong);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  font-size: 12px;
  outline: none;
  color: var(--cl-text);
  background: var(--cl-surface);
  font-family: inherit;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}
.field input:focus, .field select:focus {
  border-color: var(--cl-primary-mid);
}

/* Tabs */
.tabs { display: flex; gap: 2px; border-bottom: 1px solid var(--cl-border); }
.tabs__item {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--cl-text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.tabs__item--active {
  color: var(--cl-primary);
  border-bottom-color: var(--cl-primary);
}

/* Breadcrumb */
.breadcrumb { font-size: 11px; color: var(--cl-text-muted); }
.breadcrumb a { color: var(--cl-primary); }
.breadcrumb a:hover { text-decoration: underline; }

/* Cart badge */
.cart-badge {
  position: absolute; top: -5px; right: -5px;
  background: var(--cl-accent); color: #1c1917;
  width: 16px; height: 16px; border-radius: 50%;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Checkout steps */
.checkout-steps { display: flex; gap: 0; }
.checkout-step {
  flex: 1; text-align: center; padding: 10px;
  font-size: 11px; font-weight: 500;
  color: var(--cl-text-muted);
  border-bottom: 2px solid var(--cl-border);
}
.checkout-step--active {
  color: var(--cl-primary);
  border-bottom-color: var(--cl-primary);
}
.checkout-step--done {
  color: var(--cl-success);
  border-bottom-color: var(--cl-success);
}

/* Paginação WooCommerce */
.woocommerce-pagination {
  margin-top: 1.5rem;
}

.woocommerce-pagination ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce-pagination li {
  list-style: none;
}

.woocommerce-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
  color: var(--cl-text-muted);
  border: 1px solid var(--cl-border);
  background: var(--cl-surface);
  text-decoration: none;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}

.woocommerce-pagination a.page-numbers:hover {
  background: var(--cl-primary-light);
  color: var(--cl-primary);
  border-color: var(--cl-primary-light);
}

.woocommerce-pagination .page-numbers.current {
  background: var(--cl-primary);
  color: #fff;
  border-color: var(--cl-primary);
  cursor: default;
}

.woocommerce-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: var(--cl-text-subtle);
  letter-spacing: 0.05em;
  cursor: default;
}

.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next {
  font-size: 1rem;
  padding: 0 12px;
  letter-spacing: -0.02em;
}

/* ─── Responsive utilities missing from purged Tailwind ─────────────────── */
/* sm (640px) */
@media (min-width: 640px) {
  .sm\:flex          { display: flex; }
  .sm\:flex-row      { flex-direction: row; }
  .sm\:grid-cols-2   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:hidden        { display: none; }
  .sm\:items-center  { align-items: center; }
  .sm\:table-cell    { display: table-cell; }
  .sm\:col-span-2    { grid-column: span 2 / span 2; }
}

/* md (768px) */
@media (min-width: 768px) {
  .md\:grid-cols-3           { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-\[2fr_1fr_1fr\] {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .md\:p-8  { padding: 2rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* lg (1024px) */
@media (min-width: 1024px) {
  .lg\:border-b-0  { border-bottom-width: 0; }
  .lg\:border-r    { border-right-width: 1px; border-right-style: solid; }
  .lg\:col-span-1  { grid-column: span 1 / span 1; }
  .lg\:col-span-2  { grid-column: span 2 / span 2; }
  .lg\:col-span-3  { grid-column: span 3 / span 3; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-\[1fr_320px\]  { grid-template-columns: 1fr 320px; }
  .lg\:grid-cols-\[2fr_1fr\]    { grid-template-columns: 2fr 1fr; }
  .lg\:p-7     { padding: 1.75rem; }
  .lg\:p-8     { padding: 2rem; }
  .lg\:sticky  { position: sticky; }
  .lg\:top-4   { top: 1rem; }
}

/* xl (1280px) */
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ─── Product card CTA footer ───────────────────────────────────────────── */
.product-card__footer {
  padding: 0 0.75rem 0.75rem;
}

.product-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: var(--cl-primary);
  color: #fff;
  border-radius: var(--r-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.product-card:hover .product-card__cta {
  background: var(--cl-primary-dark);
}

/* Estoque na linha do preço */
.product-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
