.add-to-cart-custom {
    background-color: black;
    color: white !important;
    padding: 9px 60px;
    border: none;
    cursor: pointer;
    font-size: 17px;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 10px;
}

.add-to-cart-custom:hover {
    background-color: #cb8161;
    border: 2px solid white;
    color: white;
}

.cart-popup {
    display: none;
    /* Other styles for the dropdown */
}

.cart-popup.show {
    display: block; /* Show dropdown when cart is updated */
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    width: 300px;
    z-index: 1000;
    /* Add other necessary styles */
}


.sub-custom, .add-custom {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background-color: #f8f8f8;
    cursor: pointer;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 0 5px;
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    padding: 10px;
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 10;
    margin-bottom: 60px;
  }

  .slide:hover .overlay {
    opacity: 1;
  }

