/* ===== Banner Swiper ===== */
.banner {
  margin-top: 10px;
  position: relative;
  width: 100%;
  aspect-ratio: 2.56 / 1;
  max-height: 180px;
  overflow: hidden;
}

.banner__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.banner__slide {
  min-width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
}

.banner__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff;
  border-radius: var(--radius-lg);
  display: block;
}

/* ===== Swiper Dots ===== */
.banner__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner__dot {
  width: 8px;
  height: 4px;
  border-radius: var(--radius-pill);
  background-color: var(--text-secondary);
  margin-left: 6px;
  cursor: pointer;
  transition: width 0.3s ease, background-color 0.3s ease;
  border: none;
}

.banner__dot:first-child {
  margin-left: 0;
}

.banner__dot--active {
  width: 24px;
  background-color: var(--accent-gold-light);
  border-radius: 50px;
}
