.right-basket-bar-top {
    position: fixed;
    top: 80px;
    right: 0;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    z-index: 2;
    overflow: hidden;
}

#addressselect {
    min-height: 50px !important;
}

.sa-button-container {
    width: 100% !important;
}

.cc-banner.cc-bottom {
    bottom: 86px !important;
}

.cc-color-override-906747955 .cc-btn {
    color: rgb(15, 15, 15);
    border-color: transparent;
    background-color: rgb(97, 192, 21) !important;
}

.toggle-container {
    display: flex;
    background: rgb(245, 245, 245);
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
    overflow: hidden;
    width: 95%;
}

.toggle-option {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    position: relative;
    text-align: left;
}

.toggle-option span {
    display: block;
}

.toggle-option .icon {
    font-size: 20px;
    margin-right: 10px;
    color: rgb(51, 51, 51);
}

.toggle-option .content .time2 {
    font-size: 12px;
}

.toggle-option.active {
    background: white;
    color: rgb(51, 51, 51);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
}

.toggle-option:not(.active) {
    color: rgb(153, 153, 153);
}

.toggle-option:first-child {
    border-radius: 25px 0px 0px 25px;
}

.toggle-option:last-child {
    border-radius: 0px 25px 25px 0px;
}

#BasketLoader {
    display: flex;
    flex-direction: column !important;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: rgb(249, 249, 249);
}



.basket-header {
    padding: 20px 20px 15px 20px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}
.basket-header span {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 10px;
}
.basket-header i {
    font-size: 20px;
    cursor: pointer;
    color:#1F2937;
}
.basket-scroll-area{

    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f9fafb;

}

.basket-items {
    padding: 15px 20px;
}

.item {
    border-bottom: 1px solid rgb(238, 238, 238);
    padding: 14px 0px;
}

.item:last-child {
    border-bottom: none;
}

.item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-header .title {
    font-size: 15px;
    font-weight: 600;
    color: rgb(2, 48, 71);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "SN Pro";
}

.item-header .price {
    font-size: 16px;
    font-weight: bold;
    color: rgb(2, 48, 71);
}

.item .controls {
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.item .controls button {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: rgb(240, 240, 240);
    color: rgb(2, 48, 71);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-size: 14px;
}

.item .controls button.plus:hover {
    background: #ff6459;
    color: rgb(255, 255, 255);
}

.item .controls button.minus:hover {
    background: #ff8078;
    color: rgb(255, 255, 255);
}

.item .controls .qty {
    min-width: 28px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #ff6459;
}


.deliveryTimes {
    text-align: center;
    padding: 14px;
}

.deliveryTimes #openMessage {
    font-weight: 600;
    color: rgb(2, 48, 71);
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.delivery-toggle {
    background-color: rgb(239, 237, 234);
    border-radius: 9rem;
    display: flex;
    justify-content: space-around;

    gap: 4px;
}

.toggle-option {
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50rem;
    cursor: pointer;
    transition: 0.25s;
    color: rgb(85, 85, 85);
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
    border: 1px solid black;
}

.toggle-option .icon i {
    font-size: 18px;
    color: rgb(85, 85, 85);
}

.toggle-option.active {
    background-color: #ff6459;
    color: rgb(255, 255, 255) !important;
}

.toggle-option.active .icon i {
    color: rgb(255, 255, 255);
}

.toggle-option .content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.toggle-option .text2 {
    font-weight: 600;
    font-size: 14px;
}

.toggle-option .time2 {
    font-size: 12px;
    color: inherit;
}

.totals {
    padding: 5px;
    background: rgb(255, 255, 255);
    border-top: 1px solid rgb(234, 234, 234);
    margin: auto;
    max-width: 100%;
    width: 90%;
    font-family: "SN Pro";
    margin-top: 10px;




    & #addressselect {
        min-height: 50px !important;
    }

    & .sa-button-container {
        width: 100% !important;
    }

    & .cc-banner.cc-bottom {
        bottom: 86px !important;
    }

    & .cc-color-override-906747955 .cc-btn {
        color: rgb(15, 15, 15);
        border-color: transparent;
        background-color: rgb(97, 192, 21) !important;
    }

    & .toggle-container {
        display: flex;
        background: rgb(245, 245, 245);
        border-radius: 25px;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px;
        overflow: hidden;
        width: 95%;
    }

    & .toggle-option {
        flex: 1 1 0%;
        display: flex;
        align-items: center;
        padding: 10px 15px;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
        position: relative;
        text-align: left;
    }

    & .toggle-option span {
        display: block;
    }

    & .toggle-option .icon {
        font-size: 20px;
        margin-right: 10px;
        color: rgb(51, 51, 51);
    }

    & .toggle-option .content .time2 {
        font-size: 12px;
    }

    & .toggle-option.active {
        background: white;
        color: rgb(51, 51, 51);
        box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 5px;
    }

    & .toggle-option:not(.active) {
        color: rgb(153, 153, 153);
    }

    & #BasketLoader {
        display: flex;
        flex-direction: column !important;
    }

    & body {
        font-family: "Segoe UI", Arial, sans-serif;
        background: rgb(249, 249, 249);
    }

    & .basket-card {
        background: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 18px;
        max-width: 420px;
        margin: auto;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }


    & .basket-header {
        background: #ff6459;
        color: rgb(255, 255, 255);
        padding: 16px 20px;
        font-size: 20px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    & .basket-header i {
        font-size: 20px;
        cursor: pointer;
    }

    & .basket-items {
        padding: 0px 10px;
    }

    & .item {
        border-bottom: 1px solid rgb(238, 238, 238);
        padding: 14px 0px;
    }

    & .item-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    & .item-header .title {
        font-size: 15px;
        font-weight: 600;
        color: rgb(2, 48, 71);
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: "SN Pro";
    }

    & .item-header .price {
        font-size: 16px;
        font-weight: bold;
        color: rgb(2, 48, 71);
    }

    & .item .controls {
        margin-top: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    & .item .controls button {
        width: 32px;
        height: 32px;
        border: none;
        border-radius: 50%;
        background: rgb(240, 240, 240);
        color: rgb(2, 48, 71);
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
        font-size: 14px;
    }

    & .item .controls button.plus:hover {
        background: #ff6459;
        color: rgb(255, 255, 255);
    }

    & .item .controls button.minus:hover {
        background: #ff8078;
        color: rgb(255, 255, 255);
    }

    & .item .controls .qty {
        min-width: 28px;
        text-align: center;
        font-size: 15px;
        font-weight: 500;
        color: #ff6459;
    }

    & .extras {
        margin-top: 8px;
        color: rgb(85, 85, 85);
        font-size: 14px;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    & .extras i {
        color: #3B82F6;
        margin-right: 6px;
    }

    & .deliveryTimes {
        text-align: center;
    }

    & .deliveryTimes #openMessage {
        font-weight: 600;
        color: rgb(2, 48, 71);
        display: block;
        margin-bottom: 8px;
        font-size: 15px;
    }

    & .delivery-toggle {
        background-color: rgb(239, 237, 234);
        border-radius: 50rem;
        display: flex;
        height: 50px;
        justify-content: space-around;
        padding: 3px;
        gap: 4px;
    }

    & .toggle-option {
        flex: 1 1 0%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        border-radius: 50rem;
        cursor: pointer;
        transition: 0.25s;
        color: rgb(85, 85, 85);
        font-size: 14px;
        font-weight: 500;
        padding: 4px 8px;
    }

    & .toggle-option .icon i {
        font-size: 18px;
        color: rgb(85, 85, 85);
    }

    & .toggle-option.active {
        background-color: #ff6459;
        color: rgb(255, 255, 255) !important;
    }

    & .toggle-option.active .icon i {
        color: rgb(255, 255, 255);
    }

    & .toggle-option .content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.1;
    }

    & .toggle-option .text2 {
        font-weight: 600;
        font-size: 14px;
    }

    & .toggle-option .time2 {
        font-size: 12px;
        color: inherit;
    }

    & .totals {
        padding: 16px 20px;
        background: rgb(245, 250, 255);
        border-top: 1px solid rgb(224, 224, 224);
        margin: auto;
        max-width: 100%;
        width: 100%;
    }

    & .checkout-btn {
        margin: auto;
        max-width: 420px;
    }

    & .totals .row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
        color: rgb(2, 48, 71);
    }

    & .totals .row i {
        margin-right: 6px;
        color: #ff6459;
    }

    & .totals .total {
        font-size: 18px;
        font-weight: bold;
        color: rgb(2, 48, 71);
        margin-top: 10px;
    }

    & .checkout-btn {
        width: 100%;
        background: #ff6459;
        color: rgb(255, 255, 255);
        text-align: center;
        padding: 16px;
        font-size: 18px;
        font-weight: 600;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: background 0.2s;
    }

    & .keep-shopping {
        display: none;
    }

    @media (max-width: 768px) {
        & .keep-shopping {
            display: block;
        }

        & .basket-header {
            padding: 0px 10px !important;
            justify-content: space-between !important;
        }
    }

    & .keep-shopping a {
        color: rgb(2, 48, 71);
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: color 0.25s;
    }

    & .keep-shopping a:hover {
        color: #ff6459;
    }

    & .edit-btn {
        background: #d63232;
        color: rgb(255, 255, 255);
        border: none;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        padding: 6px 12px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: 0.25s;
    }

    & .edit-btn i {
        font-size: 13px;
    }

    & .extras div {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: rgb(85, 85, 85);
    }

    & .extras i {
        color: #3B82F6;
        font-size: 13px;
    }

    & .basket-offer-progress {
        background: rgb(247, 250, 255);
        padding: 12px 14px;
        margin-bottom: 12px;
        border: 1px solid rgb(224, 224, 224);
    }

    & .offer-text {
        font-size: 14px;
        margin-bottom: 6px;
        color: rgb(2, 48, 71);
    }

    & .offer-bar {
        width: 100%;
        height: 8px;
        background: rgb(224, 224, 224);
        border-radius: 50px;
        overflow: hidden;
    }

    & .offer-bar-fill {
        height: 100%;
        background: #ff6459;
        border-radius: 50px;
        transition: width 0.3s;
    }

    & .basket-address {
        background: rgb(248, 249, 250);
        border-radius: 10px;
        padding: 10px 14px;
        margin-bottom: 14px;
        border: 1px solid rgb(224, 224, 224);
    }

    & .basket-address h4 {
        font-size: 15px;
        margin-bottom: 6px;
        color: rgb(2, 48, 71);
    }

    & .address-details {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    & .address-details i {
        color: #ff6459;
        font-size: 18px;
        margin-top: 3px;
    }

    & .change-address {
        font-size: 13px;
        color: #ff6459;
        cursor: pointer;
        text-decoration: underline;
    }

    & .basket-gifts {
        background: rgb(255, 248, 230);
        border-radius: 10px;
        padding: 10px 14px;
        margin-bottom: 14px;
        border: 1px solid rgb(255, 223, 153);
    }

    & .gift-items {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    & .gift-item {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgb(255, 255, 255);
        border-radius: 8px;
        border: 1px solid rgb(240, 226, 182);
        padding: 8px;
        flex: 1 1 0%;
        min-width: 45%;
    }

    & .gift-item img {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        object-fit: cover;
    }

    & .gift-name {
        font-size: 13px;
        font-weight: 600;
    }

    & .gift-tag {
        font-size: 12px;
        color: rgb(14, 165, 106);
        font-weight: bold;
    }

    & .remove {
        color: rgb(230, 57, 70);
        cursor: pointer;
        display: inline-block;
        padding: 5px;
        transition: color 0.2s;
    }

    & .basket-crosssale h4 {
        margin-bottom: 10px;
        font-size: 16px;
        color: rgb(2, 48, 71);
    }

    & .basket-crosssale {
        background: rgb(247, 250, 255);
        border: 1px solid rgb(224, 224, 224);
        padding: 10px;
        margin: 0px 20px 15px;
        overflow: hidden;
    }

    & .crosssale-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }

    & .crosssale-header h4 {
        margin: 0px;
        font-size: 16px;
        color: rgb(2, 48, 71);
    }

    & .nav-buttons {
        display: flex;
        gap: 6px;
    }

    & .scroll-btn {
        width: 28px;
        height: 28px;
        border: none;
        border-radius: 50%;
        background: rgb(255, 255, 255);
        box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 4px;
        color: rgb(2, 48, 71);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.25s, color 0.25s;
    }

    & .crosssale-carousel {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

    & .cross-item {
        background: rgb(255, 255, 255);
        border: 1px solid rgb(238, 238, 238);
        border-radius: 12px;
        min-width: 180px;
        flex: 0 0 auto;
        padding: 14px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        transition: box-shadow 0.2s;
    }

    & .cross-item img {
        width: 100%;
        height: 100px;
        object-fit: fill;
        border-radius: 10px;
        margin-bottom: 6px;
    }

    & .cross-name {
        font-weight: 600;
        font-size: 15px;
        color: rgb(2, 48, 71);
    }

    & .cross-desc {
        font-size: 13px;
        color: rgb(102, 102, 102);
        margin: 2px 0px 4px;
    }

    & .cross-price {
        font-weight: 700;
        color: rgb(2, 48, 71);
        margin-bottom: 6px;
    }

    & .cross-add {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 30px;
        height: 30px;
        border: 1px solid rgb(204, 204, 204);
        border-radius: 50%;
        background: rgb(255, 255, 255);
        color: #ff6459;
        cursor: pointer;
        transition: background 0.25s, color 0.25s;
    }

    & .payment-trust {
        text-align: center;
        background: rgb(255, 255, 255);
        padding: 12px 0px 16px;
    }



    & .empty-state-container {
        text-align: center;
        max-width: 100%;
        padding-top: 100px;
        padding-bottom: 100px;
    }

    & .icon-box {
        margin-bottom: 20px;
        color: rgb(74, 74, 74);
    }

    & .icon-box svg {
        width: 64px;
        height: 64px;
        stroke-width: 2.5;
    }

    & h2.title {
        font-size: 24px;
        font-weight: 800;
        color: rgb(51, 51, 51);
        margin: 0px 0px 8px;
    }

    & p.subtitle {
        font-size: 16px;
        color: rgb(136, 136, 136);
        margin: 0px;
        font-weight: 400;
    }

    & .right-basket-bar-top {
        position: absolute;
        right: 0px;
        height: 100vh;
        overflow-y: auto;
    }

    & .right-basket-bar-top.is-fixed {
        padding-left: 0px;
        position: fixed;
        top: 0px;
        z-index: 1;
    }
}

.checkout-btn {
    margin: auto;
    max-width: 420px;
}

.totals .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 15px;
    color: rgb(2, 48, 71);
}



.totals .total {
    font-size: 18px;
    font-weight: bold;

    margin-top: 10px;
}

.checkout-btn {
    width: 80%;
    background: #ff6459;
    color: rgb(255, 255, 255);
    font-family: "SN Pro";
    text-align: center;
    padding: 16px;
    font-size: 18px;
    font-weight: 900;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
    border-radius: 10px !important;
    margin: 10px;
    width: 93%;
}
.swal2-styled.swal2-confirm{
    background-color: #ff6459;
    font-size: 15px;
}
.swal2-styled.swal2-cancel{
    font-size: 15px;
}
.checkout-btn:hover {
    background: #ffa09a;
}

.keep-shopping {
    display: none;
}

@media (max-width: 768px) {
    .keep-shopping {
        display: block;
        text-align: center;
        background: rgb(255, 255, 255);
        border-top: 1px solid rgb(238, 238, 238);
    }

    .basket-header {
        padding: 0px 10px !important;
        justify-content: space-between !important;
    }
}

.keep-shopping a {
    color: rgb(2, 48, 71);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s;
    font-size: 25px !important;
}

.keep-shopping a:hover {
    color: #ff6459;
}

.edit-btn {
    background: #d63232;
    color: rgb(255, 255, 255);
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.25s;
}

.edit-btn:hover {
    background: #ff6459;
}

.extras div {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgb(85, 85, 85);
}

.extras i {
    color: #3B82F6;
    font-size: 13px;
}

.basket-offer-progress {
    background: rgb(247, 250, 255);
    padding: 12px 14px;
    margin-top: 10px;
    /* border: 1px solid rgb(224, 224, 224); */
}

.offer-text {
    font-size: 14px;
    margin-bottom: 6px;
    color: rgb(2, 48, 71);
}

.offer-bar {
    width: 100%;
    height: 8px;
    background: rgb(224, 224, 224);
    border-radius: 50px;
    overflow: hidden;
}

.offer-bar-fill {
    height: 100%;
    background: #ff6459;
    border-radius: 50px;
    transition: width 0.3s;
}

.basket-address {
    background: rgb(248, 249, 250);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    /* border: 1px solid rgb(224, 224, 224); */
    margin-top: 10px;
    overflow: scroll;
}

.basket-address h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: rgb(2, 48, 71);
}

.address-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.address-details i {
    color: #ff6459;
    font-size: 18px;
    margin-top: 3px;
}

.change-address {
    font-size: 13px;
    color: #ff6459;
    cursor: pointer;
    text-decoration: underline;
}

.basket-gifts {
    background: rgb(255, 248, 230);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 0px;
    border: 1px solid rgb(255, 223, 153);
}

.gift-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gift-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgb(255, 255, 255);
    border-radius: 8px;
    border: 1px solid rgb(240, 226, 182);
    padding: 8px;
    flex: 1 1 0%;
    min-width: 45%;
}

.gift-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.gift-name {
    font-size: 13px;
    font-weight: 600;
}

.gift-tag {
    font-size: 12px;
    color: rgb(14, 165, 106);
    font-weight: bold;
}

.remove {
    color: rgb(230, 57, 70);
    cursor: pointer;
    display: inline-block;
    padding: 5px;
    transition: color 0.2s;
}

.remove:hover {
    color: rgb(179, 0, 0);
}

.basket-crosssale h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: rgb(2, 48, 71);
}



.crosssale-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.crosssale-header h4 {
    margin: 0px;
    font-size: 16px;
    color: rgb(2, 48, 71);
}

.nav-buttons {
    display: flex;
    gap: 6px;
}

.scroll-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 4px;
    color: rgb(2, 48, 71);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s;
}

.scroll-btn:hover {
    background: #ff6459;
    color: rgb(255, 255, 255);
}

.crosssale-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.crosssale-carousel::-webkit-scrollbar {
    display: none;
}

.cross-item {
    background: rgb(255, 255, 255);
    border: 1px solid rgb(238, 238, 238);
    border-radius: 12px;
    min-width: 180px;
    flex: 0 0 auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    transition: box-shadow 0.2s;
}

.cross-item:hover {
    box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 6px;
}

.cross-item img {
    width: 100%;
    height: 100px;
    object-fit: fill;
    border-radius: 10px;
    margin-bottom: 6px;
}

.cross-name {
    font-weight: 600;
    font-size: 15px;
    color: rgb(2, 48, 71);
}

.cross-desc {
    font-size: 13px;
    color: rgb(102, 102, 102);
    margin: 2px 0px 4px;
}

.cross-price {
    font-weight: 700;
    color: rgb(2, 48, 71);
    margin-bottom: 6px;
}

.cross-add {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border: 1px solid rgb(204, 204, 204);
    border-radius: 50%;
    background: rgb(255, 255, 255);
    color: #ff6459;
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
}

.cross-add:hover {
    background: #ff6459;
    color: rgb(255, 255, 255);
}

.checkout-btn:hover {
    background: #ffa09a;
}

.payment-trust {
    text-align: center;
    background: rgb(255, 255, 255);
    padding: 5px 0px 0px;
}

.payment-trust img {
    width: 45px;
    margin: 0px 6px;
    vertical-align: middle;
}

.empty-state-container {
    text-align: center;
    max-width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}

.icon-box {
    margin-bottom: 20px;
    color: rgb(74, 74, 74);
}

.icon-box svg {
    width: 64px;
    height: 64px;
    stroke-width: 2.5;
}

h2.title {
    font-size: 24px;
    font-weight: 800;
    color: rgb(51, 51, 51);
    margin: 0px 0px 8px;
}

p.subtitle {
    font-size: 16px;
    color: rgb(136, 136, 136);
    margin: 0px;
    font-weight: 400;
}


.right-basket-bar-top.is-fixed {
    padding-left: 0px;
    position: fixed;
    top: 0px;
    z-index: 9;
    box-shadow: 0px 12px 11px -6px rgba(0,0,0,0.35);
}
