/* ==========================================================================
   8. Promo Modal Styles
   ========================================================================== */
.promo-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000; /* Higher than navbar */
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-modal-backdrop.show {
    display: flex;
    opacity: 1;
}

.promo-modal-content {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(0.7) translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy effect */
}

.promo-modal-backdrop.show .promo-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.promo-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    padding: 2rem 1.5rem 1rem;
    text-align: center;
    position: relative;
}

.promo-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

.promo-title {
    font-family: 'Playfair Display', serif;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.promo-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 300;
}

.promo-body {
    padding: 2rem;
    text-align: center;
}

.discount-code-box {
    background: #f8f9fa;
    border: 2px dashed var(--gold);
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 10px;
    position: relative;
}

.discount-code {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--dark);
    letter-spacing: 2px;
}

.copy-btn {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--gold);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

.promo-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.promo-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

/* Confetti effect styling would go here if using canvas/js */

/* Mobile Responsive */
@media (max-width: 576px) {
    .promo-title { font-size: 2rem; }
    .promo-modal-content { width: 95%; }
    .promo-body { padding: 1.5rem; }
    .discount-code { font-size: 1.5rem; }
}

