.cart-page {
            padding: 55px 0 80px;
            background: #f8faf8;
        }
        .cart-page-title {
            margin-bottom: 30px;
        }
        .cart-page-title h1 {
            font-size: 32px;
            font-weight: 800;
            color: #17251c;
            margin-bottom: 7px;
        }
        .cart-page-title p {
            color: #64748b;
            font-size: 14px;
            margin: 0;
        }
        .cart-box {
            background: #fff;
            border: 1px solid #e5ebe6;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(20, 70, 35, .06);
        }
        .cart-header {
            padding: 17px 22px;
            border-bottom: 1px solid #edf1ee;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .cart-header-title {
            font-size: 16px;
            font-weight: 800;
            color: #1e293b;
        }
        .cart-header-count {
            font-size: 12px;
            color: #0b5d2a;
            background: #edf7ef;
            border: 1px solid #d8ecdc;
            border-radius: 20px;
            padding: 6px 11px;
            font-weight: 700;
        }
        .cart-item {
            padding: 20px 22px;
            border-bottom: 1px solid #edf1ee;
            display: grid;
            grid-template-columns: 95px minmax(0, 1fr) auto;
            gap: 18px;
            align-items: center;
        }
        .cart-item:last-child {
            border-bottom: 0;
        }
        .cart-product-image {
            width: 95px;
            height: 95px;
            border-radius: 13px;
            background: #f6faf6;
            border: 1px solid #e7eee8;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .cart-product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 7px;
        }
        .cart-product-info {
            min-width: 0;
        }
        .cart-product-name {
            display: block;
            color: #17251c;
            font-size: 16px;
            line-height: 1.35;
            font-weight: 800;
            text-decoration: none;
            margin-bottom: 7px;
        }
        .cart-product-name:hover {
            color: #0b5d2a;
        }
        .cart-product-sku {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            color: #64748b;
            font-size: 11px;
            margin-bottom: 10px;
        }
        .cart-product-price {
            color: #0b5d2a;
            font-size: 15px;
            font-weight: 800;
        }
        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 22px;
        }
        .cart-qty {
            display: flex;
            align-items: center;
            height: 40px;
            border: 1px solid #d9e2db;
            border-radius: 9px;
            overflow: hidden;
            background: #fff;
        }
        .cart-qty button {
            width: 36px;
            height: 100%;
            border: 0;
            background: #f5f8f5;
            color: #0b5d2a;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: .2s;
        }
        .cart-qty button:hover {
            background: #eaf4ec;
        }
        .cart-qty input {
            width: 42px;
            height: 100%;
            border: 0;
            border-left: 1px solid #e0e7e1;
            border-right: 1px solid #e0e7e1;
            text-align: center;
            font-size: 13px;
            font-weight: 800;
            color: #17251c;
            outline: none;
        }
        .cart-item-total {
            min-width: 105px;
            text-align: right;
        }
        .cart-item-total small {
            display: block;
            color: #94a3b8;
            font-size: 10px;
            margin-bottom: 3px;
        }
        .cart-item-total strong {
            color: #17251c;
            font-size: 17px;
            font-weight: 850;
        }
        .cart-remove {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            border: 1px solid #f0d8d5;
            background: #fff;
            color: #c0392b;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: .2s;
        }
        .cart-remove:hover {
            background: #fff3f2;
            border-color: #e7b8b3;
        }
        .summary-box {
            background: #fff;
            border: 1px solid #e5ebe6;
            border-radius: 18px;
            padding: 22px;
            box-shadow: 0 8px 30px rgba(20, 70, 35, .06);
            position: sticky;
            top: 90px;
        }

        .summary-title {
            font-size: 18px;
            font-weight: 850;
            color: #17251c;
            margin-bottom: 20px;
        }

        .summary-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            padding: 9px 0;
            color: #64748b;
            font-size: 13px;
        }

        .summary-row strong {
            color: #334155;
            font-weight: 700;
        }

        .summary-divider {
            border-top: 1px dashed #dce4de;
            margin: 9px 0;
        }

        .summary-total {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0 18px;
        }

        .summary-total span {
            color: #17251c;
            font-size: 16px;
            font-weight: 800;
        }

        .summary-total strong {
            color: #0b5d2a;
            font-size: 23px;
            font-weight: 900;
        }

        .checkout-btn {
            width: 100%;
            height: 50px;
            border: 0;
            border-radius: 10px;
            background: #0b5d2a;
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 9px;
            text-decoration: none;
            transition: .25s;
        }

        .checkout-btn:hover {
            background: #08491f;
            color: #fff;
            transform: translateY(-1px);
        }

        .continue-btn {
            width: 100%;
            height: 45px;
            margin-top: 10px;
            border: 1px solid #0b5d2a;
            border-radius: 10px;
            background: #fff;
            color: #0b5d2a;
            font-size: 13px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
        }

        .continue-btn:hover {
            background: #edf7ef;
            color: #0b5d2a;
        }

        .secure-note {
            margin-top: 17px;
            padding: 11px;
            border-radius: 9px;
            background: #f6faf7;
            color: #64748b;
            text-align: center;
            font-size: 11px;
        }

        .secure-note i {
            color: #0b5d2a;
            margin-right: 4px;
        }

        /* =========================================================
           EMPTY CART
        ========================================================= */

        .empty-cart {
            background: #fff;
            border: 1px solid #e5ebe6;
            border-radius: 18px;
            padding: 65px 20px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(20, 70, 35, .05);
        }

        .empty-cart-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 18px;
            border-radius: 50%;
            background: #edf7ef;
            color: #0b5d2a;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 31px;
        }

        .empty-cart h2 {
            color: #17251c;
            font-size: 23px;
            font-weight: 850;
            margin-bottom: 8px;
        }

        .empty-cart p {
            color: #64748b;
            font-size: 13px;
            margin-bottom: 22px;
        }

        .empty-cart a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 45px;
            padding: 0 22px;
            background: #0b5d2a;
            color: #fff;
            border-radius: 9px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 800;
        }

        /* =========================================================
           RESPONSIVE
        ========================================================= */

        @media(max-width: 991px) {

            .summary-box {
                position: relative;
                top: auto;
                margin-top: 25px;
            }

        }

        @media(max-width: 767px) {

            .cart-page {
                padding: 35px 0 55px;
            }

            .cart-page-title h1 {
                font-size: 27px;
            }

            .cart-item {
                grid-template-columns: 75px minmax(0, 1fr);
                gap: 13px;
                padding: 16px;
            }

            .cart-product-image {
                width: 75px;
                height: 75px;
            }

            .cart-item-actions {
                grid-column: 1 / -1;
                width: 100%;
                justify-content: space-between;
                gap: 10px;
            }

            .cart-item-total {
                margin-left: auto;
            }

            .cart-product-name {
                font-size: 14px;
            }

            .cart-header {
                padding: 15px;
            }

            .summary-box {
                padding: 18px;
            }

        }

/* =========================================================
   CART MRP / DISCOUNT / SAVINGS
========================================================= */

.cart-list-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 125px 115px 105px 34px;
    gap: 18px;
    align-items: center;
    padding: 10px 22px;
    background: #f7faf8;
    border-bottom: 1px solid #edf1ee;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
}

.cart-list-head span:nth-child(2),
.cart-list-head span:nth-child(3),
.cart-list-head span:nth-child(4) {
    text-align: right;
}

.cart-item {
    grid-template-columns: 95px minmax(0, 1fr) auto !important;
}

.cart-product-price {
    margin-top: 2px;
}

.cart-mrp {
    color: #94a3b8;
    font-size: 11px;
    line-height: 1.25;
    margin-bottom: 2px;
}

.cart-mrp span {
    text-decoration: line-through;
}

.cart-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-price-row strong {
    color: #0b5d2a;
    font-size: 15px;
    font-weight: 850;
}

.cart-discount {
    display: inline-flex;
    align-items: center;
    padding: 3px 6px;
    border-radius: 5px;
    background: #fff1f1;
    border: 1px solid #ffd1d1;
    color: #d93025;
    font-size: 9px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.cart-saving-mobile {
    margin-top: 3px;
    color: #0b5d2a;
    font-size: 10px;
    font-weight: 700;
}

.cart-item-saving {
    min-width: 105px;
    text-align: right;
}

.cart-item-saving small {
    display: block;
    color: #94a3b8;
    font-size: 10px;
    margin-bottom: 2px;
}

.cart-item-saving strong {
    display: block;
    color: #0b5d2a;
    font-size: 16px;
    font-weight: 850;
}

.cart-item-saving span {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    margin-top: 1px;
}

.cart-item-saving .no-saving {
    font-size: 14px;
    color: #cbd5e1;
}

.summary-savings {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
    padding: 12px;
    border: 1px solid #dceee0;
    border-radius: 10px;
    background: #f1f9f3;
}

.summary-savings-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 8px;
    background: #e1f2e5;
    color: #0b5d2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.summary-savings-content {
    min-width: 0;
    flex: 1;
}

.summary-savings-content > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.summary-savings-content span {
    color: #0b5d2a;
    font-size: 12px;
    font-weight: 800;
}

.summary-savings-content strong {
    color: #0b5d2a;
    font-size: 17px;
    font-weight: 900;
}

.summary-savings-content small {
    display: block;
    margin-top: 2px;
    color: #718078;
    font-size: 9.5px;
    line-height: 1.35;
}

@media(max-width: 991px) {
    .cart-list-head {
        grid-template-columns: minmax(0, 1fr) 110px 105px 95px 34px;
    }

    .cart-item-actions {
        gap: 14px;
    }

    .cart-item-saving {
        min-width: 90px;
    }
}

@media(max-width: 767px) {

    .cart-list-head {
        display: none;
    }

    .cart-item {
        grid-template-columns: 75px minmax(0, 1fr) !important;
    }

    .cart-product-price {
        margin-top: 2px;
    }

    .cart-item-actions {
        grid-column: 1 / -1;
        width: 100%;
        display: grid !important;
        grid-template-columns: auto 1fr auto auto;
        align-items: center;
        gap: 10px;
    }

    .cart-item-total {
        min-width: 90px;
    }

    .cart-item-saving {
        min-width: 80px;
        text-align: right;
    }

    .cart-item-saving strong {
        font-size: 14px;
    }

    .cart-saving-mobile {
        font-size: 9px;
    }

    .summary-savings-content strong {
        font-size: 15px;
    }
}




.cart-address-section {
        margin-top: 14px
    }

    .cart-address-section .summary-savings-content {
        margin-bottom: 8px
    }

    .cart-address-section .summary-savings-content span {
        font-size: 12px;
        font-weight: 700;
        color: #0b5d2a
    }

    .cart-address-section .summary-savings-content small {
        font-size: 9px;
        color: #888
    }

    .cart-address-list {
        display: flex;
        flex-direction: column;
        gap: 6px
    }

    .cart-address-item {
        position: relative;
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin: 0;
        padding: 8px 9px;
        border: 1px solid #e1e7e3;
        border-radius: 9px;
        background: #fff;
        cursor: pointer
    }

    .cart-address-item.selected {
        border-color: #0b7a39;
        background: #f8fcf9
    }

    .cart-address-item input {
        display: none
    }

    .cart-address-radio {
        width: 16px;
        height: 16px;
        min-width: 16px;
        margin-top: 2px;
        border: 1px solid #aaa;
        border-radius: 50%
    }

    .cart-address-item.selected .cart-address-radio {
        border: 4px solid #087b38
    }

    .cart-address-content {
        min-width: 0;
        flex: 1;
        padding-right: 4px
    }

    .cart-address-line {
        display: flex;
        align-items: flex-start;
        gap: 5px;
        color: #68716d;
        font-size: 10px;
        line-height: 15px
    }

    .cart-address-line i {
        margin-top: 2px;
        color: #777;
        font-size: 10px
    }

    .default-address {
        display: inline-block;
        margin-top: 3px;
        padding: 1px 6px;
        border-radius: 10px;
        background: #e7f6ec;
        color: #087b38;
        font-size: 8px
    }

    .view-address-btn {
        padding: 0;
        margin-top: 3px;
        border: 0;
        background: transparent;
        color: #0b7a39;
        font-size: 9px;
        cursor: pointer
    }

    .address-modal {
        border: 0 !important;
        border-radius: 14px !important;
        overflow: hidden;
        background: #fff !important;
        box-shadow: 0 15px 50px rgba(0, 0, 0, .18)
    }

    .address-modal .modal-header {
        padding: 13px 15px;
        border-bottom: 1px solid #eee;
        background: #fff
    }

    .address-modal .modal-title {
        margin: 0;
        font-size: 15px;
        font-weight: 700;
        color: #222
    }

    .address-modal .modal-body {
        padding: 15px;
        background: #fff
    }

    .full-address p {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        margin: 0 0 9px;
        color: #666;
        font-size: 12px;
        line-height: 19px
    }

    .full-address p i {
        color: #0b7a39;
        margin-top: 3px
    }

    .full-address strong {
        color: #333
    }

    .address-modal .modal-footer {
        padding: 10px 15px;
        border-top: 1px solid #eee;
        background: #fff
    }

    .address-select-btn {
        width: 100%;
        padding: 9px;
        border: 0 !important;
        border-radius: 8px;
        background: #0b5d2a !important;
        color: #fff !important;
        font-size: 11px;
        font-weight: 600
    }

    .address-select-btn:hover {
        background: #084b22 !important;
        color: #fff !important
    }

    .modal-backdrop {
        z-index: 1040
    }

    .modal {
        z-index: 1055
    }

    @media(max-width:767px) {
        .cart-address-item {
            padding: 8px
        }

        .cart-address-line {
            font-size: 9px;
            line-height: 14px
        }
    }

    .add-address-btn { 
    padding: 5px 9px;
    border: 1px solid #0b7a39;
    border-radius: 6px;
    background: #fff;
    color: #0b7a39;
    font-size: 9px;
    font-weight: 600;
    cursor: pointer;
    margin-top:10px;
}

.add-address-btn:hover {
    background: #0b7a39;
    color: #fff;
}

.summary-savings-content > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

