/* Promo Popup Styles */
.promo-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 17, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    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: var(--bg-accent);
    width: 90%;
    max-width: 800px;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 50px rgba(197, 160, 89, 0.1);
}

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

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

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

.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.promo-img-side {
    position: relative;
    overflow: hidden;
    background: transparent; /* Changed to transparent to fit object-fit: contain */
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-img-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.promo-info-side {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-info-side .badge {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.promo-info-side h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

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

.promo-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.promo-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.promo-btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

.promo-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.4);
}

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

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

@media (max-width: 768px) {
    .promo-popup-content {
        max-height: 90vh;
        overflow-y: auto;
        border-radius: 20px;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-img-side {
        height: 350px;
        min-height: 350px; 
    }
    
    .promo-info-side {
        padding: 1.5rem;
    }
    
    .promo-info-side h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .promo-info-side p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .promo-price .new-price {
        font-size: 1.8rem;
    }

    .promo-btn {
        padding: 0.8rem;
    }
    
    .promo-popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }
}
