/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #fff;
    margin: 0% auto;
    padding: 20px;
    border: 1px solid #888;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
	color: black;
	background-color: none;
}

/* Gallery Items */

.gallery-item.hide {
    display: none;
}

.product-details {
    padding: 10px 0;
}

.product-details p {
    margin: 4px 0;
}

.product-details p.price {
    color: #333;
}

.buy-now-btn {
    padding: 6px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

/* Success Popup */
#successPopup {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 5px;
    z-index: 10000;
}
