body {
  font-family: 'Questrial', ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  background: #000;
  display: flex;
  justify-content: center;
  padding: 0;
  position: relative;
}
/* Frame slider berukuran 900px */
swiper-container {
  width: 900px;
  height: auto;
  position: relative;
}
swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* Produk dengan lebar 280px agar 3 produk + 2 gap 30px = 900px */
.product {
color: white;
width: 280px;
box-sizing: border-box;
padding: 10px 10px 20px;
background: #1e232a;
border-radius: 20px;
transition: transform 0.5s ease;
}
.product:hover {
    transform: translateY(-10px);
}

.product-img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.product h3 {
  margin: 15px 10px 5px;
  font-size: 16px;
}
.description {
  margin: 15px 10px 5px;
  font-size: 13px;
  color: #fff;
}
.product-actions {
  margin: 15px 10px 5px;

}
.price, .add-to-cart {
    border-radius: 15px;
  padding: 8px 12px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  font-size: 13px;
}
.price {
  background-color: #f0f0f0;
}
.add-to-cart {
    background: linear-gradient(45deg, #0c8b8b, #0b6e9c);
    color: #fff;
  }
/* Tombol navigasi arrow */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  color: #000000;
  font-size: 16px;
  padding: 5px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  width:40px;
  height:40px;
}
#arrowLeft {
  left: 24%;
}
#arrowRight {
  right: 24%;
}
