.lzp-sale-detail {

}
.lzp-hero-section {
    --p: 40px;
    background: linear-gradient(135deg, #fff 0%, var(--lzp-light-beige) 100%);
    /*padding: var(--p);*/
    text-align: center;
    /*border-bottom: 1px solid var(--lzp-light-gray);*/
    border-radius: var(--lzp-border-radius);
    display: flex;
    align-items: center;
    gap: 0px;
    margin-bottom: var(--p);
}
.lzp-hero-visual {
    --w: 400px;
    width: var(--w);
    min-width: var(--w);
    margin: 0 auto;
    height: 250px;
    max-width: 100%;
    background: linear-gradient(135deg, var(--lzp-primary-blue) 0%, var(--lzp-primary-green) 100%);
    border-radius: var(--lzp-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.lzp-hero-visual img {
    position: absolute;
    z-index: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*
.lzp-hero-visual::before {
    content: '';
    position: absolute;
    z-index: 1;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    animation: lzp-pulse 2s infinite;
}

.lzp-hero-visual::after {
    content: attr(data-icon);
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    line-height: 1em;
}

@keyframes lzp-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0.1; }
}
 */

.lzp-hero-info {
    --p: 40px;
    flex-grow: 1;
    text-align: left;
    padding: var(--p);
}
.lzp-hero-info-sale {
    background: var(--lzp-primary-green);
    padding: 2px 8px;
    display: inline-block;
    color: white;
    margin-bottom: 3px;
}
.lzp-hero-title {
    font-size: 1.6em!important;
    font-weight: 700;
}
.lzp-hero-region {
    color: var(--lzp-gray);
    font-size: 0.7em!important;
    line-height: 1em!important;
}
.lzp-hero-date {
    color: var(--lzp-dark-gray);
    margin-bottom: 5px;
}
.lzp-sale-detail .promo-conditions {
}
.lzp-sale-detail .promo-conditions ul {
    gap: 24px;
    padding: 0;
    margin: 0 0 40px 0;
    list-style: none;
}

.lzp-sale-detail .promo-conditions ul li {
    position: relative;
    display: block;
}
.lzp-sale-detail .promo-conditions ul li:before {
    content: '✅';
    display: inline-block;
    margin-right: 10px;
}
.lzp-sale-detail .promo-included {
    background: var(--lzp-light-gray);
    padding: 24px;
    border-radius: var(--lzp-border-radius);
    transition: var(--lzp-transition);
}
.lzp-sale-detail .promo-included h2 {
    margin-top: 0;
    padding-top: 0;
}
.lzp-sale-detail .promo-included ul {
    padding-left: 20px;
}
@media (max-width: 991px) {
    .lzp-sale-detail {
        padding: 0 20px;
    }
    .lzp-hero-section {
        --p:30px;
    }
}
@media (max-width: 767px) {
    .lzp-sale-detail {
        padding: 0 0px;
    }
    .lzp-hero-section {
        flex-wrap: wrap;
        gap: 0px;
    }
    .lzp-hero-visual {
        --w: 100%;
    }
    .lzp-hero-info {
        padding: 20px;
    }
}
@media (max-width: 565px) {
    .lzp-hero-visual {
        height: 200px;
    }
}
