/* Promotion Popup Styles */
.promotion-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    background: var(--bg-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.promotion-popup.visible {
    opacity: 1;
    transform: translateY(0);
}

.promotion-popup-header {
    position: relative;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 1));
}

.promotion-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    font-size: 16px;
    border: none;
    transition: background 0.2s ease;
}

.promotion-popup-close:hover {
    background: rgba(0, 0, 0, 0.5);
}

.promotion-popup-title {
    color: var(--secondary-color);
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.promotion-popup-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.promotion-popup-content {
    padding: 1.5rem;
}

.promotion-popup-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.promotion-popup-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.promotion-popup-button:hover {
    background-color: #e6c555;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .promotion-popup {
        width: calc(100% - 40px);
        bottom: 20px;
        right: 20px;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .promotion-popup {
        width: calc(100% - 30px);
        bottom: 15px;
        right: 15px;
    }
    
    .promotion-popup-header {
        padding: 1rem;
    }
    
    .promotion-popup-content {
        padding: 1rem;
    }
    
    .promotion-popup-title {
        font-size: 1.3rem;
    }
    
    .promotion-popup-image {
        height: 150px;
    }
}
