.store-showcase-section{
    position:relative;
    overflow:hidden;
}

.store-showcase-heading{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
    margin-bottom:22px;
}

.store-showcase-heading>div{
    min-width:0;
}

.store-showcase-heading h2{
    margin:6px 0 0;
    color:var(--navy);
    font-size:clamp(24px,3vw,34px);
    line-height:1.25;
}

.store-showcase-heading p{
    max-width:720px;
    margin:9px 0 0;
    color:#65758a;
    line-height:1.9;
}

.store-showcase-main-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    flex:0 0 auto;
    min-height:44px;
    padding:10px 17px;
    color:#fff;
    border-radius:13px;
    background:var(--primary);
    text-decoration:none;
    font-size:12px;
    font-weight:900;
    transition:
        transform 160ms ease,
        box-shadow 160ms ease;
}

.store-showcase-main-button:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(0,119,255,.18);
}

.store-showcase-banner-wrap{
    margin-bottom:22px;
}

.store-showcase-banner{
    display:block;
    overflow:hidden;
    width:100%;
    border:1px solid #e1eaf5;
    border-radius:22px;
    background:#fff;
    box-shadow:0 14px 34px rgba(11,29,58,.07);
}

.store-showcase-banner img{
    display:block;
    width:100%;
    height:190px;
    object-fit:cover;
}

.store-showcase-banner.is-static{
    cursor:default;
}

.store-showcase-slider{
    position:relative;
    width:100%;
    max-width:100%;
    min-width:0;
    overflow:hidden;
}

.store-showcase-track{
    display:flex;
    width:100%;
    max-width:100%;
    min-width:0;
    gap:16px;
    overflow-x:auto;
    overscroll-behavior-inline:contain;
    padding:3px 3px 14px;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
}

.store-showcase-track::-webkit-scrollbar{
    display:none;
}

.store-product-card{
    flex:0 0 260px;
    min-width:0;
    overflow:hidden;
    scroll-snap-align:start;
    border:1px solid #e1e9f3;
    border-radius:20px;
    background:#fff;
    box-shadow:0 10px 28px rgba(11,29,58,.06);
}

.store-product-image{
    position:relative;
    display:grid;
    place-items:center;
    overflow:hidden;
    width:100%;
    aspect-ratio:1/1;
    padding:12px;
    background:#f8fafc;
}

.store-product-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform 220ms ease;
}

.store-product-card:hover .store-product-image img{
    transform:scale(1.025);
}

.store-product-badge{
    position:absolute;
    z-index:2;
    top:12px;
    right:12px;
    padding:6px 9px;
    color:#fff;
    border-radius:999px;
    background:var(--primary);
    font-size:9px;
    font-weight:900;
}

.store-product-body{
    display:flex;
    flex-direction:column;
    min-height:158px;
    padding:15px;
}

.store-product-body h3{
    margin:0;
    color:var(--navy);
    font-size:15px;
    line-height:1.55;
}

.store-product-body h3 a{
    color:inherit;
    text-decoration:none;
}

.store-product-price{
    display:flex;
    align-items:baseline;
    flex-wrap:wrap;
    gap:8px;
    margin-top:9px;
}

.store-product-price strong{
    color:var(--navy);
    font-size:16px;
    font-weight:900;
}

.store-product-price del{
    color:#98a4b3;
    font-size:11px;
}

.store-product-button{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:8px;
    min-height:39px;
    margin-top:auto;
    padding:9px 11px;
    color:var(--primary);
    border:1px solid #cfe2fb;
    border-radius:11px;
    background:#f5f9ff;
    text-decoration:none;
    font-size:11px;
    font-weight:900;
}

.store-product-button:hover{
    background:#eaf4ff;
}

.store-showcase-nav{
    position:absolute;
    z-index:4;
    top:50%;
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    color:var(--navy);
    border:1px solid #d8e3f0;
    border-radius:50%;
    background:rgba(255,255,255,.94);
    box-shadow:0 10px 22px rgba(11,29,58,.11);
    cursor:pointer;
    transform:translateY(-50%);
}

.store-showcase-nav:disabled{
    opacity:.35;
    cursor:default;
}

.store-showcase-nav-prev{
    right:-12px;
}

.store-showcase-nav-next{
    left:-12px;
}

@media(max-width:900px){
    .store-product-card{
        flex-basis:230px;
    }

    .store-showcase-banner img{
        height:155px;
    }
}

@media(max-width:640px){
    .store-showcase-heading{
        align-items:flex-start;
        flex-direction:column;
        gap:14px;
        margin-bottom:17px;
    }

    .store-showcase-main-button{
        width:100%;
    }

    .store-showcase-banner{
        border-radius:17px;
    }

    .store-showcase-banner img{
        height:130px;
    }

    .store-showcase-track{
        margin-inline:-16px;
        padding-inline:16px;
        scroll-padding-inline:16px;
    }

    .store-product-card{
        flex-basis:min(76vw,270px);
        border-radius:17px;
    }

    .store-showcase-nav{
        display:none;
    }
}

@media(prefers-reduced-motion:reduce){
    .store-showcase-track{
        scroll-behavior:auto;
    }

    .store-product-image img,
    .store-showcase-main-button{
        transition:none;
    }
}
