/*
|--------------------------------------------------------------------------
| ShopCore Main Store Bundles
|--------------------------------------------------------------------------
*/

.shopcore-bundle-page,
.shopcore-bundle-page *{
    box-sizing:border-box;
}

.shopcore-bundle-page{
    --bundle-page:#f4f7fc;
    --bundle-surface:#ffffff;
    --bundle-border:#dce4ef;
    --bundle-text:#071a3d;
    --bundle-soft:#64748b;
    --bundle-muted:#8996aa;
    --bundle-orange:#ff5a00;
    --bundle-orange-dark:#e95000;
    --bundle-orange-soft:#fff3ec;
    --bundle-success:#16a34a;
    --bundle-shadow:0 8px 24px rgba(7,26,61,.065);

    width:100%;
    min-width:0;
    padding:22px 20px 62px;
    overflow-x:hidden;
    color:var(--bundle-text);
    background:var(--bundle-page);
}

.shopcore-bundle-shell{
    width:min(1180px,100%);
    min-width:0;
    margin:0 auto;
}

/*
|--------------------------------------------------------------------------
| Heading
|--------------------------------------------------------------------------
*/

.shopcore-bundle-heading{
    position:relative;
    isolation:isolate;
    min-height:145px;
    padding:26px 30px;
    display:flex;
    align-items:center;
    overflow:hidden;
    border:1px solid var(--bundle-border);
    border-bottom:3px solid var(--bundle-orange);
    border-radius:19px;
    background:linear-gradient(135deg,#fff8f4,#ffffff 62%);
    box-shadow:var(--bundle-shadow);
}

.shopcore-bundle-heading__copy{
    position:relative;
    z-index:2;
    max-width:650px;
}

.shopcore-bundle-heading__eyebrow{
    margin-bottom:10px;
    display:inline-flex;
    align-items:center;
    gap:7px;
    color:var(--bundle-orange);
    font-size:9px;
    font-weight:850;
    letter-spacing:.07em;
    text-transform:uppercase;
}

.shopcore-bundle-heading__eyebrow > span{
    width:7px;
    height:7px;
    flex:0 0 7px;
    border-radius:50%;
    background:var(--bundle-orange);
    box-shadow:0 0 0 5px rgba(255,90,0,.09);
}

.shopcore-bundle-heading h1{
    margin:0;
    color:var(--bundle-text);
    font-size:clamp(25px,3vw,38px);
    font-weight:950;
    line-height:1.05;
    letter-spacing:-.045em;
}

.shopcore-bundle-heading p{
    max-width:590px;
    margin:11px 0 0;
    color:var(--bundle-soft);
    font-size:11px;
    font-weight:550;
    line-height:1.65;
}

.shopcore-bundle-heading__art{
    position:absolute;
    top:-80px;
    right:-45px;
    width:235px;
    height:235px;
    border:34px solid rgba(255,90,0,.055);
    border-radius:50%;
}

/*
|--------------------------------------------------------------------------
| Network Bar
|--------------------------------------------------------------------------
*/

.shopcore-network-bar{
    width:100%;
    min-width:0;
    margin-top:20px;
}

.shopcore-network-tabs{
    width:100%;
    min-width:0;
    padding:1px 1px 5px;
    display:flex;
    align-items:center;
    gap:8px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scroll-snap-type:x proximity;
    overscroll-behavior-inline:contain;
    scrollbar-width:none;
    touch-action:pan-x;
    -ms-overflow-style:none;
    -webkit-overflow-scrolling:touch;
}

.shopcore-network-tabs::-webkit-scrollbar{
    display:none;
    width:0;
    height:0;
}

.shopcore-network-tab{
    min-width:max-content;
    min-height:45px;
    flex:0 0 auto;
    padding:5px 13px 5px 6px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:1px solid var(--bundle-border);
    border-radius:999px;
    outline:0;
    color:var(--bundle-text);
    background:var(--bundle-surface);
    box-shadow:0 5px 15px rgba(7,26,61,.05);
    cursor:pointer;
    font:inherit;
    scroll-snap-align:start;
    transition:
        border-color .18s ease,
        color .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.shopcore-network-tab:hover{
    color:var(--network-accent,var(--bundle-orange));
    border-color:var(--network-accent,var(--bundle-orange));
    transform:translateY(-1px);
}

.shopcore-network-tab:active{
    transform:scale(.98);
}

.shopcore-network-tab.is-active{
    color:var(--network-accent,var(--bundle-orange));
    border-color:var(--network-accent,var(--bundle-orange));
    box-shadow:
        inset 0 0 0 1px var(--network-accent,var(--bundle-orange)),
        0 5px 15px rgba(7,26,61,.05);
}

/*
|--------------------------------------------------------------------------
| Round Network Image
|--------------------------------------------------------------------------
*/

.shopcore-network-tab__icon{
    width:34px;
    height:34px;
    flex:0 0 34px;
    padding:3px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border:1px solid color-mix(
        in srgb,
        var(--network-accent,var(--bundle-orange)) 14%,
        var(--bundle-border)
    );
    border-radius:50%;
    background:color-mix(
        in srgb,
        var(--network-accent,var(--bundle-orange)) 9%,
        #ffffff
    );
}

.shopcore-network-tab__icon img{
    display:block;
    width:100%;
    height:100%;
    padding:1px;
    border-radius:50%;
    background:#ffffff;
    object-fit:contain;
}

.shopcore-network-tab__icon > span{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:var(--network-accent,var(--bundle-text));
    font-size:7px;
    font-weight:950;
}

.shopcore-network-tab__icon-all{
    padding:0;
    color:#ffffff;
    border-color:var(--bundle-orange);
    background:var(--bundle-orange);
}

.shopcore-network-tab__icon-all svg{
    width:15px;
    height:15px;
    fill:currentColor;
}

.shopcore-network-tab__copy{
    min-width:0;
    display:flex;
    align-items:center;
}

.shopcore-network-tab__copy strong{
    max-width:165px;
    overflow:hidden;
    color:inherit;
    font-size:10px;
    font-weight:850;
    line-height:1;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.shopcore-network-tab-mtn .shopcore-network-tab__icon{
    border-color:rgba(255,203,5,.35);
    background:#fff9d8;
}

.shopcore-network-tab-telecel .shopcore-network-tab__icon{
    border-color:rgba(230,0,0,.18);
    background:#fff1f2;
}

.shopcore-network-tab-at .shopcore-network-tab__icon{
    border-color:rgba(40,88,199,.18);
    background:#edf3ff;
}

/*
|--------------------------------------------------------------------------
| Toolbar
|--------------------------------------------------------------------------
*/

.shopcore-bundle-toolbar{
    position:relative;
    z-index:40;
    margin-top:14px;
    padding:9px;
    display:grid;
    grid-template-columns:minmax(260px,1fr) 175px 185px 58px;
    gap:8px;
    overflow:visible;
    border:1px solid var(--bundle-border);
    border-radius:14px;
    background:var(--bundle-surface);
    box-shadow:0 7px 22px rgba(7,26,61,.045);
}

.shopcore-bundle-search{
    position:relative;
    min-width:0;
    height:44px;
    display:flex;
    align-items:center;
    border:1px solid var(--bundle-border);
    border-radius:10px;
    background:#fbfcfe;
    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.shopcore-bundle-search:focus-within{
    border-color:var(--bundle-orange);
    background:#ffffff;
    box-shadow:0 0 0 3px rgba(255,90,0,.07);
}

.shopcore-toolbar-icon{
    width:40px;
    height:100%;
    flex:0 0 40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:var(--bundle-orange);
}

.shopcore-toolbar-icon svg{
    width:15px;
    height:15px;
    fill:currentColor;
}

.shopcore-bundle-search input{
    width:100%;
    min-width:0;
    height:100%;
    padding:0 10px 0 0;
    border:0;
    outline:0;
    color:var(--bundle-text);
    background:transparent;
    font:inherit;
    font-size:9.5px;
    font-weight:650;
}

.shopcore-bundle-search input::placeholder{
    color:#7b8aa3;
}

.shopcore-toolbar-count{
    height:44px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,90,0,.3);
    border-radius:10px;
    background:var(--bundle-orange-soft);
}

.shopcore-toolbar-count strong{
    color:var(--bundle-orange);
    font-size:15px;
    font-weight:950;
    line-height:1;
}

.shopcore-toolbar-count small{
    margin-top:3px;
    color:#7c889d;
    font-size:5px;
    font-weight:900;
    letter-spacing:.08em;
}

/*
|--------------------------------------------------------------------------
| Custom Dropdown
|--------------------------------------------------------------------------
*/

.shopcore-dropdown{
    position:relative;
    z-index:60;
    min-width:0;
    height:44px;
}

.shopcore-dropdown.is-open{
    z-index:500;
}

.shopcore-dropdown__native{
    position:absolute !important;
    width:1px !important;
    height:1px !important;
    padding:0 !important;
    margin:-1px !important;
    overflow:hidden !important;
    clip:rect(0,0,0,0) !important;
    white-space:nowrap !important;
    border:0 !important;
    opacity:0 !important;
    pointer-events:none !important;
}

.shopcore-dropdown__trigger{
    width:100%;
    height:44px;
    min-width:0;
    padding:0 9px;
    display:grid;
    grid-template-columns:28px minmax(0,1fr) 22px;
    align-items:center;
    gap:5px;
    border:1px solid var(--bundle-border);
    border-radius:10px;
    outline:0;
    color:var(--bundle-text);
    background:#fbfcfe;
    cursor:pointer;
    font:inherit;
    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.shopcore-dropdown__trigger:hover{
    border-color:#cbd5e1;
    background:#ffffff;
}

.shopcore-dropdown__trigger:focus-visible{
    border-color:var(--bundle-orange);
    box-shadow:0 0 0 3px rgba(255,90,0,.08);
}

.shopcore-dropdown.is-open .shopcore-dropdown__trigger{
    border-color:var(--bundle-orange);
    background:#ffffff;
    box-shadow:0 0 0 3px rgba(255,90,0,.08);
}

.shopcore-dropdown__leading{
    width:28px;
    height:28px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    color:var(--bundle-orange);
    background:rgba(255,90,0,.07);
}

.shopcore-dropdown__leading svg{
    width:14px;
    height:14px;
    fill:currentColor;
}

.shopcore-dropdown__value{
    min-width:0;
    overflow:hidden;
    color:var(--bundle-text);
    font-size:9px;
    font-weight:800;
    line-height:1;
    text-align:left;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.shopcore-dropdown__chevron{
    width:22px;
    height:22px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#8190a8;
    transition:
        transform .2s ease,
        color .2s ease;
}

.shopcore-dropdown__chevron svg{
    width:13px;
    height:13px;
    fill:currentColor;
}

.shopcore-dropdown.is-open .shopcore-dropdown__chevron{
    color:var(--bundle-orange);
    transform:rotate(180deg);
}

/*
|--------------------------------------------------------------------------
| Custom Dropdown Menu
|--------------------------------------------------------------------------
*/

.shopcore-dropdown__menu{
    position:absolute;
    top:calc(100% + 7px);
    right:0;
    z-index:9999;
    width:max(100%,205px);
    max-height:290px;
    padding:6px;
    visibility:hidden;
    overflow-x:hidden;
    overflow-y:auto;
    border:1px solid #dde5ef;
    border-radius:12px;
    background:#ffffff;
    box-shadow:
        0 18px 45px rgba(15,23,42,.13),
        0 4px 12px rgba(15,23,42,.06);
    opacity:0;
    transform:translateY(-5px) scale(.985);
    transform-origin:top center;
    pointer-events:none;
    scrollbar-width:thin;
    transition:
        opacity .16s ease,
        transform .16s ease,
        visibility .16s ease;
}

.shopcore-dropdown.is-open .shopcore-dropdown__menu{
    visibility:visible;
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
}

.shopcore-dropdown__menu::-webkit-scrollbar{
    width:5px;
}

.shopcore-dropdown__menu::-webkit-scrollbar-thumb{
    border-radius:999px;
    background:#d5dde8;
}

/*
|--------------------------------------------------------------------------
| Dropdown Options
|--------------------------------------------------------------------------
*/

.shopcore-dropdown__option{
    position:relative;
    width:100%;
    min-height:38px;
    padding:0 8px 0 10px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    border:0;
    border-radius:8px;
    outline:0;
    color:#344054;
    background:transparent;
    cursor:pointer;
    font:inherit;
    text-align:left;
    transition:
        background .15s ease,
        color .15s ease;
}

.shopcore-dropdown__option + .shopcore-dropdown__option{
    margin-top:2px;
}

.shopcore-dropdown__option:hover,
.shopcore-dropdown__option:focus-visible{
    color:var(--bundle-orange);
    background:#fff5ef;
}

.shopcore-dropdown__option.is-selected{
    color:var(--bundle-orange);
    background:#fff2ea;
}

.shopcore-dropdown__option-text{
    min-width:0;
    overflow:hidden;
    font-size:9px;
    font-weight:700;
    line-height:1.2;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.shopcore-dropdown__option.is-selected .shopcore-dropdown__option-text{
    font-weight:850;
}

.shopcore-dropdown__check{
    width:20px;
    height:20px;
    flex:0 0 20px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:#ffffff;
    background:var(--bundle-orange);
    opacity:0;
    transform:scale(.72);
    transition:
        opacity .15s ease,
        transform .15s ease;
}

.shopcore-dropdown__check svg{
    width:11px;
    height:11px;
    fill:currentColor;
}

.shopcore-dropdown__option.is-selected .shopcore-dropdown__check{
    opacity:1;
    transform:scale(1);
}

/*
|--------------------------------------------------------------------------
| Bundle Grid
|--------------------------------------------------------------------------
*/

.shopcore-bundle-grid{
    position:relative;
    z-index:1;
    width:100%;
    min-width:0;
    margin-top:14px;
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:10px;
    align-items:start;
}

/*
|--------------------------------------------------------------------------
| Bundle Cards
|--------------------------------------------------------------------------
*/

.shopcore-bundle-card{
    min-width:0;
    overflow:hidden;
    border:1px solid var(--bundle-border);
    border-radius:13px;
    outline:0;
    background:var(--bundle-surface);
    box-shadow:0 8px 22px rgba(7,26,61,.065);
    cursor:pointer;
    user-select:none;
    -webkit-tap-highlight-color:transparent;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.shopcore-bundle-card[hidden]{
    display:none !important;
}

.shopcore-bundle-card:hover{
    border-color:color-mix(
        in srgb,
        var(--card-accent) 42%,
        var(--bundle-border)
    );
    box-shadow:0 13px 27px color-mix(
        in srgb,
        var(--card-accent) 11%,
        transparent
    );
    transform:translateY(-3px);
}

.shopcore-bundle-card:focus-visible{
    border-color:var(--card-accent);
    box-shadow:
        0 0 0 3px color-mix(
            in srgb,
            var(--card-accent) 15%,
            transparent
        ),
        0 12px 27px rgba(7,26,61,.08);
}

.shopcore-bundle-card:active{
    transform:scale(.99);
}

/*
|--------------------------------------------------------------------------
| Card Top
|--------------------------------------------------------------------------
*/

.shopcore-bundle-card__top{
    position:relative;
    isolation:isolate;
    min-height:60px;
    padding:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:var(--card-accent);
}

.shopcore-bundle-card__top::before,
.shopcore-bundle-card__top::after{
    position:absolute;
    border:16px solid rgba(255,255,255,.065);
    border-radius:50%;
    content:"";
}

.shopcore-bundle-card__top::before{
    top:-38px;
    right:-28px;
    width:90px;
    height:90px;
}

.shopcore-bundle-card__top::after{
    bottom:-38px;
    left:-28px;
    width:65px;
    height:65px;
}

.shopcore-bundle-card__brand{
    position:relative;
    z-index:3;
    width:34px;
    height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    border-radius:9px;
}

.shopcore-bundle-card__brand img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
}

.shopcore-bundle-card__brand > span{
    color:var(--card-contrast);
    font-size:8px;
    font-weight:950;
}

/*
|--------------------------------------------------------------------------
| Card Body
|--------------------------------------------------------------------------
*/

.shopcore-bundle-card__body{
    min-height:126px;
    padding:10px 9px 7px;
    display:flex;
    flex-direction:column;
    background:#ffffff;
}

.shopcore-bundle-card__body h3{
    margin:0;
    color:#071a3d;
    font-size:25px;
    font-weight:950;
    line-height:1;
    letter-spacing:-.055em;
    text-align:center;
    text-transform:uppercase;
}

.shopcore-bundle-card__body > p{
    margin:6px 0 9px;
    color:var(--card-accent);
    font-size:14px;
    font-weight:950;
    line-height:1;
    text-align:center;
    text-transform:uppercase;
}

/*
|--------------------------------------------------------------------------
| Card Button
|--------------------------------------------------------------------------
*/

.shopcore-bundle-card__button{
    width:100%;
    min-height:31px;
    margin-top:auto;
    padding:0 5px 0 9px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:7px;
    border:0;
    border-radius:8px;
    color:var(--card-contrast);
    background:var(--card-accent);
    pointer-events:none;
    font:inherit;
    font-size:8px;
    font-weight:900;
}

.shopcore-bundle-card__button-icon{
    width:21px;
    height:21px;
    flex:0 0 21px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    color:var(--card-accent);
    background:color-mix(
        in srgb,
        var(--card-contrast) 95%,
        transparent
    );
}

.shopcore-bundle-card__button-icon svg{
    width:10px;
    height:10px;
    fill:currentColor;
}

/*
|--------------------------------------------------------------------------
| Meta
|--------------------------------------------------------------------------
*/

.shopcore-bundle-card__meta{
    margin-top:6px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:5px;
}

.shopcore-bundle-card__meta > span{
    max-width:62%;
    overflow:hidden;
    color:#78869d;
    font-size:5.5px;
    font-weight:750;
    text-overflow:ellipsis;
    white-space:nowrap;
}

.shopcore-bundle-card__meta small{
    display:inline-flex;
    align-items:center;
    gap:3px;
    color:var(--bundle-success);
    font-size:5.5px;
    font-weight:900;
    white-space:nowrap;
}

.shopcore-bundle-card__meta small > span{
    width:5px;
    height:5px;
    flex:0 0 5px;
    border-radius:50%;
    background:currentColor;
}

/*
|--------------------------------------------------------------------------
| MTN
|--------------------------------------------------------------------------
*/

.shopcore-bundle-card-mtn .shopcore-bundle-card__top{
    background:#ffcb05;
}

.shopcore-bundle-card-mtn .shopcore-bundle-card__brand{
    width:37px;
    height:27px;
    border-radius:0;
    background:transparent;
}

.shopcore-bundle-card-mtn .shopcore-bundle-card__body > p{
    color:#f5b900;
}

.shopcore-bundle-card-mtn .shopcore-bundle-card__button{
    color:#071327;
    background:#ffcb05;
}

.shopcore-bundle-card-mtn .shopcore-bundle-card__button-icon{
    color:#ffcb05;
    background:#071a3d;
}

/*
|--------------------------------------------------------------------------
| Telecel
|--------------------------------------------------------------------------
*/

.shopcore-bundle-card-telecel .shopcore-bundle-card__top{
    background:#e60000;
}

.shopcore-bundle-card-telecel .shopcore-bundle-card__top::before{
    top:-49px;
    right:-38px;
    width:105px;
    height:105px;
    border-color:rgba(255,255,255,.08);
}

.shopcore-bundle-card-telecel .shopcore-bundle-card__brand{
    background:rgba(255,255,255,.14);
}

.shopcore-bundle-card-telecel .shopcore-bundle-card__body > p{
    color:#e60000;
}

.shopcore-bundle-card-telecel .shopcore-bundle-card__button{
    color:#ffffff;
    background:#e60000;
}

.shopcore-bundle-card-telecel .shopcore-bundle-card__button-icon{
    color:#e60000;
    background:#ffffff;
}

/*
|--------------------------------------------------------------------------
| AirtelTigo / AT
|--------------------------------------------------------------------------
*/

.shopcore-bundle-card-at .shopcore-bundle-card__top{
    background:#2858c7;
}

.shopcore-bundle-card-at .shopcore-bundle-card__top::before{
    position:absolute;
    inset:0;
    z-index:-2;
    width:auto;
    height:auto;
    border:0;
    border-radius:0;
    background:
        radial-gradient(
            ellipse 70px 45px at 18% 107%,
            #f43345 0 69%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 70px 45px at 82% 107%,
            #f43345 0 69%,
            transparent 70%
        ),
        linear-gradient(
            to bottom,
            transparent 0 68%,
            #f43345 68% 100%
        );
}

.shopcore-bundle-card-at .shopcore-bundle-card__top::after{
    position:absolute;
    bottom:0;
    left:50%;
    z-index:-1;
    width:62px;
    height:30px;
    border:0;
    border-radius:0 0 34px 34px;
    background:#2858c7;
    transform:translateX(-50%);
}

.shopcore-bundle-card-at .shopcore-bundle-card__brand{
    width:35px;
    height:35px;
    border-radius:3px;
    background:rgba(7,35,90,.4);
    box-shadow:0 6px 15px rgba(0,0,0,.12);
}

.shopcore-bundle-card-at .shopcore-bundle-card__body > p{
    color:#2858c7;
}

.shopcore-bundle-card-at .shopcore-bundle-card__button{
    color:#ffffff;
    background:#2858c7;
}

.shopcore-bundle-card-at .shopcore-bundle-card__button-icon{
    color:#2858c7;
    background:#ffffff;
}

/*
|--------------------------------------------------------------------------
| Empty State
|--------------------------------------------------------------------------
*/

.shopcore-bundle-empty{
    min-height:250px;
    padding:35px 20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.shopcore-bundle-empty[hidden]{
    display:none !important;
}

.shopcore-bundle-empty__icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    color:var(--bundle-orange);
    background:var(--bundle-orange-soft);
}

.shopcore-bundle-empty__icon svg{
    width:21px;
    height:21px;
    fill:currentColor;
}

.shopcore-bundle-empty h3{
    margin:12px 0 0;
    color:var(--bundle-text);
    font-size:14px;
    font-weight:900;
}

.shopcore-bundle-empty p{
    max-width:360px;
    margin:5px 0 0;
    color:var(--bundle-soft);
    font-size:9.5px;
    line-height:1.55;
}

.shopcore-bundle-empty button{
    min-height:35px;
    margin-top:12px;
    padding:0 14px;
    border:0;
    border-radius:9px;
    color:#ffffff;
    background:var(--bundle-orange);
    cursor:pointer;
    font:inherit;
    font-size:9px;
    font-weight:850;
}

/*
|--------------------------------------------------------------------------
| Smaller Desktop
|--------------------------------------------------------------------------
*/

@media (max-width:1100px){

    .shopcore-bundle-grid{
        grid-template-columns:repeat(4,minmax(0,1fr));
        gap:9px;
    }
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width:850px){

    .shopcore-bundle-page{
        padding:16px 12px 82px;
    }

    .shopcore-bundle-heading{
        min-height:128px;
        padding:21px;
        border-radius:16px;
    }

    .shopcore-bundle-toolbar{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:7px;
    }

    .shopcore-bundle-search{
        grid-column:1 / -1;
    }

    .shopcore-toolbar-count{
        display:none;
    }

    .shopcore-bundle-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:8px;
    }

    .shopcore-dropdown{
        height:40px;
    }

    .shopcore-dropdown__trigger{
        height:40px;
        padding:0 8px;
        grid-template-columns:25px minmax(0,1fr) 20px;
    }

    .shopcore-dropdown__leading{
        width:25px;
        height:25px;
        border-radius:7px;
    }

    .shopcore-dropdown__leading svg{
        width:12px;
        height:12px;
    }

    .shopcore-dropdown__value{
        font-size:8px;
    }

    .shopcore-dropdown__menu{
        width:max(100%,190px);
    }

    .shopcore-dropdown__option{
        min-height:36px;
    }

    .shopcore-dropdown__option-text{
        font-size:8.5px;
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width:620px){

    /*
    |--------------------------------------------------------------------------
    | Important:
    |
    | The mobile bottom nav is fixed.
    | This padding keeps the cards immediately above it without a large gap.
    |--------------------------------------------------------------------------
    */

    .shopcore-bundle-page{
        padding:11px 7px calc(76px + env(safe-area-inset-bottom));
    }

    .shopcore-bundle-shell{
        width:100%;
    }

    /*
    |--------------------------------------------------------------------------
    | Heading
    |--------------------------------------------------------------------------
    */

    .shopcore-bundle-heading{
        min-height:112px;
        padding:16px 14px;
        border-radius:14px;
    }

    .shopcore-bundle-heading__eyebrow{
        margin-bottom:7px;
        font-size:7px;
    }

    .shopcore-bundle-heading h1{
        font-size:21px;
    }

    .shopcore-bundle-heading p{
        max-width:92%;
        margin-top:7px;
        font-size:8px;
        line-height:1.5;
    }

    .shopcore-bundle-heading__art{
        top:-86px;
        right:-80px;
        opacity:.7;
    }

    /*
    |--------------------------------------------------------------------------
    | Networks
    |--------------------------------------------------------------------------
    */

    .shopcore-network-bar{
        margin-top:11px;
    }

    .shopcore-network-tabs{
        gap:6px;
        padding-bottom:3px;
    }

    .shopcore-network-tab{
        min-height:38px;
        padding:4px 9px 4px 4px;
        gap:6px;
    }

    .shopcore-network-tab__icon{
        width:29px;
        height:29px;
        flex-basis:29px;
        padding:2px;
    }

    .shopcore-network-tab__copy strong{
        max-width:120px;
        font-size:8px;
    }

    /*
    |--------------------------------------------------------------------------
    | Toolbar
    |--------------------------------------------------------------------------
    */

    .shopcore-bundle-toolbar{
        margin-top:8px;
        padding:6px;
        gap:5px;
        border-radius:11px;
    }

    .shopcore-bundle-search{
        height:38px;
        border-radius:8px;
    }

    .shopcore-toolbar-icon{
        width:34px;
        flex-basis:34px;
    }

    .shopcore-toolbar-icon svg{
        width:13px;
        height:13px;
    }

    .shopcore-bundle-search input{
        font-size:8px;
    }

    /*
    |--------------------------------------------------------------------------
    | Dropdowns
    |--------------------------------------------------------------------------
    */

    .shopcore-dropdown{
        width:100%;
        height:38px;
    }

    .shopcore-dropdown__trigger{
        height:38px;
        padding:0 7px;
        grid-template-columns:23px minmax(0,1fr) 18px;
        gap:4px;
        border-radius:8px;
    }

    .shopcore-dropdown__leading{
        width:23px;
        height:23px;
        border-radius:6px;
    }

    .shopcore-dropdown__leading svg{
        width:11px;
        height:11px;
    }

    .shopcore-dropdown__value{
        font-size:7.5px;
    }

    .shopcore-dropdown__chevron{
        width:18px;
        height:18px;
    }

    .shopcore-dropdown__chevron svg{
        width:11px;
        height:11px;
    }

    .shopcore-dropdown__menu{
        top:calc(100% + 5px);
        width:max(100%,175px);
        max-height:245px;
        padding:5px;
        border-radius:10px;
    }

    .shopcore-dropdown__option{
        min-height:34px;
        padding:0 7px;
        border-radius:7px;
    }

    .shopcore-dropdown__option-text{
        font-size:7.8px;
    }

    .shopcore-dropdown__check{
        width:18px;
        height:18px;
        flex-basis:18px;
    }

    /*
    |--------------------------------------------------------------------------
    | Three Cards Per Row
    |--------------------------------------------------------------------------
    */

    .shopcore-bundle-grid{
        margin-top:8px;
        margin-bottom:0;
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:6px;
    }

    .shopcore-bundle-card{
        border-radius:10px;
    }

    .shopcore-bundle-card__top{
        min-height:45px;
        padding:5px;
    }

    .shopcore-bundle-card__brand{
        width:25px;
        height:25px;
        border-radius:6px;
    }

    .shopcore-bundle-card-mtn .shopcore-bundle-card__brand{
        width:29px;
        height:21px;
    }

    .shopcore-bundle-card-at .shopcore-bundle-card__brand{
        width:26px;
        height:26px;
    }

    .shopcore-bundle-card-at .shopcore-bundle-card__top::before{
        background:
            radial-gradient(
                ellipse 45px 30px at 18% 105%,
                #f43345 0 69%,
                transparent 70%
            ),
            radial-gradient(
                ellipse 45px 30px at 82% 105%,
                #f43345 0 69%,
                transparent 70%
            ),
            linear-gradient(
                to bottom,
                transparent 0 66%,
                #f43345 66% 100%
            );
    }

    .shopcore-bundle-card-at .shopcore-bundle-card__top::after{
        width:39px;
        height:21px;
        border-radius:0 0 23px 23px;
    }

    .shopcore-bundle-card__body{
        min-height:92px;
        padding:6px 4px 4px;
    }

    .shopcore-bundle-card__body h3{
        font-size:16px;
    }

    .shopcore-bundle-card__body > p{
        margin:4px 0 6px;
        font-size:9px;
    }

    .shopcore-bundle-card__button{
        min-height:25px;
        padding:0 3px 0 5px;
        border-radius:6px;
        gap:3px;
        font-size:6.5px;
    }

    .shopcore-bundle-card__button-icon{
        width:17px;
        height:17px;
        flex-basis:17px;
    }

    .shopcore-bundle-card__button-icon svg{
        width:8px;
        height:8px;
    }

    .shopcore-bundle-card__meta{
        margin-top:4px;
    }

    .shopcore-bundle-card__meta > span,
    .shopcore-bundle-card__meta small{
        font-size:4.5px;
    }

    .shopcore-bundle-card__meta small > span{
        width:4px;
        height:4px;
        flex-basis:4px;
    }

    /*
    |--------------------------------------------------------------------------
    | Remove Extra Space Below Final Cards
    |--------------------------------------------------------------------------
    */

    .shopcore-bundle-grid:last-child{
        margin-bottom:0;
    }

    .shopcore-bundle-empty{
        min-height:190px;
        padding-bottom:10px;
    }
}

/*
|--------------------------------------------------------------------------
| Small Mobile
|--------------------------------------------------------------------------
*/

@media (max-width:420px){

    .shopcore-bundle-page{
        padding:
            9px
            5px
            calc(73px + env(safe-area-inset-bottom));
    }

    .shopcore-bundle-grid{
        margin-bottom:0;
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:5px;
    }

    .shopcore-bundle-card__top{
        min-height:42px;
    }

    .shopcore-bundle-card__body{
        min-height:87px;
        padding:5px 3px 4px;
    }

    .shopcore-bundle-card__body h3{
        font-size:15px;
    }

    .shopcore-bundle-card__body > p{
        font-size:8px;
    }

    .shopcore-bundle-card__button{
        min-height:23px;
        padding-left:5px;
        font-size:6px;
    }

    .shopcore-bundle-card__button-icon{
        width:16px;
        height:16px;
        flex-basis:16px;
    }

    .shopcore-bundle-card__meta > span{
        display:none;
    }

    .shopcore-bundle-card__meta{
        justify-content:flex-end;
    }

    .shopcore-bundle-card__meta small{
        font-size:4.25px;
    }
}

/*
|--------------------------------------------------------------------------
| Very Small Mobile
|--------------------------------------------------------------------------
*/

@media (max-width:350px){

    .shopcore-bundle-page{
        padding:
            8px
            4px
            calc(72px + env(safe-area-inset-bottom));
    }

    .shopcore-bundle-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
        gap:4px;
    }

    .shopcore-bundle-card__body h3{
        font-size:14px;
    }

    .shopcore-bundle-card__body > p{
        font-size:7.5px;
    }

    .shopcore-bundle-card__button{
        font-size:5.5px;
    }
}

/*
|--------------------------------------------------------------------------
| Reduced Motion
|--------------------------------------------------------------------------
*/

@media (prefers-reduced-motion:reduce){

    .shopcore-network-tab,
    .shopcore-bundle-card,
    .shopcore-dropdown__trigger,
    .shopcore-dropdown__menu,
    .shopcore-dropdown__chevron,
    .shopcore-dropdown__check{
        transition:none;
    }
}