.sale-promo-popup {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.26);
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 9999;
}

.sale-promo-popup.show {
    display: flex;
}

.sale-promo-content {
    background: #fff;
    max-width: 900px;
    width: 100%;
    border-radius: 0;
    padding: 2rem;
    position: relative;
    text-align: center;
}

.sale-promo-title {
    font-size: clamp(2.5rem, 2.5rem + 0.625vw, 3.125rem);
    line-height: clamp(2.1875rem, 2.1875rem + 1.156vw, 4.5rem);
    color: #0083B0;
    margin-bottom: 0.5rem;
}

.sale-promo-subtitle {
    font-size: clamp(1rem, 1rem + 0.25vw, 1.25rem);
    color: #00456B;
    margin-bottom: 2rem;
    max-width: 450px;
    margin: 0 auto 2rem;
}

.sale-promo-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.sale-promo-image a {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.sale-promo-image a img {
    transition: opacity 0.3s ease;
}

.sale-promo-image a:hover img {
    opacity: 0.9;
}

.sale-promo-close {
    position: absolute;
    top: 0;
    right: 0;
    background: #0083B0;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    font-size: 20px;
    border-radius: 0;
    cursor: pointer;
}
