.car-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 2px 7px rgba(0, 0, 0, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: #222;
}
.car-arrow .icon { width: 18px; height: 18px; }
.car-arrow--prev { left: 8px; }
.car-arrow--next { right: 8px; }

.banner { display: block; margin: 16px var(--gutter); border-radius: 14px; overflow: hidden; }
.banner img { width: 100%; height: auto; }
.banner--frete img { aspect-ratio: 738 / 250; object-fit: cover; }
.banner--chaira img { aspect-ratio: 724 / 250; object-fit: cover; }

.cat-banners { display: flex; flex-direction: column; gap: 12px; margin: 16px var(--gutter); }
.cat-banner { border-radius: 14px; overflow: hidden; display: block; }
.cat-banner img { width: 100%; aspect-ratio: 724 / 250; object-fit: cover; }

.product-card {
  position: relative;
  flex: 0 0 calc((100% - 10px) / 2);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
}

.pc-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: var(--discount);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
}

.pc-media {
  position: relative;
  height: 150px;
  margin: 6px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-media img { max-height: 100%; width: auto; object-fit: contain; }

.pc-seal {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.pc-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
  margin-bottom: 8px;
}

.pc-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 8px; }
.pc-stars { display: inline-flex; gap: 1px; color: var(--star); }
.pc-stars .icon { width: 15px; height: 15px; }
.pc-stars--empty { color: #d2d2d2; }
.pc-count { font-size: 12px; color: var(--muted); }

.pc-old { font-size: 13px; color: var(--muted); text-decoration: line-through; }

.pc-price { font-size: 22px; font-weight: 700; color: var(--green-price); line-height: 1.15; margin: 1px 0; }
.pc-price .cur { font-size: .64em; }

.pc-cash { font-size: 12px; color: var(--muted); }
.pc-inst { font-size: 12px; color: var(--muted); margin-bottom: 10px; }

.pc-ship {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.pc-ship .icon { width: 14px; height: 14px; }
.pc-ship .pc-ship-info { color: #6b5a00; }

.pc-btn {
  margin-top: auto;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  border-radius: 9px;
}

.search-suggest { margin-top: 12px; display: flex; flex-direction: column; }
.search-suggest[hidden] { display: none; }
.sg-item { display: flex; align-items: center; gap: 12px; padding: 10px 6px; border-radius: 10px; color: var(--ink); }
.sg-item:hover { background: #f5f5f5; }
.sg-thumb { width: 44px; height: 44px; flex: none; object-fit: cover; border-radius: 8px; background: #f0f0f0; }
.sg-name { flex: 1; font-size: 14px; line-height: 1.3; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.sg-price { flex: none; font-size: 14px; font-weight: 700; color: var(--green-price); white-space: nowrap; }
.sg-empty { padding: 14px 6px; color: var(--muted); font-size: 14px; text-align: center; }
.sg-all { display: block; text-align: center; padding: 12px 6px 4px; color: var(--green); font-weight: 700; font-size: 14px; }

.minicart {
  position: fixed;
  top: 10px;
  left: 8px;
  right: 8px;
  z-index: 95;
  max-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.minicart.open { opacity: 1; visibility: visible; transform: none; }
.mc-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--line); }
.mc-title { font-size: 19px; font-weight: 800; color: #111; }
.mc-close { color: #999; }
.mc-close .icon { width: 22px; height: 22px; }
.mc-body { overflow-y: auto; padding: 16px 18px 22px; }

.mc-item { display: grid; grid-template-columns: 64px 1fr auto auto; gap: 10px 12px; align-items: start; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.mc-thumb { position: relative; width: 64px; height: 64px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 8px; padding: 5px; }
.mc-thumb img { max-width: 100%; max-height: 100%; object-fit: contain; }
.mc-qty { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: #eee; color: #555; font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 1px 4px rgba(0, 0, 0, .18); }
.mc-item-title { font-size: 14px; line-height: 1.35; color: #333; }
.mc-item-price { font-size: 14px; font-weight: 700; color: #111; white-space: nowrap; }
.mc-del { color: #999; align-self: start; }
.mc-del .icon { width: 20px; height: 20px; }

.mc-empty { text-align: center; color: var(--muted); font-size: 15px; padding: 24px 0; }

.mc-subtotal { text-align: right; font-size: 18px; color: #333; padding: 16px 0; }
.mc-subtotal strong { font-weight: 800; color: #111; }

.mc-actions { display: flex; flex-direction: column; gap: 12px; }
.mc-keep { text-align: center; background: #b6b6b6; color: #fff; font-size: 15px; font-weight: 700; padding: 15px; border-radius: 999px; }
.mc-go { text-align: center; background: var(--green); color: #fff; font-size: 16px; font-weight: 700; padding: 15px; border-radius: 999px; }

.mc-recs { margin-top: 24px; }
.mc-recs .section-title { font-size: 18px; margin-left: 0; margin-right: 0; }
.mc-recs .shelf-track { padding-left: 0; padding-right: 0; }
.mc-recs .pc-btn { background: #fff; color: #333; border: 1px solid #cfcfcf; font-weight: 600; }
