#joyfulcook-popup {
    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;
}

#joyfulcook-popup-content {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    position: relative;
    font-family: 'Arial', sans-serif;
    animation: fadeInScale 0.4s ease;
}

@keyframes fadeInScale {
    from {opacity:0; transform: scale(0.85);}
    to {opacity:1; transform: scale(1);}
}

#joyfulcook-popup h2 {
    margin-top: 0;
    color: #06311a;
    font-size: 24px;
}

#joyfulcook-popup p {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

#joyfulcook-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    cursor: pointer;
    color: #e41d31;
}

#joyfulcook-popup-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

#joyfulcook-popup-buttons button {
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    flex: 1;
    font-weight: bold;
    transition: 0.2s ease;
    font-size: 15px;
}

#joyfulcook-go-to-nigeria {
    background: #06311a;
    color: #fff;
}

#joyfulcook-go-to-nigeria:hover {
    background: #06311a;
}

#joyfulcook-stay-here {
    background: #dc3545;
    color: #fff;
}

#joyfulcook-stay-here:hover {
    background: #c82333;
}
