/* Promotion Popup Styles */
.promotion-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 350px;
    max-width: calc(100% - 60px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

.promotion-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.promotion-popup-title {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
}

.promotion-popup-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.promotion-popup-content {
    padding: 20px;
}

.promotion-popup-text {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
}

.promotion-popup-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    text-align: center;
}

.promotion-popup-button:hover {
    background-color: var(--accent-color);
}

@media (max-width: 576px) {
    .promotion-popup {
        bottom: 20px;
        right: 20px;
        width: calc(100% - 40px);
    }
}
