#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: #f5f5f5;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 95%;
}

.toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    text-align: left;
}

.toggle-option span {
    display: block;
}

.toggle-option .icon {
    font-size: 20px;
    margin-right: 10px;
    color: #333;
}


.toggle-option .content .time2 {
    font-size: 12px;
    /* color: #ffffff; */
}

.toggle-option.active {
    background: white;
    color: #333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.toggle-option:not(.active) {
    color: #999;
}

.toggle-option:first-child {
    border-radius: 25px 0 0 25px;
}

.toggle-option:last-child {
    border-radius: 0 25px 25px 0;
}

#BasketLoader {
    display: flex;
    flex-direction: column !important;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f9f9f9;
}

.basket-card {
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    max-width: 420px;
    margin: auto;
    overflow: hidden;
}

.basket-header {
    background: #219ebc;
    color: #fff;
    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 #eee;
    padding: 14px 0;
}

.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: #023047;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat';
}

.item-header .price {
    font-size: 16px;
    font-weight: bold;
    color: #023047;
}

.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: #f0f0f0;
    color: #023047;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-size: 14px;
}

.item .controls button.plus:hover {
    background: #FB8500;
    color: #fff;
}

.item .controls button.minus:hover {
    background: #FFB703;
    color: #fff;
}

.item .controls .qty {
    min-width: 28px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #219ebc;
}

.extras {
    margin-top: 8px;
    color: #555;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.extras i {
    color: #219ebc;
    margin-right: 6px;
}

/* Delivery/Collection Toggle */
.deliveryTimes {
    text-align: center;
    margin: 10px 20px;
}

.deliveryTimes #openMessage {
    font-weight: 600;
    color: #023047;
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.delivery-toggle {
    background-color: #efedea;
    border-radius: 50rem;
    display: flex;
    height: 50px;
    justify-content: space-around;
    padding: 3px;
    gap: 4px;
}

.toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50rem;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding: 4px 8px;
}

.toggle-option .icon i {
    font-size: 18px;
    color: #555;
}

.toggle-option.active {
    background-color: #219ebc;
    color: #fff !important;
}

.toggle-option.active .icon i {
    color: #fff;
}

.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: #f5faff;
    border-top: 1px solid #e0e0e0;
    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;
    margin-bottom: 10px;
    font-size: 15px;
    color: #023047;
}

.totals .row i {
    margin-right: 6px;
    color: #219ebc;
}

.totals .total {
    font-size: 18px;
    font-weight: bold;
    color: #023047;
    margin-top: 10px;
}

.checkout-btn {
    width: 100%;
    background: #FB8500;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}

.checkout-btn:hover {
    background: #ff9e40;
}


.keep-shopping {
    display: none;
}

@media (max-width: 768px) {
    .keep-shopping {
        display: block;
        text-align: center;
        padding: 12px 20px;
        background: #fff;
        border-top: 1px solid #eee;
    }
}

.keep-shopping a {
    color: #023047;
    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: #FB8500;
}

.edit-btn {
    background: #219ebc;
    color: #fff;
    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: all 0.25s ease;
}

.edit-btn i {
    font-size: 13px;
}

.edit-btn:hover {
    background: #FB8500;
}

.extras div {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #555;
}

.extras i {
    color: #219ebc;
    font-size: 13px;
}

.basket-offer-progress {
    background: #f7faff;
    padding: 12px 14px;
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
}

.offer-text {
    font-size: 14px;
    margin-bottom: 6px;
    color: #023047;
}

.offer-bar {
    width: 100%;
    height: 8px;
    background: #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
}

.offer-bar-fill {
    height: 100%;
    background: #FB8500;
    border-radius: 50px;
    transition: width 0.3s ease;
}

.basket-address {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    border: 1px solid #e0e0e0;
}

.basket-address h4 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #023047;
}

.address-details {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.address-details i {
    color: #FB8500;
    font-size: 18px;
    margin-top: 3px;
}

.change-address {
    font-size: 13px;
    color: #219ebc;
    cursor: pointer;
    text-decoration: underline;
}

.basket-gifts {
    background: #fff8e6;
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 14px;
    border: 1px solid #ffdf99;
}

.gift-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gift-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #f0e2b6;
    padding: 8px;
    flex: 1;
    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: #0ea56a;
    font-weight: bold;
}

.remove {
    color: #e63946; /* red */
    cursor: pointer;
    display: inline-block;
    padding: 5px;
    transition: color 0.2s ease;
}

.remove:hover {
    color: #b30000; /* darker red on hover */
}
.basket-crosssale h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #023047;
}

.basket-crosssale {
    background: #f7faff;
    border: 1px solid #e0e0e0;
    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: 0;
    font-size: 16px;
    color: #023047;
}

.nav-buttons {
    display: flex;
    gap: 6px;
}

.scroll-btn {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    color: #023047;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, color .25s;
}

.scroll-btn:hover {
    background: #FB8500;
    color: #fff;
}

.crosssale-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.crosssale-carousel::-webkit-scrollbar {
    display: none;
}

.cross-item {
    background: #fff;
    border: 1px solid #eee;
    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 .2s;
}

.cross-item:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.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: #023047;
}

.cross-desc {
    font-size: 13px;
    color: #666;
    margin: 2px 0 4px;
}

.cross-price {
    font-weight: 700;
    color: #023047;
    margin-bottom: 6px;
}

.cross-add {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: #fff;
    color: #FB8500;
    cursor: pointer;
    transition: background .25s, color .25s;
}

.cross-add:hover {
    background: #FB8500;
    color: #fff;
}

.checkout-btn:hover {
    background: #ff9e40;
}

.payment-trust {
    text-align: center;
    background: #fff;
    padding: 12px 0 16px;
}

.payment-trust img {
    width: 45px;
    margin: 0 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: #4a4a4a;
}

.icon-box svg {
    width: 64px;
    height: 64px;
    stroke-width: 2.5;
}

h2.title {
    font-size: 24px;
    font-weight: 800;
    color: #333333;
    margin: 0 0 8px 0;
}

p.subtitle {
    font-size: 16px;
    color: #888888;
    margin: 0;
    font-weight: 400;
}
.right-basket-bar-top {
    position: absolute;
    right: 0;
    height: 100vh;
    overflow-y: auto;
}

.right-basket-bar-top.is-fixed {
    padding-left: 0;
    position: fixed;
    top: 0;
    z-index: 1;
}
