/** Shopify CDN: Minification failed

Line 89:5 Expected ":"

**/
.shipping-popup__modal {
    display: flex;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    transition: visibility 0.3s ease, background-color 0.3s ease;
}

.shipping-popup__content {
    background: #fff;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 720px;
    height: 100vh;
    transition: right 0.3s ease;
    padding-bottom: 30px;
}

.shipping-popup__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: #D3D3D3 solid 1px;
}

.shipping-popup__modal.active {
    visibility: visible;
    background: rgba(0, 0, 0, 0.5);
}

.shipping-popup__modal.active .shipping-popup__content {
    right: 0;
}

.shipping-popup__close {
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.shipping-popup__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 106%;
    letter-spacing: -.4px;
    margin: 0 0 30px 0;
    display: flex;
    align-items: center;
    column-gap: 8px;
    padding-top: 30px;
}

.shipping-popup__inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-bottom: 30px;

}

.shipping-popup__inner {
    color: #222222;

}

.shipping-popup__inner p {
    font-size: 14px;
    line-height: 106%;
    letter-spacing: -.2px;
    margin-bottom: 30px;
    margin-top: 0;
    C
}

.shipping-popup__inner h5 {
    font-size: 14px;
    line-height: 106%;
    letter-spacing: -.2px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.shipping-popup__header .shipping-popup__title {
    margin-bottom: 0;
    padding-top: 0;
    font-size: 32px;
}

.shipping-popup__inner ul {
    list-style-position: inside;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: -.2px;
    margin: 0;
    padding-left: 10px;
    margin-bottom: 30px;
}

.shipping-popup__inner ul + ul {
    margin-top: 30px;
}

.shipping-popup__body {
    padding: 0 25px;
    overflow-y: auto;
    max-height: calc(100vh - 80px); /* Subtract header height */
    height: auto;
    -webkit-overflow-scrolling: touch; /* For better scrolling on iOS */
}

/* Ensure scrolling works when Lenis is stopped */
.shipping-popup__body.lenis-stopped {
    overflow-y: scroll !important;
    height: calc(100vh - 80px) !important; /* Match max-height to ensure content is scrollable */
    pointer-events: auto !important; /* Ensure scroll events are captured */
}

@media screen and (max-width: 749px) {
    .shipping-popup__header {
        padding: 20px;
    }

    .shipping-popup__body {
        padding: 0 20px;
        max-height: calc(100vh - 70px);
    }

    /* Ensure scrolling works when Lenis is stopped on mobile */
    .shipping-popup__body.lenis-stopped {
        height: calc(100vh - 70px) !important; /* Match max-height for mobile */
    }

    .shipping-popup__title {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .shipping-popup__header {
        padding: 15px;
    }

    .shipping-popup__title {
        margin-bottom: 15px;
    }

    .shipping-popup__inner img {
        margin-bottom: 15px;
    }

    .shipping-popup__inner ul {
        margin-bottom: 15px;
    }
    .shipping-popup__inner p {
        margin-bottom: 15px;
    }

    .shipping-popup__body {
        padding: 0 15px;
        max-height: calc(100vh - 60px); /* Adjust for even smaller header on small mobile */
    }

    /* Ensure scrolling works when Lenis is stopped on small mobile */
    .shipping-popup__body.lenis-stopped {
        height: calc(100vh - 60px) !important; /* Match max-height for small mobile */
    }
}
