/* Popup Container */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Popup Content */
.popup-content {
    background: #1a1a1a; /* Dark background matching your theme */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    border: 2px solid #ffd700; /* Gold border matching your theme */
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    position: relative;
}

/* Heading */
.popup-content h2 {
    color: #ffd700; /* Gold text matching your theme */
    font-family: 'Cinzel', serif; /* Matches your heading font */
    margin-bottom: 20px;
    font-size: 24px;
}

/* Menu Buttons */
.popup-content a, .popup-content button {
    display: block;
    background: #ffd700; /* Gold background matching your theme */
    color: #2c003e; /* Text color matching your theme */
    padding: 15px;
    margin: 10px 0;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.popup-content a:hover, .popup-content button:hover {
    background: #d4af37; /* Slightly darker gold for hover */
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #ffd700; /* Gold color matching your theme */
    font-size: 24px;
    cursor: pointer;
}

/* Iframe Styling */
.shop-iframe {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1001;
}