/* ============================================================
   home-slider.css — Slider stile Apple
   ============================================================ */

.no-ice-slider-wrap {
  width: 85%;
  margin: var(--space-12) auto;
  background: var(--color-bg-alt);
  border-radius: 24px;
  padding: var(--space-10) 0 var(--space-10);
  overflow: hidden;
}

.no-ice-slider-label {
  text-align: center;
  font-family: var(--font-heading);
  font-size: var(--size-xl);
  font-weight: var(--weight-black);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
}

.no-ice-slider-container {
  width: 100%;
}

.no-ice-slider {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding: 0 var(--space-6) var(--space-2);
}

.no-ice-slider::-webkit-scrollbar { display: none; }
.no-ice-slider:active { cursor: grabbing; }

.no-ice-slider__item {
  flex: 0 0 45%;
  scroll-snap-align: center;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.no-ice-slider__item:hover {
  transform: scale(1.01);
}

.no-ice-slider__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Dots — più spazio sopra */
.no-ice-slider-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.no-ice-slider-dots__dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  transition: background var(--transition-base), width var(--transition-base);
  cursor: pointer;
}

.no-ice-slider-dots__dot.active {
  background: var(--color-primary);
  width: 20px;
}

@media (max-width: 768px) {
  .no-ice-slider-wrap {
    width: 94%;
    border-radius: 16px;
  }
  .no-ice-slider__item { flex: 0 0 80%; }
}