/* ── EQUIPMENT CAROUSEL ── */
.equip-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
  background: transparent;
}
.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  flex: 0 0 calc(25% - 9px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.2s;
  z-index: 10;
}
.carousel-btn:hover { background: rgba(0,0,0,0.8); }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  margin-bottom: 1.5rem;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 2px solid #aaa;
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-dot.active {
  background: #444;
  border-color: #444;
}
@media (max-width: 700px) {
  .carousel-slide { flex: 0 0 calc(50% - 6px); }
  .carousel-btn { width: 34px; height: 34px; font-size: 1.3rem; }
}
@media (max-width: 400px) {
  .carousel-slide { flex: 0 0 100%; }
  .carousel-btn { width: 30px; height: 30px; font-size: 1.2rem; }
}
