/* Promo Modal Styles */
.promo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.promo-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.promo-modal {
    background: linear-gradient(145deg, #1a1a1a, #111);
    border-radius: 24px;
    max-width: 420px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.promo-modal-overlay.active .promo-modal {
    transform: scale(1) translateY(0);
}

/* Decorative top gradient line */
.promo-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #66bb6a, #4CAF50);
}

.promo-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.promo-modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.promo-modal-close svg {
    width: 14px;
    height: 14px;
    stroke: #888;
    stroke-width: 2;
}

.promo-modal-content {
    padding: 40px 35px;
    text-align: center;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(255, 152, 0, 0.1));
    border: 1px solid rgba(255, 152, 0, 0.3);
    color: #ff9800;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.promo-badge .fire {
    font-size: 1.1em;
}

.promo-modal h2 {
    font-size: 2em;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 800;
    line-height: 1.2;
}

.promo-discount {
    font-size: 3.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #4CAF50, #66bb6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin: 10px 0;
}

.promo-modal .subtitle {
    color: #888;
    font-size: 1.05em;
    margin-bottom: 25px;
}

.promo-code-box {
    background: rgba(76, 175, 80, 0.1);
    border: 2px dashed rgba(76, 175, 80, 0.4);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.promo-code-label {
    color: #888;
    font-size: 0.9em;
}

.promo-code-value {
    font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
    font-size: 1.4em;
    font-weight: 800;
    color: #4CAF50;
    letter-spacing: 2px;
}

.promo-modal .cta-btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1em;
    margin-bottom: 15px;
    border-radius: 12px;
}

.promo-modal .cta-btn.primary {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border: none;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.promo-modal .cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

.promo-dismiss {
    background: none;
    border: none;
    color: #666;
    font-size: 0.9em;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.2s ease;
}

.promo-dismiss:hover {
    color: #999;
}

.promo-footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.promo-footer span {
    color: #666;
    font-size: 0.85em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.promo-footer .icon {
    color: #4CAF50;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .promo-modal-content {
        padding: 35px 25px;
    }
    
    .promo-modal h2 {
        font-size: 1.6em;
    }
    
    .promo-discount {
        font-size: 2.8em;
    }
    
    .promo-code-box {
        flex-direction: column;
        gap: 5px;
    }
    
    .promo-footer {
        flex-direction: column;
        gap: 8px;
        padding: 15px 25px;
    }
}

