body {
  background: rgb(0, 0, 0);
}

main {
  width: 70%;
  margin: 0 auto;
}

.linkBreadcrumb {
  display: flex;
  background: rgb(0, 0, 0);
  color: white;
  padding: 30px 0px;
}

.linkHome a {
  font-size: 1rem;
  text-decoration: none;
  color: white;
}

.linkHome .active {
  color: #ff0000;
}

.ContentWrap {
  background: pink;
}

/* main */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.item {
  padding: 70px 0px;
  text-align: center;
  line-height: 25px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
}

/* mobile */
@media (max-width: 720px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* content */
.grid-subwoofer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* mobile 2 kolom */
  gap: 24px;
  padding: 24px;
}

.grid-subwoofer .card {
  background: #b30000;
  overflow: hidden;
}

/* desktop */
@media (min-width: 1024px) {
  .grid-subwoofer {
    grid-template-columns: repeat(4, 1fr);
    /* 4 kolom */
  }
}

/* Style untuk link */
.link-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}
.mbGrid {
  margin-bottom: 20px;
}
.popup-link {
  background-color: #000000;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.popup-link:hover {
  background-color: #ff0000;
  border-radius: 12px;
}
/* Style untuk popup overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Style untuk konten popup */
.popup-content {
  background-color: rgb(0, 0, 0);
  padding: 10px;
  border-radius: 15px;
  max-width: 900px;
  width: 95%;
  position: relative;
  border: 1px solid #333;
  max-height: 90vh;
  overflow-y: auto;
}

/* Style untuk slider */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  display: none; /* Default sembunyikan semua slider */
}

.slider-container.active {
  display: block; /* Hanya tampilkan slider dengan class active */
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
  margin-bottom: 10px;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Style untuk tombol navigasi slider */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 10;
}

.slider-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.linkSliderPreview {
  padding: 10px 0;
  /* background: #000; */
  text-align: center;
}
.linkSliderPreview a {
  padding: 8px 5px;
  margin: 10px 0;
  background: #ff0000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* Style untuk judul slider */
.slider-title {
  text-align: center;
  margin-bottom: 15px;
  font-family: Arial, sans-serif;
  color: #333;
}

/* Style untuk tombol close */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  z-index: 20;
}

.close-btn:hover {
  color: #333;
}

/* Style untuk indikator slide */
.slide-indicators {
  display: none;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.indicator.active {
  background-color: #4caf50;
}
