/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 10px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; font-size: 14px; transition: transform .12s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
  border: 1px solid transparent; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--color-primary); color: #fff; box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--color-primary-light); color: #fff; }
.btn-secondary { background: var(--color-surface-light); color: var(--color-text); border-color: var(--color-border-strong); }
.btn-secondary:hover { background: var(--color-surface-hi); color: var(--color-text); }
.btn-ghost { color: var(--color-text); border-color: var(--color-border-strong); background: transparent; }
.btn-ghost:hover { background: var(--color-surface-light); color: var(--color-text); }
.btn-outline { background: transparent; color: var(--color-text); border-color: var(--color-border-strong); }
.btn-outline:hover { background: var(--color-surface-light); color: var(--color-text); }
.btn-whatsapp { background: #111111; color: #FFFFFF; border-color: var(--color-primary); }
.btn-whatsapp:hover { background: #1A1A1D; color: #FFFFFF; }
.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: .72;
  cursor: not-allowed;
  box-shadow: none;
}
.btn-block { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 10px 14px; font-size: 12px; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; font-size: 11px;
  font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
  border-radius: 999px; background: var(--color-surface-light); color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.chip.red { background: var(--color-primary); color: #fff; border-color: transparent; }
.chip.neutral { background: rgba(227,6,19,.10); color: var(--color-primary-dark); border-color: rgba(227,6,19,.22); }
.chip.gold {
  background: linear-gradient(180deg, #FDE68A 0%, #F59E0B 100%);
  color: #4A2500;
  border-color: rgba(180, 83, 9, .45);
  box-shadow: 0 6px 14px rgba(245, 158, 11, .18);
  text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
}
.chip.discount {
  background: linear-gradient(180deg, var(--color-primary-light), var(--color-primary));
  color: #FFFFFF;
  border-color: rgba(160, 0, 12, .45);
  box-shadow: 0 8px 18px rgba(227, 6, 19, .22);
  font-size: 12px;
  padding: 7px 12px;
  min-width: 58px;
  justify-content: center;
  text-shadow: none;
}

/* Cards */
.card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--color-border-strong); box-shadow: var(--shadow); }

/* Product card */
.product-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
  transition:
    transform .22s var(--ease),
    border-color .22s var(--ease),
    box-shadow .22s var(--ease);
}
.product-card .media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #FFFFFF;
  border-bottom: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-card .media a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.product-card .media img {
  width: 100%;
  height: 100%;
  max-width: 84%;
  max-height: 84%;
  object-fit: contain;
  display: block;
  border-radius: 14px;
  transition: transform .35s var(--ease), filter .35s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-strong);
  box-shadow: 0 18px 36px rgba(15, 15, 15, .14);
}
.product-card:hover .media img {
  transform: scale(1.06);
  filter: saturate(1.03) contrast(1.02);
}
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  box-shadow: 0 18px 36px rgba(227, 6, 19, .16);
}
.product-card:focus-within .media img {
  transform: scale(1.04);
}
.product-card .badges {
  position: absolute;
  top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  z-index: 2;
  max-width: calc(100% - 24px);
}
.product-card .badges--left {
  left: 12px;
  right: auto;
  justify-content: flex-start;
}
.product-card .badges--right {
  right: 12px;
  left: auto;
  justify-content: flex-end;
}
.product-card .badges--right .chip {
  margin-left: auto;
}
.product-card .body {
  padding: 14px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 0;
  flex: 1 1 auto;
}
.product-card .cat {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  min-height: 1.2em;
}
.product-card .name {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .name a { color: inherit; }
.product-card .subtitle {
  color: var(--color-text-muted);
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card .rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #D97706;
  font-size: 13px;
}
.product-card .rating span { color: var(--color-text-dim); }
.product-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
  min-height: 1.9em;
  text-align: center;
}
.product-card .old {
  text-decoration: line-through;
  color: var(--color-text-dim);
  font-size: 12px;
}
.product-card .price {
  color: var(--color-primary);
  font-size: 28px;
  font-weight: 900;
  font-family: var(--font-display);
  letter-spacing: .01em;
  line-height: 1;
}
.product-card .installments {
  font-size: 11px;
  color: var(--color-text-muted);
  min-height: 1.1em;
}
.product-card .actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 2px;
}
.product-card .actions .btn {
  min-height: 48px;
}
.product-card:hover .btn-primary {
  box-shadow: 0 12px 28px rgba(227, 6, 19, .28);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}
.products-grid > .card,
.products-grid > .product-card {
  height: 100%;
}
@media (max-width: 1200px){ .products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 780px){ .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (max-width: 520px){ .products-grid { grid-template-columns: 1fr; } }

/* Benefits strip */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #111111, #1A1A1D);
  border: 1px solid var(--color-border);
}
.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.benefit .ico {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: rgba(227,6,19,.14);
  color: var(--color-primary);
  border-radius: 10px;
  flex: 0 0 auto;
}
.benefit strong { display: block; font-size: 14px; color: #fff; }
.benefit span { color: #D1D5DB; font-size: 12px; }
@media (max-width: 900px){ .benefits { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .benefits { grid-template-columns: 1fr; } }

/* Category tiles */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px){ .cat-grid { grid-template-columns: repeat(2, 1fr); } }
.cat-tile {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  padding: 24px; min-height: 160px; background: linear-gradient(135deg, var(--color-surface), var(--color-surface-hi));
  border: 1px solid var(--color-border); display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .2s var(--ease), border-color .2s var(--ease);
}
.cat-tile:hover { transform: translateY(-4px); border-color: var(--color-primary); }
.cat-tile h3 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: .04em; }
.cat-tile span { font-size: 12px; color: var(--color-text-muted); }
.cat-tile::after {
  content: ""; position: absolute; right: 20px; bottom: 18px; width: 22px; height: 22px;
  background: url('/assets/icons/storefront/chevron-right.svg') center / 22px 22px no-repeat;
  transition: transform .2s var(--ease);
}
.cat-tile:hover::after { transform: translateX(4px); }

/* Section header */
.sec-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.sec-head p { color: var(--color-text-muted); margin-top: 6px; max-width: 60ch; }
.sec-head .link-more { color: var(--color-link); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; font-size: 12px; }

/* Accordion */
.accordion { border: 1px solid var(--color-border); border-radius: var(--radius-lg); background: var(--color-surface); overflow: hidden; }
.accordion details { border-bottom: 1px solid var(--color-border); }
.accordion details:last-child { border-bottom: 0; }
.accordion summary {
  padding: 18px 20px; cursor: pointer; font-weight: 700; display: flex; justify-content: space-between; align-items: center;
  list-style: none; gap: 16px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--color-primary); font-size: 22px; transition: transform .2s var(--ease); }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion .content { padding: 0 20px 20px; color: var(--color-text-muted); }

/* Toast */
.toast-wrap { position: fixed; right: 16px; bottom: 16px; z-index: 400; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--color-surface); border: 1px solid var(--color-border-strong);
  padding: 14px 18px; border-radius: 12px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; min-width: 260px; max-width: 92vw;
  animation: slideIn .25s var(--ease);
}
.toast.ok { border-color: rgba(227,6,19,.35); }
.toast.err { border-color: rgba(239,68,68,.4); }
@keyframes slideIn { from { transform: translateY(10px); opacity: 0; } to { transform: none; opacity: 1; } }

/* Cart drawer */
.cart-drawer {
  position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,.6);
  opacity: 0; pointer-events: none; transition: opacity .2s var(--ease);
}
.cart-drawer.open { opacity: 1; pointer-events: auto; }
.cart-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 96vw);
  background: var(--color-surface); transform: translateX(100%); transition: transform .3s var(--ease);
  display: flex; flex-direction: column;
}
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-panel .drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--color-border);
}
.cart-panel .items { flex: 1; overflow-y: auto; padding: 12px 16px; }
.cart-panel .item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--color-border); }
.cart-panel .item img { width: 64px; height: 64px; object-fit: contain; background: #17181D; border-radius: 8px; }
.cart-panel .item h5 { font-size: 14px; }
.cart-panel .item .qty { display: inline-flex; align-items: center; margin-top: 6px; border: 1px solid var(--color-border); border-radius: 8px; overflow: hidden; }
.cart-panel .item .qty button { width: 26px; height: 28px; color: #fff; }
.cart-panel .item .qty span { padding: 0 8px; font-weight: 700; font-size: 13px; }
.cart-panel .item .rm { color: var(--color-text-dim); font-size: 12px; margin-top: 6px; }
.cart-panel .item .rm:hover { color: var(--color-error); }
.cart-panel .drawer-footer { padding: 16px; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 10px; }
.cart-panel .totals { display: flex; justify-content: space-between; font-weight: 800; }
.cart-panel .free-bar { height: 6px; background: var(--color-surface-hi); border-radius: 999px; overflow: hidden; }
.cart-panel .free-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light)); transition: width .3s var(--ease); }
.cart-panel .free-bar span.progress-0 { width: 0%; }
.cart-panel .free-bar span.progress-10 { width: 10%; }
.cart-panel .free-bar span.progress-20 { width: 20%; }
.cart-panel .free-bar span.progress-30 { width: 30%; }
.cart-panel .free-bar span.progress-40 { width: 40%; }
.cart-panel .free-bar span.progress-50 { width: 50%; }
.cart-panel .free-bar span.progress-60 { width: 60%; }
.cart-panel .free-bar span.progress-70 { width: 70%; }
.cart-panel .free-bar span.progress-80 { width: 80%; }
.cart-panel .free-bar span.progress-90 { width: 90%; }
.cart-panel .free-bar span.progress-100 { width: 100%; }
.cart-panel .free-txt { font-size: 12px; color: var(--color-text-muted); }
.cart-panel .cart-continue-link { margin-top: 12px; }
.empty { padding: 40px 20px; text-align: center; color: var(--color-text-muted); }

/* Cookie banner */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 500;
  background: var(--color-surface); border: 1px solid var(--color-border-strong);
  border-radius: 14px; padding: 18px; box-shadow: var(--shadow);
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: space-between;
  max-width: 900px; margin: 0 auto;
}
.cookie-banner[hidden] { display: none !important; }
.cookie-banner p { color: var(--color-text-muted); font-size: 13px; max-width: 60ch; }
.cookie-banner .actions { display: flex; gap: 8px; flex-wrap: wrap; }

.text-bright { color: #FFFFFF; }

.panel-soft {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.cart-empty-state {
  padding: 60px 20px;
}

.cart-empty-note {
  margin: 10px 0 20px;
}

.cart-item-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-item-thumb {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #000000;
  border-radius: 8px;
}

.cart-item-meta {
  font-size: 12px;
}

.cart-item-qty {
  margin-top: 8px;
}

.cart-item-summary {
  text-align: right;
}

.cart-item-remove {
  color: var(--color-text-dim);
  font-size: 12px;
  margin-top: 6px;
}

.cart-summary-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.cart-summary-buttons {
  display: flex;
  gap: 8px;
}

.cart-summary-cta {
  margin-top: 12px;
}

.cart-summary-whatsapp {
  margin-top: 8px;
}

.search-drawer-panel {
  width: min(560px, 96vw);
  left: auto;
  right: 0;
  transform: translateX(100%);
}

.search-drawer-body {
  padding: 16px;
}

.search-drawer-input {
  width: 100%;
  padding: 14px;
  background: var(--color-background);
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
}

.search-drawer-results {
  margin-top: 12px;
}

.search-result-item {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 6px;
  background: var(--color-surface);
}

.search-result-thumb {
  object-fit: contain;
  background: #000000;
  border-radius: 6px;
}

.search-result-name {
  display: block;
}

.search-empty {
  padding: 12px 4px;
}

.footer-disclaimer {
  color: var(--color-text-dim);
  font-size: 11px;
  margin-top: 16px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.text-sm { font-size: 13px; }
.text-xs { font-size: 12px; }
.font-bold { font-weight: 800; }
.text-right { text-align: right; }

.checkout-empty-state {
  padding: 60px 20px;
}

.checkout-empty-cta {
  margin-top: 12px;
}

.checkout-note {
  font-size: 13px;
  margin-top: 12px;
}

.checkout-terms {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.checkout-confirm {
  text-align: center;
  padding: 40px;
}

.checkout-confirm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  background: rgba(227,6,19,.12);
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.checkout-confirm-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.checkout-benefits {
  margin: 14px 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.checkout-benefits li + li {
  margin-top: 6px;
}

.search-result-meta {
  color: var(--color-text-muted);
}

/* Forms */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 13px; color: var(--color-text-muted); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px; /* Impede zoom automático do iOS Safari */
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%235F6470'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.field .err { color: var(--color-error); font-size: 12px; min-height: 16px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--color-error); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px){ .form-row { grid-template-columns: 1fr; } }

/* Acessibilidade de Foco nos Botões */
.btn:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

/* Custom Checkboxes e Radios para Loja Pública e Conta do Cliente (Global) */
body:not(.admin-body) input[type="checkbox"],
.checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border-strong);
  background-color: var(--color-surface);
  display: inline-grid;
  place-content: center;
  transition: all 0.15s var(--ease);
  cursor: pointer;
  margin: 0;
  border-radius: 4px;
  vertical-align: middle;
}
body:not(.admin-body) input[type="radio"],
.radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border-strong);
  background-color: var(--color-surface);
  display: inline-grid;
  place-content: center;
  transition: all 0.15s var(--ease);
  cursor: pointer;
  margin: 0;
  border-radius: 50%;
  vertical-align: middle;
}
body:not(.admin-body) input[type="checkbox"]:checked,
.checkbox input[type="checkbox"]:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
body:not(.admin-body) input[type="checkbox"]:checked::before,
.checkbox input[type="checkbox"]:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #fff;
  clip-path: polygon(14% 44%, 0 58%, 38% 96%, 100% 16%, 86% 2%, 38% 68%);
}
body:not(.admin-body) input[type="radio"]:checked,
.radio input[type="radio"]:checked {
  border-color: var(--color-primary);
}
body:not(.admin-body) input[type="radio"]:checked::before,
.radio input[type="radio"]:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: var(--color-primary);
  border-radius: 50%;
}
body:not(.admin-body) input[type="checkbox"]:focus-visible,
.checkbox input[type="checkbox"]:focus-visible,
body:not(.admin-body) input[type="radio"]:focus-visible,
.radio input[type="radio"]:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}


/* Painel de Configuração de Cookies LGPD */
.cookie-settings {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 600;
  background: var(--color-surface);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: min(440px, 92vw);
}
.cookie-settings[hidden] {
  display: none !important;
}
.cookie-settings h2 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--color-text);
}
.cookie-settings label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text);
}
.cookie-settings input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
}
.cookie-settings .btn {
  width: 100%;
}


/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--color-surface), var(--color-surface-light));
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  padding: 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; align-items: center;
}
@media (max-width: 800px){ .newsletter { grid-template-columns: 1fr; padding: 28px; } }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input { flex: 1; min-width: 200px; padding: 14px 16px; background: var(--color-surface); border: 1px solid var(--color-border-strong); border-radius: 10px; color: var(--color-text); }

/* Tags */
.tag { display: inline-block; padding: 4px 10px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; background: var(--color-surface-light); border-radius: 999px; color: var(--color-text-muted); }

/* Rating stars pseudo */
.stars { --p: 100%; display: inline-block; font-size: 14px; letter-spacing: 2px; background: linear-gradient(90deg, #FFC96B var(--p), #3B3D45 var(--p)); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 900; }
.stars::before { content: "★★★★★"; }
