/* ============================================================
   CRAVE — Carousel styles
   ============================================================ */
.crave-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1a1a;
  border-radius: inherit;
}
.crave-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.crave-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.crave-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.crave-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(38, 70, 83, 0.75);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s, background .2s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 4px 0;
  backdrop-filter: blur(6px);
}
.crave-carousel:hover .crave-carousel-arrow {
  opacity: 1;
}
.crave-carousel-arrow:hover {
  background: var(--orange, #FF6B35);
}
.crave-carousel-prev { left: 8px; }
.crave-carousel-next { right: 8px; }
.crave-carousel-indicator {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(38, 70, 83, 0.75);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  backdrop-filter: blur(6px);
  z-index: 2;
  font-variant-numeric: tabular-nums;
}
