/* Popup container */
.popup-container {
    position: fixed;
    bottom: -300px; /* Initially hidden */
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    z-index: 9999;
    transition: bottom 0.5s ease;
    font-family: Arial, sans-serif;
}

/* Popup Content */
.popup-content {
    padding: 10px;
    text-align: center;
}

    .popup-content h4 {
        margin: 0;
        color: #333;
    }

.popup-item img {
    width: 100%;
    height: auto;
    margin-top: 5px;
    border-radius: 5px;
}

.popup-item p {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}

.popup-btn {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    padding: 8px 12px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: bold;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #777;
    transition: color 0.3s;
}

    .popup-close:hover {
        color: #333;
    }