/* ===== Mundo Árabe — estilos alinhados com anexos ===== */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f5f5;
  --card: #ffffff;
  --card-hover: #f0f0f0;
  --border: #e0e0e0;
  --fg: #111111;
  --fg-muted: #555555;
  --accent: rgb(207, 166, 95);
  --accent-dim: rgba(207, 166, 95, 0.12);
  --accent-fg: #000000;
  --danger: #c0392b;
  --radius: 10px;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Inter", sans-serif;
  --font-price: "Montserrat", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.15rem;
}

/* ---------- Header semi-transparente ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
 background: rgba(0, 0, 0, 0.925);
  /* backdrop-filter: blur(6px); */
  /* -webkit-backdrop-filter: blur(6px); */
  border-bottom: 1px solid var(--accent);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 76px;
}
.site-header .logo img { height: 64px; width: auto; }
.site-nav { display: none; gap: 1.75rem; font-size: .9rem; }
@media (min-width: 780px) { .site-nav { display: flex; } }

.nav-toggle { display: inline-flex; font-size: 1.3rem; color: #fff; background: none; border: none; }
@media (min-width: 780px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.95);
  border-top: 1px solid var(--border);
  padding: .5rem 1.25rem 1rem;
}
.mobile-nav.open { display: flex; }
@media (min-width: 780px) { .mobile-nav { display: none !important; } }
.mobile-nav a { color: #ffffff; padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.08); font-size: .95rem; }
.mobile-nav a.active { color: var(--accent); }
.mobile-search { padding-top: .8rem; }
.mobile-search input {
  width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; border-radius: 8px; padding: .6rem .8rem; font-size: .9rem;
}
.site-nav a { color: #ffffff; transition: color .15s; }
.site-nav a:hover, .site-nav a.active { color: var(--accent); }
.header-actions { display: flex; align-items: center; gap: .5rem; }
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: none;
  background: transparent;
  color: #ffffff;
  border-radius: 8px;
  transition: background .15s;
}
.icon-btn:hover { background: rgba(255,255,255,0.1); }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  background: var(--accent);
  color: #000000;
  font-size: .65rem;
  font-weight: 700;
  min-width: 17px; height: 17px;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}
.search-box { display: none; align-items: center; gap: .5rem; }
.search-box input {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  border-radius: 8px;
  padding: .5rem .8rem;
  font-size: .9rem;
  width: 220px;
}
.search-box input::placeholder {
  color: rgba(255,255,255,0.6);
}
@media (min-width: 900px) { .search-box { display: flex; } }

/* ---------- Hero com overlay gradiente ---------- */
.hero { position: relative; overflow: hidden; }
.hero img { width: 100%; height: 62vh; min-height: 380px; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.eyebrow {
  color: #cfa65f !important;
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .75rem;
  margin: 0 0 .75rem;
}
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  max-width: 32rem;
  margin: 0 0 1rem;
  line-height: 1.1;
  color: #ffffff;
}
.hero-content p { max-width: 30rem; color: rgba(255,255,255,0.85); margin: 0 0 1.5rem; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: all .15s;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--accent); color: #000000; }
.btn-primary:hover { opacity: .85; }
.btn-outline { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #000000; }
.btn-block { width: 100%; padding: 0.9rem 1.5rem; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---------- Secções ---------- */
.section { padding: 3rem 0; }
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap; }
.section-head h2 { font-family: var(--font-display); font-size: 1.8rem; margin: 0; font-weight: 600; color: var(--fg); }
.section-head a { color: var(--accent); font-size: .85rem; }
.section-head a:hover { opacity: .7; text-decoration: underline; }

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 0 0.5rem;
}
@media (min-width: 640px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.product-card .thumb {
  position: relative;
  aspect-ratio: 1;
  background: #fafafa;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: contain; padding: .75rem; }
.badge-discount {
  position: absolute; top: .5rem; left: .5rem;
  background: var(--accent);
  color: #ffffff;
  font-size: .7rem; font-weight: 700;
  padding: .25rem .5rem; border-radius: 5px;
}
.add-btn {
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.5rem;
  background: var(--accent);
  color: #ffffff; /* branco */
  border: none;
  border-radius: 20px;
  padding: 0.45rem 0.8rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1; /* sempre visível */
  transform: translateY(0);
  transition: box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem; /* se não houver ícone, não faz diferença */
  cursor: pointer;
  z-index: 5;
}
.add-btn:hover {
  opacity: 0.85;
  box-shadow: 0 6px 20px rgba(207, 166, 95, 0.4);
}
.product-card:hover .add-btn, .add-btn:focus-visible { opacity: 1;
  transform: translateY(0);
  box-shadow: 0 6px 20px rgba(207, 166, 95, 0.4); }
.product-card .info { padding: .8rem .9rem 1rem; display: flex; flex-direction: column; gap: .35rem; flex: 1; }
.product-card .brand { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--fg-muted); }
.product-card .name {
  font-size: .82rem;      /* um pouco menor pra caber melhor */
  font-weight: 500;
  line-height: 1.35;      /* 👈 isso resolve o "grudado" - dá espaço entre as linhas */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;      /* ajustado pro novo line-height */
  color: var(--fg);
}
.price-row { margin-top: auto; padding-top: .4rem; font-family: var(--font-price); }
.price-old { display: block; font-size: .75rem; color: var(--fg-muted); text-decoration: line-through; }
.price-now { display: block; font-size: 1.05rem; font-weight: 700; color: var(--fg); }

/* ---------- Category chips ---------- */
.chip-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.chip {
  padding: .5rem 1rem; border-radius: 99px;
  border: 1px solid var(--border);
  font-size: .82rem;
  color: var(--fg-muted);
  background: var(--bg);
  transition: all .15s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { background: var(--accent); border-color: var(--accent); color: #000000; font-weight: 600; }

/* ---------- Pagination ---------- */
.toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.toolbar select {
  background: var(--bg-soft); color: var(--fg); border: 1px solid var(--border);
  border-radius: 8px; padding: .5rem .7rem; font-size: .85rem;
}
.result-count { color: var(--fg-muted); font-size: .85rem; }
.pagination { display: flex; justify-content: center; gap: .4rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pagination button {
  min-width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--border); background: var(--bg); color: var(--fg);
}
.pagination button.active { background: var(--accent); color: #000000; border-color: var(--accent); }
.pagination button:disabled { opacity: .4; cursor: default; }

/* ---------- Produto (ficha técnica e avaliações) ---------- */
.pd-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 860px) { .pd-layout { grid-template-columns: 1fr 1fr; } }
.pd-gallery-main { background: #fafafa; border-radius: var(--radius); aspect-ratio: 1; overflow: hidden; margin-bottom: .8rem; border: 1px solid var(--border); }
.pd-gallery-main img { width: 100%; height: 100%; object-fit: contain; padding: 1.5rem; }
.pd-thumbs { display: flex; gap: .6rem; flex-wrap: wrap; }
.pd-thumbs button { width: 64px; height: 64px; border-radius: 8px; border: 1px solid var(--border); background: #fafafa; padding: 4px; overflow: hidden; }
.pd-thumbs button.active { border-color: var(--accent); }
.pd-thumbs img { width: 100%; height: 100%; object-fit: contain; }
.pd-brand { color: var(--fg-muted); text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.pd-title { font-family: var(--font-display); font-size: 2rem; margin: 0.4rem 0 1rem; color: var(--fg); }
.pd-price-row { display: flex; align-items: baseline; gap: .8rem; margin-bottom: 1.5rem; font-family: var(--font-price); }
.pd-price-now { font-size: 1.8rem; font-weight: 700; color: var(--fg); }
.pd-price-old { font-size: 1.1rem; color: var(--fg-muted); text-decoration: line-through; }
.pd-discount { background: var(--accent-dim); color: var(--accent); font-size: .75rem; font-weight: 700; padding: .25rem .55rem; border-radius: 6px; }

/* ---------- Ficha técnica (secção em baixo) ---------- */
.pd-specs-section {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.pd-specs-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--fg);
}
.pd-specs-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.pd-specs-section td {
  padding: 0.6rem 0.2rem;
  border-bottom: 1px solid var(--border);
}
.pd-specs-section td:first-child {
  font-weight: 600;
  color: var(--fg-muted);
  width: 40%;
}
.pd-specs-section tr:last-child td {
  border-bottom: none;
}

/* ---------- Avaliações ---------- */
.pd-reviews {
  margin-top: 2.5rem;
}
.pd-reviews h3 { font-family: var(--font-display); font-size: 1.6rem; margin: 0 0 .5rem; }
.pd-reviews-summary {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  background: var(--bg-soft);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.pd-reviews-avg { font-size: 2.2rem; font-weight: 700; color: var(--accent); line-height: 1.2; }
.pd-reviews-avg small { font-size: 1rem; font-weight: 400; color: var(--fg-muted); }
.pd-reviews-stars { color: var(--accent); font-size: 1.2rem; }
.pd-reviews-bar { flex: 1; min-width: 150px; }
.pd-reviews-bar .bar { display: flex; align-items: center; gap: .5rem; font-size: .8rem; }
.pd-reviews-bar .bar .track { flex: 1; height: 6px; background: var(--border); border-radius: 99px; overflow: hidden; }
.pd-reviews-bar .bar .fill { height: 100%; background: var(--accent); border-radius: 99px; }

.pd-review-item {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}
.pd-review-item .review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: .3rem;
}
.pd-review-item .review-name { font-weight: 600; }
.pd-review-item .review-date { font-size: .8rem; color: var(--fg-muted); }
.pd-review-item .review-stars { color: var(--accent); font-size: .9rem; }
.pd-review-item .review-text { color: var(--fg-muted); font-size: .9rem; margin: .3rem 0 0; }
.pd-review-item .review-helpful { font-size: .75rem; color: var(--fg-muted); margin-top: .3rem; }

.pd-reviews .btn-load-more { margin-top: 1rem; }

/* ---------- Carrinho (drawer) ---------- */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none; transition: opacity .2s;
  z-index: 60;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: #ffffff;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 61;
  display: flex; flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.2rem;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 { font-family: var(--font-display); font-size: 1.4rem; margin: 0; color: var(--fg); }
.cart-head .icon-btn { color: var(--fg); background: transparent; border: none; font-size: 1.2rem; }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-item {
  display: flex;
  gap: .8rem;
}
.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 6px;
}
.cart-item .ci-info { flex: 1; min-width: 0; }
.cart-item .ci-name { font-size: .85rem; font-weight: 500; color: var(--fg); }
.cart-item .ci-brand { font-size: .7rem; color: var(--fg-muted); }
.cart-item .ci-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: .4rem;
}
.cart-item .ci-row .qty-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.cart-item .ci-row .qty-stepper button {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  color: var(--fg);
  font-size: 1rem;
}
.cart-item .ci-row .qty-stepper span { width: 28px; text-align: center; }
.ci-remove {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: .75rem;
  text-decoration: underline;
  margin-top: .2rem;
}
.ci-remove:hover { color: var(--danger); }
.cart-empty { text-align: center; color: var(--fg-muted); padding: 3rem 1rem; }
.cart-foot {
  border-top: 1px solid var(--border);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-price);
  color: var(--fg);
}

/* ---------- Brinde no carrinho ---------- */
.brinde-box {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
  text-align: center;
  overflow-x: hidden;
  box-sizing: border-box;
  max-width: 100%;
}
.brinde-box .brinde-message {
  margin: 0 0 0.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.brinde-box .brinde-message strong {
  color: var(--accent);
}
.brinde-box .brinde-sub {
  margin: 0.2rem 0 0.5rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.brinde-bar {
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
  margin: 0.3rem 0;
}
.brinde-progress {
  height: 100%;
  background: var(--accent);
  border-radius: 99px;
  transition: width 0.3s ease;
}
.brinde-total { margin: 0; font-size: 0.7rem; color: var(--fg-muted); }
.brinde-concluido .brinde-message { color: var(--accent); }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .checkout-layout { grid-template-columns: 1.3fr 1fr; } }
.form-card, .summary-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.form-card h2, .summary-card h2 { font-family: var(--font-display); font-size: 1.4rem; margin-top: 0; color: var(--fg); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .82rem; color: var(--fg-muted); margin-bottom: .4rem; }
.field input, .field select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--fg);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 1rem;
}
.field input:focus, .field select:focus { border-color: var(--accent); outline: none; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.summary-line { display: flex; justify-content: space-between; font-size: .88rem; padding: .4rem 0; color: var(--fg-muted); }
.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.15rem;
  padding-top: .8rem;
  margin-top: .5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-price);
  color: var(--fg);
}
.summary-items {
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.summary-item {
  display: flex;
  gap: 1rem;
  font-size: .82rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.summary-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 6px;
}

/* ---------- Ajustes checkout (envio + pagamento) ---------- */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.shipping-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}
.shipping-card:has(input:checked) {
  border-color: var(--accent);
  background: rgba(207, 166, 95, 0.08);
}
.shipping-card input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
  position: relative;
  cursor: pointer;
}
.shipping-card input[type="radio"]:checked {
  border-color: var(--accent);
}
.shipping-card input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
}
.shipping-content {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.shipping-name { font-weight: 600; font-size: 0.95rem; color: var(--fg); }
.shipping-estimate { font-size: 0.78rem; color: var(--fg-muted); }
.shipping-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-left: auto;
}
.shipping-card:has(input:checked) .shipping-price { color: #1a9e4f; } /* verde como no exemplo, opcional */

/* ---------- Footer ---------- */
.site-footer {
  border-top: none;
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  color: #cccccc;
  font-size: .85rem;
  background: #000000;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-grid h4 { color: #ffffff; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 .8rem; }
.footer-grid a { display: block; padding: .3rem 0; color: var(--accent); }
.footer-grid a:hover { opacity: .7; text-decoration: underline; }
.footer-grid p { color: #cccccc; }
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #333333;
  color: #999999;
}
.footer-bottom a { color: var(--accent); }

.empty-state {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--fg-muted);
}
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--bg);
  border: 1px solid var(--accent);
  color: var(--fg);
  padding: .8rem 1.2rem;
  border-radius: 8px;
  font-size: .85rem;
  opacity: 0;
  pointer-events: none;
  transition: all .25s;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Summary item quantity buttons ---------- */
.summary-item .qty-btn {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.summary-item .qty-btn:hover { background: var(--border); }
.summary-item .qty-btn.remove {
  color: var(--danger);
  border-color: var(--danger);
}
.summary-item .qty-btn.remove:hover {
  background: var(--danger);
  color: #fff;
}

/* ---------- Outros ---------- */
.ver-mais {
  color: var(--accent);
  font-size: .85rem;
  transition: opacity 0.2s;
  cursor: pointer;
}
.ver-mais:hover { opacity: 0.7; text-decoration: underline; }

#categorias-section .chip-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
#categorias-section .chip {
  padding: 0.7rem 1.5rem;
  font-size: 0.9rem;
  border-radius: 99px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}
#categorias-section .chip:hover {
  background: var(--accent);
  color: #000000;
}
#categorias-section .chip.active {
  background: var(--accent);
  color: #000000;
}
/* Pesquisa com autocomplete */
.search-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.search-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: color 0.2s;
}
.search-toggle:hover {
  color: var(--accent);
}
.search-input-wrap {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 0.5rem;
  min-width: 280px;
  z-index: 50;
  margin-top: 0.5rem;
}
.search-input-wrap.open {
  display: block;
}
.search-input-wrap input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--fg);
  background: #fff;
}
.search-input-wrap input:focus {
  outline: none;
  border-color: var(--accent);
}
.search-suggestions {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.search-suggestions li {
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.search-suggestions li:last-child {
  border-bottom: none;
}
.search-suggestions li:hover {
  background: var(--bg-soft);
}
.search-suggestions li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.search-suggestions li .suggestion-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
}
.search-suggestions li .suggestion-brand {
  font-size: 0.7rem;
  color: var(--fg-muted);
}
.header-actions .icon-btn img,
.header-actions .search-toggle img {
  filter: brightness(0) invert(1); /* deixa a imagem branca */
  transition: filter 0.2s;
}
.header-actions .icon-btn:hover img,
.header-actions .search-toggle:hover img {
  filter: brightness(0) invert(0.8); /* dourado suave ao passar o rato */
}
/* Notificação discreta ao lado do carrinho */
.cart-notification {
  position: fixed;
  top: 1rem;
  right: 5rem;
  background: var(--accent);
  color: #000;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 100;
}
.cart-notification.show {
  opacity: 1;
  transform: translateY(0);
}
/* Checkout accordion */
.checkout-accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  background: var(--card);
  overflow: hidden;
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  background: var(--bg-soft);
  transition: background 0.2s;
}
.accordion-header:hover {
  background: var(--bg);
}
.accordion-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}
.accordion-total {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}
.accordion-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 0.2rem 0.5rem;
}
.accordion-body {
  padding: 1.2rem 1.5rem;
  border-top: 1px solid var(--border);
}
.accordion-body .summary-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.accordion-body .summary-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 6px;
}
.accordion-body .summary-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
}
.accordion-body .summary-total-row.total {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  border-top: 2px solid var(--border);
  padding-top: 0.6rem;
  margin-top: 0.4rem;
}

/* Secções do formulário */
.checkout-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.checkout-section h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin: 0 0 1rem;
  color: var(--fg);
}

/* Métodos de pagamento */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.payment-method-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: var(--bg);
}
.payment-method-card:has(input:checked) {
  border-color: var(--accent);
  background: rgba(207, 166, 95, 0.08);
}
.payment-method-card input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.payment-method-card input[type="radio"]:checked {
  border-color: var(--accent);
}
.payment-method-card input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
}
.payment-method-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  gap: 0.8rem;
}
.payment-method-left { display: flex; flex-direction: column; gap: 0.1rem; }
.payment-method-left strong { font-size: 0.95rem; }
.payment-desc { font-size: 0.78rem; color: var(--fg-muted); }
.payment-method-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  flex-shrink: 0;
}
.payment-icon {
  height: 32px;
  width: 32px;
  object-fit: contain;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 4px;
  background: #fff;
}
.payment-timing { font-size: 0.7rem; color: var(--fg-muted); }

/* Rodapé do checkout */
.checkout-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--fg);
}
.checkout-total-row span:last-child {
  color: var(--accent);
}
.checkout-secure-badges {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0.8rem 0;
}
.checkout-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.checkout-trust-badges > div {
  text-align: center;
}
.checkout-trust-badges strong {
  color: var(--fg);
}
/* Página de carrinho */
.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  min-width: 0;
}
@media (max-width: 768px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  overflow-x: hidden;
}
.cart-item-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #fafafa;
  border-radius: 6px;
}
.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-weight: 500;
  font-size: 0.95rem;
}
.cart-item-brand {
  font-size: 0.75rem;
  color: var(--fg-muted);
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
}
.cart-item-qty .qty-btn {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.15s;
}
.cart-item-qty .qty-btn:hover {
  background: var(--border);
}
.cart-item-qty .qty-btn.remove {
  color: var(--danger);
  border-color: var(--danger);
}
.cart-item-qty .qty-btn.remove:hover {
  background: var(--danger);
  color: #fff;
}
.cart-item-price {
  font-weight: 700;
  font-size: 1rem;
  min-width: 80px;
  text-align: right;
}

/* Resumo do carrinho */
.cart-summary {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  align-self: start;
}
.cart-summary h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 1rem;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--fg-muted);
}
.summary-line.total {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  border-top: 2px solid var(--border);
  padding-top: 0.8rem;
  margin-top: 0.4rem;
}

/* Brinde na página */
.brinde-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 0.8rem;
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .brinde-options-grid {
    grid-template-columns: 1fr;
  }
}

.brinde-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}
.brinde-option:hover {
  background: var(--bg);
}
.brinde-option img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.brinde-option-info {
  flex: 1;
  min-width: 0;
}
.brinde-option-name {
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brinde-option-brand {
  font-size: 0.7rem;
  color: var(--fg-muted);
}
.brinde-option .btn-sm {
  padding: 0.2rem 0.6rem;
  font-size: 0.7rem;
}

/* Sugestões */
.cart-suggestions {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.cart-suggestions h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
/* Ícones de pagamento */
.payment-method-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
}
.payment-icon {
  height: 40px;
  width: auto;
  display: block;
}
.payment-timing {
  font-size: 0.7rem;
  color: var(--fg-muted);
}

/* Badges de confiança */
.checkout-secure-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin: 0.8rem 0;
}
.checkout-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.checkout-trust-badges > div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.checkout-trust-badges > div:first-child {
  gap: 0.3rem;
}
.checkout-trust-badges img {
  flex-shrink: 0;
}
/* Mais espaço para textos e botões */
.pd-title {
  margin-bottom: 1.2rem;
}
.pd-price-row {
  margin-bottom: 1.8rem;
}
#pd-add-btn {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}
.pd-perks {
  margin-top: 1.2rem;
  gap: 1.5rem;
}
.field input, .field select {
  padding: 0.8rem 1rem;
}
.btn {
  padding: 0.9rem 1.8rem;
}
/* ===== BRINDE NO DRAWER (CARRINHO LATERAL) ===== */
.cart-drawer {
  max-width: 420px;
  width: 100%;
  overflow-x: hidden; /* 👈 EVITA EXPANSÃO LATERAL */
}

.cart-drawer .cart-foot {
  overflow-x: hidden;
  padding: 1rem 1.2rem;
}

.brinde-options-drawer {
  display: flex;
  flex-direction: column; /* COLUNA ÚNICA */
  gap: 0.5rem;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 0.5rem;
  padding-right: 0.2rem;
  width: 100%; /* FORÇA LARGURA TOTAL */
  max-width: 100%; /* NUNCA ULTRAPASSAR */
  box-sizing: border-box;
}

.brinde-option-drawer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.5rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  background: var(--bg);
  width: 100%;
  box-sizing: border-box;
  min-width: 0; /* PERMITE ENCOLHER */
  flex-shrink: 0;
}

.brinde-option-drawer:hover {
  background: var(--bg-soft);
}

.brinde-option-drawer img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.brinde-option-drawer .brinde-option-info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.brinde-option-drawer .brinde-option-name {
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brinde-option-drawer .brinde-option-brand {
  font-size: 0.65rem;
  color: var(--fg-muted);
}

.brinde-option-drawer .btn-sm {
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  flex-shrink: 0;
  white-space: nowrap;
}

/* RESPONSIVO PARA TELEMÓVEL */
@media (max-width: 480px) {
  .brinde-options-drawer {
    max-height: 150px;
  }
  .brinde-option-drawer {
    padding: 0.3rem 0.4rem;
    gap: 0.4rem;
  }
  .brinde-option-drawer img {
    width: 28px;
    height: 28px;
  }
  .brinde-option-drawer .brinde-option-name {
    font-size: 0.7rem;
  }
  .brinde-option-drawer .btn-sm {
    font-size: 0.6rem;
    padding: 0.1rem 0.4rem;
  }
}

/* ===== BRINDE NO DRAWER – CORREÇÃO DEFINITIVA ===== */
.cart-drawer {
  max-width: 100% !important;
  width: 100% !important;
  overflow-x: hidden !important;
}

.cart-drawer .cart-foot {
  overflow-x: hidden !important;
  padding: 1rem !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Força todos os filhos a respeitar a largura */
.cart-foot * {
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Container das opções – OBRIGATORIAMENTE COLUNA ÚNICA */
.cart-foot .brinde-options-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin-top: 0.5rem !important;
  padding: 0 !important;
}

/* Cada opção de brinde – largura total e sem quebras */
.cart-foot .brinde-option {
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  padding: 0.4rem 0.5rem !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  background: var(--bg) !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  flex-shrink: 0 !important;
}

/* Imagem do brinde */
.cart-foot .brinde-option img {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}

/* Texto do brinde – corta com "…" se for grande */
.cart-foot .brinde-option .brinde-option-info {
  flex: 1 !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.cart-foot .brinde-option .brinde-option-name {
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
}

.cart-foot .brinde-option .brinde-option-brand {
  font-size: 0.65rem !important;
  color: var(--fg-muted) !important;
}

/* Botão "Escolher" */
.cart-foot .brinde-option .btn-sm {
  padding: 0.15rem 0.5rem !important;
  font-size: 0.65rem !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* RESPONSIVO PARA TELEMÓVEL */
@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .cart-foot .brinde-options-list {
    max-height: 150px !important;
    overflow-y: auto !important;
  }
  
  .cart-foot .brinde-option {
    padding: 0.3rem 0.4rem !important;
    gap: 0.4rem !important;
  }
  
  .cart-foot .brinde-option img {
    width: 28px !important;
    height: 28px !important;
  }
  
  .cart-foot .brinde-option .brinde-option-name {
    font-size: 0.7rem !important;
  }
  
  .cart-foot .brinde-option .btn-sm {
    font-size: 0.6rem !important;
    padding: 0.1rem 0.4rem !important;
  }
}
.brinde-remove-x {
  background: none;
  border: none;
  color: var(--fg-muted);
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.brinde-remove-x:hover {
  background: var(--danger);
  color: #fff;
}
.copy-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.3rem;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  transition: background 0.15s, transform 0.1s;
}
.copy-btn img { height: 20px; width: 20px; object-fit: contain; }
.copy-btn:hover { background: var(--bg-soft); }
.copy-btn:active { transform: scale(0.9); }
.copy-btn.copied { background: var(--accent-dim); }

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--bg-soft);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.phone-prefix img { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; }

#submit-checkout {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 8px;
}
.inline-icon {
  height: 18px;
  width: 18px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 0.3rem;
  margin-top: -2px;
}

/* ===== Popup promocional ===== */
.promo-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.promo-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.promo-modal {
  background: #ffffff;
  border-radius: 14px;
  max-width: 420px;
  width: 100%;
  padding: 2.2rem 1.8rem 1.8rem;
  text-align: center;
  position: relative;
  transform: translateY(15px) scale(0.97);
  transition: transform 0.25s ease;
  box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}
.promo-overlay.show .promo-modal {
  transform: translateY(0) scale(1);
}
.promo-close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--fg-muted);
  cursor: pointer;
  line-height: 1;
}
.promo-close:hover { color: var(--fg); }
.promo-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.promo-title {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 0.8rem;
  color: var(--fg);
  text-transform: uppercase;
}
.promo-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.5;
  margin: 0 0 1.3rem;
}
.promo-text strong { color: var(--fg); }
.promo-timer-box {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: 0.8rem;
  margin-bottom: 1.3rem;
}
.promo-timer-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.2rem;
}
.promo-timer {
  display: block;
  font-family: var(--font-price);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}
.promo-cta {
  margin-bottom: 0.8rem;
}
.promo-fine-print {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin: 0;
}
