.slider-item {
    position: relative;
}

.slider-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.slider-item:hover .slider-overlay {
    opacity: 1;
}

.slider-overlay .btn {
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    width: 50px;       /* buat ukuran fix */
    height: 50px;      /* supaya bulat sempurna */
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-overlay .btn:hover {
    background: #ff5722;
}

.cart-link {
  position: relative;
}

.cart-link .badge {
  position: absolute;
  top: 0;
  right: -8px;
  background: red;
  color: #fff;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 50%;
}

.whatsapp-float {
      position: fixed;
      width: 60px;
      height: 60px;
      bottom: 20px;
      right: 20px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50%;
      text-align: center;
      font-size: 30px;
      box-shadow: 2px 2px 8px rgba(0,0,0,0.3);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease-in-out;
    }

.whatsapp-float:hover {
      transform: scale(1.1);
      background-color: #1ebe5b;
      color: #fff;
}

.modal {
    z-index: 99999 !important;
}

.modal-backdrop {
    z-index: 99998 !important;
}

