
@media (min-width:769px) and (max-width:1067px) {
    #arrowLeft {
        left: 2%;
      }
      #arrowRight {
        right: 2%;
      }
}
@media (min-width:1068px) and (max-width:1669px) {
    #arrowLeft {
        left: 20%;
      }
      #arrowRight {
        right: 20%;
      }
}

@media (max-width:767px) {
    swiper-container {
        width:100%;
        max-width: ;
        height: auto;
        position: relative;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; /* agar scroll smooth di perangkat iOS */
    }

    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;
      white-space: wrap;
      
      }
      
      .product-img {
        width: 100%;
        max-width:280px;
        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: 1%;
      }
      #arrowRight {
        right: 1%;
      }
}