/* CSS */

.instore-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.instore-popup {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.instore-popup h3 {
    margin-bottom: 10px;
    color: #333;
}

.instore-popup p {
    margin-bottom: 20px;
    color: #555;
}

.instore-popup .close-popup {
    background: #66b1b1;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.instore-popup .close-popup:hover {
    background: #549696;
}

