/* ════════════════════════════════════════════════════
   LOJA HERO BANNER
   Fundo escuro com visual language do tema
════════════════════════════════════════════════════ */
.loja-hero-banner {
  position: relative;
  background: #070A10;
  overflow: hidden;
  padding-top: 120px; /* compensa header fixo */
  color: #fff;
}

/* Grid de fundo */
.lhb-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, black 60%, transparent 100%);
  pointer-events: none;
}

/* Glows */
.lhb-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.lhb-glow--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,87,255,.13) 0%, transparent 70%);
  top: -100px; left: 5%;
  transform: translate(0, 0);
}
.lhb-glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,200,255,.07) 0%, transparent 70%);
  top: 40%; right: 10%;
}

/* Scan line horizontal animada */
.lhb-scanline {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0,87,255,.6) 30%, rgba(0,200,255,.8) 50%, rgba(0,87,255,.6) 70%, transparent 100%);
  top: 0;
  animation: lhbScanMove 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lhbScanMove {
  0%   { top: 120px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

/* Overlay gradient inferior — transição para branco */
.lhb-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(7,10,16,.0));
  pointer-events: none;
}

/* Layout interno */
.lhb-inner {
  position: relative;
  z-index: 2;
  max-width: none;
  padding: 60px 6vw 0;
  display: grid;
  grid-template-columns: 1fr minmax(0, 420px) 300px;
  gap: 40px 32px;
  align-items: start;
}

/* ── Tag / badge superior ── */
.lhb-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,87,255,.12);
  border: 1px solid rgba(0,87,255,.35);
  color: #00C8FF;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.lhb-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #00C8FF;
  animation: lhbDotPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes lhbDotPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .4; transform: scale(.7); }
}

/* ── Título principal ── */
.lhb-title {
  font-family: var(--font-h, 'Barlow Condensed', sans-serif);
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.lhb-line-white { color: #fff; display: block; }
.lhb-line-blue {
  display: block;
  background: linear-gradient(90deg, #0057FF 0%, #00C8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(0,87,255,.55));
}

/* ── Subtítulo ── */
.lhb-sub {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}

/* ── Botões CTA ── */
.lhb-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.lhb-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #0057FF;
  color: #fff;
  font-family: var(--font-b, 'Barlow', sans-serif);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform .2s, box-shadow .3s;
  box-shadow: 0 4px 24px rgba(0,87,255,.4);
}
.lhb-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}
.lhb-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,87,255,.6); }
.lhb-btn-primary:hover::before { transform: translateX(100%); }
.lhb-btn-primary svg { width: 17px; height: 17px; transition: transform .25s; }
.lhb-btn-primary:hover svg { transform: translateX(4px); }

.lhb-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: transparent;
  color: #fff;
  font-family: var(--font-b, 'Barlow', sans-serif);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid rgba(37,211,102,.5);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .2s, box-shadow .3s;
}
.lhb-btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #25D366;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
  z-index: -1;
}
.lhb-btn-secondary:hover { border-color: #25D366; box-shadow: 0 8px 30px rgba(37,211,102,.3); transform: translateY(-2px); }
.lhb-btn-secondary:hover::before { transform: scaleX(1); }

/* ── Features bar compacta ── */
.lhb-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}
.lhb-feat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.lhb-feat svg {
  width: 17px; height: 17px;
  stroke: #0057FF;
  flex-shrink: 0;
  margin-top: 3px;
}
.lhb-feat span {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  line-height: 1.4;
}
.lhb-feat strong {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-h, 'Barlow Condensed', sans-serif);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
}

/* ── Coluna central: imagem ── */
.lhb-center {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 20px;
}
.lhb-img-wrap {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Anéis decorativos */
.lhb-img-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,87,255,.12);
  pointer-events: none;
}
.lhb-img-ring--1 { width: 320px; height: 320px; animation: lhbRingSpin 18s linear infinite; border-color: rgba(0,87,255,.1); }
.lhb-img-ring--2 { width: 250px; height: 250px; animation: lhbRingSpin 12s linear infinite reverse; border-color: rgba(0,200,255,.08); }
.lhb-img-ring--3 { width: 180px; height: 180px; animation: lhbRingSpin 8s linear infinite; border-color: rgba(0,87,255,.07); }
@keyframes lhbRingSpin { to { transform: rotate(360deg); } }

/* Glow central */
.lhb-img-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0,87,255,.22) 0%, transparent 60%);
  border-radius: 50%;
  animation: lhbGlowPulse 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes lhbGlowPulse {
  0%,100% { opacity: .55; transform: scale(.88); }
  50%     { opacity: 1;   transform: scale(1.1); }
}

.lhb-img-plate {
  position: relative;
  z-index: 1;
  width: 260px; height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lhb-img-plate img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0,87,255,.45)) drop-shadow(0 4px 12px rgba(0,0,0,.6));
  animation: lhbImgFloat 5s ease-in-out infinite;
}
@keyframes lhbImgFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}

/* Badges flutuantes */
.lhb-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(13,17,32,.9);
  border: 1px solid rgba(0,87,255,.3);
  border-radius: 100px;
  font-family: var(--font-b, 'Barlow', sans-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(12px);
  z-index: 2;
  white-space: nowrap;
}
.lhb-float-badge svg { stroke: #25D366; }
.lhb-float-badge--top  { top: 20px; right: -20px; }
.lhb-float-badge--bottom { bottom: 30px; left: -20px; }

/* ── Coluna direita: proof ── */
.lhb-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
}

.lhb-proof-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px 20px;
  backdrop-filter: blur(12px);
}
.lhb-proof-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.lhb-proof-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(0,87,255,.1);
  border: 1px solid rgba(0,87,255,.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lhb-proof-icon svg { width: 36px; height: 36px; }
.lhb-proof-value {
  font-family: var(--font-h, 'Barlow Condensed', sans-serif);
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.lhb-proof-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.4;
  margin-top: 3px;
}
.lhb-proof-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
.lhb-proof-stars svg {
  width: 17px; height: 17px;
  color: #F59E0B;
}
.lhb-proof-text {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin-bottom: 16px;
}
.lhb-proof-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin-bottom: 16px;
}
.lhb-proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lhb-proof-stat strong {
  display: block;
  font-family: var(--font-h, 'Barlow Condensed', sans-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: #0057FF;
  line-height: 1;
}
.lhb-proof-stat span {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.45);
  line-height: 1.4;
  margin-top: 3px;
}

/* Card WhatsApp */
.lhb-wa-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(37,211,102,.06);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: background .2s, border-color .2s, transform .2s;
}
.lhb-wa-card:hover {
  background: rgba(37,211,102,.12);
  border-color: rgba(37,211,102,.45);
  transform: translateY(-2px);
}
.lhb-wa-icon {
  width: 42px; height: 42px;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #25D366;
}
.lhb-wa-card strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-h, 'Barlow Condensed', sans-serif);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.lhb-wa-card span {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}

/* ── Stats bar inferior (mesmo estilo do hero da homepage) ── */
.lhb-bottom-bar {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.07);
  position: relative;
  z-index: 2;
}
.lhb-bottom-inner {
  padding: 0 6vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.lhb-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
  cursor: default;
}
.lhb-stat:last-child { border-right: none; }
.lhb-stat:hover { background: rgba(0,87,255,.07); }
.lhb-stat svg {
  width: 40px; height: 40px;
  background: rgba(0,87,255,.1);
  border: 1px solid rgba(0,87,255,.22);
  border-radius: 10px;
  padding: 9px;
  stroke: #0057FF;
  flex-shrink: 0;
  transition: background .25s, transform .25s;
}
.lhb-stat:hover svg { background: rgba(0,87,255,.2); transform: scale(1.08) rotate(-4deg); }
.lhb-stat div strong {
  display: block;
  font-family: var(--font-h, 'Barlow Condensed', sans-serif);
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}
.lhb-stat div span {
  font-size: .73rem;
  color: rgba(255,255,255,.5);
  white-space: nowrap;
}
/* Remove slots vazios do grid */
ul.products > li:empty,
ul.products > li.hidden {
  display: none !important;
}


/* Remove pseudo-elementos que quebram o grid */
ul.products::before,
ul.products::after {
  display: none !important;
  content: none !important;
}
/* ════════════════════════════════════════════════════
   QUICK FILTER — faixa entre banner e grid
════════════════════════════════════════════════════ */
.loja-quick-filter {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    position: sticky;
    top: 72px;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .06);
    margin-top: 120px;
}
.lqf-inner {
  padding: 0 6vw;
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  overflow-x: auto;
  scrollbar-width: none;
}
.lqf-inner::-webkit-scrollbar { display: none; }

.lqf-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-b, 'Barlow', sans-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9CA3AF;
  white-space: nowrap;
  flex-shrink: 0;
}
.lqf-label svg { stroke: #9CA3AF; }

.lqf-chips {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 10px 0;
}
.lqf-chips::-webkit-scrollbar { display: none; }

.lqf-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 100px;
  font-family: var(--font-b, 'Barlow', sans-serif);
  font-size: .77rem;
  font-weight: 600;
  color: #4B5563;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color .18s, color .18s, background .18s, box-shadow .18s;
}
.lqf-chip:hover {
  border-color: #0057FF;
  color: #0057FF;
  background: rgba(0,87,255,.04);
}
.lqf-chip.active {
  border-color: #0057FF;
  background: #0057FF;
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,87,255,.25);
}
.lqf-chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: rgba(0,0,0,.08);
  border-radius: 100px;
  font-size: .65rem;
  font-weight: 700;
  line-height: 1;
}
.lqf-chip.active .lqf-chip-count {
  background: rgba(255,255,255,.25);
}

.lqf-clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1.5px solid rgba(239,68,68,.3);
  border-radius: 100px;
  font-family: var(--font-b, 'Barlow', sans-serif);
  font-size: .73rem;
  font-weight: 600;
  color: #EF4444;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .18s;
  margin-left: auto;
}
.lqf-clear:hover {
  background: rgba(239,68,68,.06);
  border-color: #EF4444;
}

/* ════════════════════════════════════════════════════
   WooCommerce grid override (mantido igual)
════════════════════════════════════════════════════ */
ul.products.columns-1,ul.products.columns-2,ul.products.columns-3,
ul.products.columns-4,ul.products.columns-5 {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
ul.products > li.product { margin:0!important;padding:0!important;float:none!important;width:auto!important; }

/* ── Card imgs ── */
.card-main-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain; padding: 8px;
  transition: opacity .3s ease, transform .4s ease;
  opacity: 0; cursor: pointer;
}
.card-main-img.active { opacity: 1; }
.prod-card-real:hover .card-main-img.active { transform: scale(1.06); }

.card-thumbs {
  display: flex; gap: 6px;
  padding: 8px 12px 0;
  overflow-x: auto; scrollbar-width: none;
}
.card-thumbs::-webkit-scrollbar { display: none; }
.card-thumb {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: 6px; background: #F9FAFB;
  cursor: pointer; padding: 3px; flex-shrink: 0;
  transition: border-color .2s, transform .2s; overflow: hidden;
}
.card-thumb img { width:100%;height:100%;object-fit:contain;display:block; }
.card-thumb.active { border-color: #0057ff; transform: scale(1.07); }
.card-thumb:hover:not(.active) { border-color: #93b4ff; }

/* ── Toolbar & ordering ── */
.woocommerce-ordering select {
  background:#fff; border:1px solid rgba(0,0,0,.15);
  border-radius:6px; color:#0D1120;
  font-family:var(--font-b,'Barlow',sans-serif);
  font-size:.8rem; padding:7px 12px; cursor:pointer;
  outline:none; transition:border-color .2s;
}
.woocommerce-ordering select:focus { border-color:#0057ff; }
.woocommerce-ordering { margin:0; }

/* ── Paginação ── */
.woocommerce-pagination ul { display:flex;gap:6px;list-style:none;padding:0;justify-content:center;flex-wrap:wrap; }
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  display:flex;align-items:center;justify-content:center;
  width:36px;height:36px;border:1px solid rgba(0,0,0,.12);
  border-radius:6px;font-size:.8rem;font-weight:600;
  color:#6B7280;text-decoration:none;
  transition:border-color .2s,color .2s,background .2s;
}
.woocommerce-pagination ul li a:hover { border-color:#0057ff;color:#0057ff; }
.woocommerce-pagination ul li span.current { background:#0057ff;border-color:#0057ff;color:#fff; }

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .lhb-inner {
    grid-template-columns: 1fr 320px;
    gap: 32px;
  }
  .lhb-center { display: none; }
  .lhb-right { grid-column: 2; grid-row: 1; }
  ul.products.columns-1,ul.products.columns-2,ul.products.columns-3,
  ul.products.columns-4,ul.products.columns-5 { grid-template-columns:repeat(2,1fr)!important; }
}
@media (max-width: 900px) {
  .lhb-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 0;
  }
  .lhb-right { grid-column: 1; }
  .lhb-bottom-inner { grid-template-columns: repeat(2, 1fr); }
  .lhb-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .lhb-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .lhb-stat:nth-last-child(-n+2) { border-bottom: none; }
  .loja-quick-filter { top: 0; position: static; }
  .produtos-grid-inner { grid-template-columns: 1fr !important; }
  .filtros-sidebar { position: static !important; }
  ul.products.columns-1,ul.products.columns-2,ul.products.columns-3,
  ul.products.columns-4,ul.products.columns-5 { grid-template-columns:repeat(2,1fr)!important; }
}
@media (max-width: 640px) {
  .lhb-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .lhb-float-badge { display: none; }
  .lhb-actions { flex-direction: column; align-items: flex-start; }
  .lhb-bottom-inner { grid-template-columns: 1fr 1fr; }
  .lqf-label { display: none; }
}
@media (max-width: 560px) {
  ul.products.columns-1,ul.products.columns-2,ul.products.columns-3,
  ul.products.columns-4,ul.products.columns-5 { grid-template-columns:1fr!important; }
  .lhb-bottom-inner { grid-template-columns: 1fr; }
}

/* Scroll margin para anchor */
#loja-section { scroll-margin-top: 72px; }

/* ════════════════════════════════════════════════════
   CARROSSEL — CORREÇÕES DEFINITIVAS
   Sobrescreve qualquer CSS externo/JS
════════════════════════════════════════════════════ */

/* ── Oculta dots SEMPRE, mesmo se JS adicionar display:flex ── */
.carousel-dots,
.carousel-dot {
  display: none !important;
  visibility: hidden !important;
}

/* ── Setas: visíveis, com ícone sempre colorido ── */
.prod-card-img-wrap {
  overflow: hidden !important;
}
.prod-carousel {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2 !important;
}
.carousel-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 20 !important;
  width: 30px !important;
  height: 30px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.15) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease, box-shadow 0.2s ease !important;
  padding: 0 !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18) !important;
  color: #111 !important;        /* garante que currentColor tenha valor */
}
.carousel-btn svg {
  width: 14px !important;
  height: 14px !important;
  stroke: #111 !important;       /* força cor do ícone */
  fill: none !important;
  display: block !important;
}
.carousel-prev { left: 6px !important; }
.carousel-next { right: 6px !important; }

/* Aparece ao passar o mouse no card */
.prod-card-real:hover .carousel-btn,
.prod-card:hover .carousel-btn {
  opacity: 1 !important;
}
.carousel-btn:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
}

/* ── Badge sempre por cima do carousel ── */
.card-badge {
  position: relative;    /* ativa z-index no elemento */
  z-index: 3 !important; /* 1 acima do .prod-carousel (z-index: 2) */
}