/* swiper sabores */

/* Swiper base */
.qa-swiper{ overflow: visible; }
.qa-swiper .swiper-slide{ width: auto; }

/* Chip com glassmorphism */
.qa-item{
  --chip-bg: rgba(255,255,255,0.06);
  --chip-bd: rgba(255,255,255,0.14);
  --chip-tx: var(--text, #eee3be);
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 16px; border-radius:999px; text-decoration:none;
  background: var(--chip-bg);
  color: var(--chip-tx);
  border:1px solid var(--chip-bd);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 6px 20px rgba(0,0,0,0.25);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap; line-height:1;
}
.qa-item:hover{ transform: translateY(-1px); }
.qa-item:focus-visible{ outline:2px solid rgba(255,255,255,.25); outline-offset:2px; }

.qa-ico{ width:18px; height:18px; flex:0 0 18px; display:block; }
.qa-ico path{ fill: currentColor; }

/* Ativo: vidro tingido na cor do accent */
.qa-item.is-active{
  /* tenta usar accent-rgb; se não existir, cai no accent sólido com opacidade */
  background: rgba(var(--accent-rgb, 209,24,67), .18);
  border-color: rgba(var(--accent-rgb, 209,24,67), .45);
  color: var(--accent, #d11843);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 8px 20px 0px rgba(var(--accent-rgb, 209, 24, 67), .25);
  font-weight:600;
}

/* Container / espaçamentos */
.collection-section{padding: 40px 10px 0px 0px;}
.container{ overflow: hidden; } /* o scroll horizontal fica no swiper */

/* Animação suave nos chips de categorias */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.qa-swiper .swiper-slide {
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  animation: fadeInUp 0.5s ease forwards;
}

/* Delay progressivo */
.qa-swiper .swiper-slide:nth-child(1) { animation-delay: 0.1s; }
.qa-swiper .swiper-slide:nth-child(2) { animation-delay: 0.2s; }
.qa-swiper .swiper-slide:nth-child(3) { animation-delay: 0.3s; }
.qa-swiper .swiper-slide:nth-child(4) { animation-delay: 0.4s; }
.qa-swiper .swiper-slide:nth-child(5) { animation-delay: 0.5s; }
.qa-swiper .swiper-slide:nth-child(6) { animation-delay: 0.6s; }

