/* Promo Popup Styles - Vórtice Musical Edition */
:root {
    --promo-gold: #c5a059;
    --promo-gold-bright: #e6c17a;
    --promo-slate: #6b8fa1;
    --promo-bg: #0a1118;
    --promo-glass: rgba(10, 17, 24, 0.95);
    --promo-border: rgba(197, 160, 89, 0.4);
    --promo-text-dim: rgba(253, 250, 248, 0.7);
}

.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: var(--promo-glass);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.promo-popup-content {
    background: #0d1620;
    width: 95%;
    max-width: 850px;
    border-radius: 24px;
    border: 1px solid var(--promo-border);
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(197, 160, 89, 0.15);
}

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

.promo-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--promo-border);
    color: var(--promo-gold);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
}

.promo-popup-close:hover {
    background: var(--promo-gold);
    color: #000;
    transform: rotate(90deg);
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    min-height: 450px;
}

.promo-media-side {
    position: relative;
    overflow: hidden;
    background: #000;
}

.promo-media-side img, 
.promo-media-side video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-info-side {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #0d1620 0%, #080d12 100%);
}

.promo-info-side .badge {
    color: var(--promo-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.7rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    display: inline-block;
    border: 1px solid var(--promo-border);
    padding: 4px 10px;
    border-radius: 4px;
}

.promo-info-side h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
}

.promo-info-side p {
    color: var(--promo-text-dim);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.promo-price-container {
    margin-bottom: 1.5rem;
}

.promo-offer-only {
    color: var(--promo-gold-bright);
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

.promo-price-details {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.old-price {
    text-decoration: line-through;
    color: var(--promo-text-dim);
    font-size: 1rem;
    opacity: 0.5;
}

.new-price {
    color: var(--promo-gold-bright);
    font-size: 2rem;
    font-weight: 800;
}

.promo-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.promo-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.promo-btn-primary {
    background: var(--promo-gold);
    color: #000;
    box-shadow: 0 8px 16px rgba(197, 160, 89, 0.15);
}

.promo-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(197, 160, 89, 0.3);
    background: var(--promo-gold-bright);
}

.promo-btn-secondary {
    border: 1px solid var(--promo-border);
    color: var(--promo-text-dim);
}

.promo-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border-color: #fff;
}

@media (max-width: 768px) {
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-media-side {
        height: 180px;
    }
    
    .promo-info-side {
        padding: 1.5rem;
    }
    
    .promo-info-side h2 {
        font-size: 1.5rem;
    }
    
    .promo-offer-only {
        font-size: 2rem;
    }
}
