/* ==========================================================================
   Sale Banner Popup Styles
   ========================================================================== */

/* Animations
   ========================================================================== */

   @keyframes sale-banner-popup-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes sale-banner-popup-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes sale-banner-popup-slide-up {
    from {
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes sale-banner-popup-slide-up {
    from {
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/* Overlay
   ========================================================================== */

.sale-banner-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
}

.sale-banner-popup-overlay.is-visible {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-animation: sale-banner-popup-fade-in 0.3s ease forwards;
    animation: sale-banner-popup-fade-in 0.3s ease forwards;
}

/* Container
   ========================================================================== */

.sale-banner-popup-container {
    position: relative;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 26px 40px 0px rgba(0, 0, 0, 0.09);
    box-shadow: 0px 26px 40px 0px rgba(0, 0, 0, 0.09);
    max-width: 820px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    -webkit-animation: sale-banner-popup-slide-up 0.3s ease forwards;
    animation: sale-banner-popup-slide-up 0.3s ease forwards;
}

/* Close Button
   ========================================================================== */

.sale-banner-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
    transition: opacity 0.2s ease, transform 0.2s ease;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.sale-banner-popup-close svg {
    width: 30px;
    height: 30px;
    color: #222;
}

.sale-banner-popup-close:hover {
    opacity: 0.7;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}

.sale-banner-popup-close:focus {
    outline: none;
}

/* Content Layout (Two columns)
   ========================================================================== */

.sale-banner-popup-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
}

/* Left side - Image
   ========================================================================== */

.sale-banner-popup-image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    max-width: 50%;
    background: #FF69B4;
    overflow: hidden;
}

.sale-banner-popup-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

/* Right side - Info
   ========================================================================== */

.sale-banner-popup-info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    /* flex: 0 0 50%; */
    /* max-width: 50%; */
    padding: 70px 40px 50px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center;
}

/* Header with badge
   ========================================================================== */

.sale-banner-popup-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
}

.sale-banner-popup-badge {
    font-size: 28px;
    line-height: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.sale-banner-popup-title {
     font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin: 0;
    text-align: center;
}

/* Description
   ========================================================================== */

.sale-banner-popup-description {
    font-size: 16px;
    line-height: 1.5;
    color: #000000;
    margin: 0 0 60px 0;
    text-align: center;
    font-weight: 600;
}

/* Features list
   ========================================================================== */

.sale-banner-popup-features {
    list-style: none;
    padding: 0;
    margin: 0 0 60px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.sale-banner-popup-features li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #000000;
    font-weight: 600;
}

.sale-banner-popup-check {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* CTA Button
   ========================================================================== */

.sale-banner-popup-cta {
    letter-spacing: 0%;
    display: inline-block;
    background: #222;
    color: #fff;
    text-decoration: none;
    padding: 18px;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.2s ease, -webkit-transform 0.2s ease;
    transition: background 0.2s ease, transform 0.2s ease;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    text-align: center;
    width: 270px;
}

.sale-banner-popup-cta:hover {
    background: #444;
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* Body Lock
   ========================================================================== */

html.no-scroll {
    overflow: hidden;
}

body.sale-banner-popup-open {
    overflow: hidden;
}

/* Responsive
   ========================================================================== */

@media (max-width: 991px) {
    .sale-banner-popup-container {
        max-width: 90%;
        margin: 20px;
    }

    .sale-banner-popup-info {
        padding: 50px 30px 40px 30px;
    }

  

    .sale-banner-popup-close {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .sale-banner-popup-container {
        max-width: 95%;
        margin: 10px;
        max-height: 95vh;
        overflow-y: auto;
    }

    .sale-banner-popup-content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .sale-banner-popup-image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
        height: 250px;
    }

    .sale-banner-popup-info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        max-width: 100%;
        padding: 30px 20px;
    }

  

    .sale-banner-popup-description {
          margin-bottom: 30px;
    }

   

    .sale-banner-popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    .sale-banner-popup-close svg {
        width: 20px;
        height: 20px;
    }

    .sale-banner-popup-features{
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .sale-banner-popup-image {
        height: 200px;
    }

    .sale-banner-popup-info {
        padding: 50px 20px;
    }

   
}

