    body {
      background-color: #f8f9fa;
      font-family: 'Poppins', sans-serif;
    }
	
	.checkout-card {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      padding: 20px;
    }
    .navbar-brand {
      font-weight: bold;
      color: #000000 !important;
    }
    .cart-icon {
      position: relative;
      font-size: 24px;
      cursor: pointer;
      color: #0d6efd;
    }
    .cart-badge {
      position: absolute;
      top: -8px;
      right: -10px;
      background-color: red;
      color: white;
      border-radius: 50%;
      font-size: 12px;
      width: 18px;
      height: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .dropdown-cart {
      min-width: 280px;
      max-height: 420px;
	  padding-bottom: 85px !important;
    }
    .cart-item-img {
      width: 40px;
      height: 40px;
      border-radius: 6px;
      object-fit: cover;
      margin-right: 8px;
    }
	.thumbnail-img {
      width: 80px;
      height: 80px;
      border-radius: 8px;
      object-fit: cover;
      cursor: pointer;
      border: 2px solid transparent;
      transition: 0.3s;
    }
    .thumbnail-img:hover, .thumbnail-img.active {
      border-color: #0d6efd;
    }
    .feature-icon {
      font-size: 70px;
      color: #0d6efd;
      margin-bottom: 10px;
    }
    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 10px;
    }
	 
    .footer {
      background-color: #212529;
      color: white;
      padding: 25px 0;
      text-align: center;
    }
    .whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 25px;
      right: 25px;
      background-color: #25d366;
      color: white;
      border-radius: 50%;
      text-align: center;
      font-size: 28px;
      box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pulse 1.8s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }
    .toast-container {
      position: fixed;
      top: 80px;
      right: 20px;
      z-index: 2000;
    }
	
	  .banner-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .banner-container {
    width: 100%;
    max-width: 100%;
    transition: all 0.4s ease;
  }
  @media (min-width: 992px) { /* Desktop */
    .banner-container {
      width: 70%;
      border-radius: 12px;
      overflow: hidden;
    }
  }
  
  a {
  text-decoration: none;
}

 /* Produk Lainnya Slider */
    .related-section {
      position: relative;
      overflow: hidden;
    }
    .related-wrapper {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-behavior: smooth;
	  -ms-overflow-style: none;
    }
	.related-wrapper::-webkit-scrollbar {
		display: none;
	}
    .related-product {
      min-width: 220px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      text-align: center;
      padding: 10px;
      transition: transform 0.3s;
    }
    .related-product img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
      margin-bottom: 8px;
    }
    .related-product:hover {
      transform: translateY(-5px);
    }
    .arrow-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0,0,0,0.5);
      color: white;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
    }
    .arrow-btn:hover {
      background-color: rgba(0,0,0,0.7);
    }
    .arrow-left { left: 10px; }
    .arrow-right { right: 10px; }

/* Sembunyikan input radio bawaan */
input[type="radio"] {
  display: none;
}
.form-rdi {
  position: relative;
  color: #000000;
  background-color: #f0f0f0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  border: 1px solid #000000;
  padding: 5px 10px;
  border-radius: 0.5em;
  margin-bottom: 5px;
  font-size: 14px;
}

input[type="radio"]:checked + .form-rdi {
  background-color: #ffffff;
  color: #0d6efd;
  border: 2px solid #0d6efd;
  padding: 4px 9px;
  font-size: 12px;
  font-weight: bold;
}

.fixed-li {
  position: absolute;
  bottom: 5px; /* Menempel di bagian bawah dropdown */
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 5px;
}

#toastOverlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
  }
#customToast {
    transition: all 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
  }
  
  .galeri-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .galeri-track {
    display: flex;
    transition: transform 0.6s ease;
  }

  .galeri-item {
    flex: 0 0 calc(25% - 10px); /* 4 gambar di desktop */
    margin-right: 10px;
  }

  .galeri-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }

  @media (max-width: 767px) {
    .galeri-item {
      flex: 0 0 calc(50% - 10px); /* 2 gambar di HP */
    }
  }

  /* Tombol navigasi kiri kanan */
  .galeri-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    padding: 8px 12px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
  }

  .galeri-btn:hover {
    background: #007bff;
    color: white;
  }

  .galeri-prev { left: 5px; }
  .galeri-next { right: 5px; }

.tracking-card { max-width: 720px; margin: 48px auto; }
    .timeline { list-style: none; padding-left: 0; }
    .timeline li { padding: 12px 16px; border-left: 3px solid #ddd; margin-left: 12px; position: relative; }
    .timeline li::before { content: '';
      width: 10px; height: 10px; background:#0d6efd; border-radius:50%; position:absolute; left:-21px; top:16px; }