        .cart-checkout {
            padding: 9rem 0 80px;
        }

        /* ----- ORDER_SUMMARY ----- */
        .cart-checkout .order-summary {
            background-color: #fff;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
            position: sticky;
            top: 11rem;
            z-index: 10;
        }

        /* ----- CART_CARD_LIST & CARD ----- */
        .cart-card-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 24px;
        }

        .cart-checkout .cart-card,
        .cart-card-list .cart-card {
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 0 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: background 0.2s, box-shadow 0.2s;
        }

        .cart-card-list .cart-card {
            margin: 0;
        }

        .cart-card-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            width: 100%;
        }

        .cart-card-prices {
            flex: 1 1 0;
            text-align: end;
        }

        /* ----- PRODUCT IMAGE & INFO ----- */
        .cart-product-img {
            flex-shrink: 0;
            max-width: 84px;
            max-height: 84px;
            object-fit: contain;
            border-radius: 8px;
        }

        .cart-product-info {
            flex: 1 1 0;
            min-width: 0;
        }

        /* ----- QUANTITY BOX ----- */
        .co-quantity-box {
            background: #fff;
            color: #212529;
            gap: 1.2rem;
            justify-content: center;
        }

        .co-quantity-box .co-product-count,
        .co-quantity-box i {
            color: #212529;
            font-weight: 500;
        }

        .quantity-btn {
            cursor: pointer;
        }

        /* ----- PRICE & CURRENCY ----- */
        .cart-checkout .price {
            font-weight: 500;
            white-space: nowrap;
        }

        .price-original {
            color: #AFAFAF;
            font-size: 0.8125rem;
        }

        /* ----- BUTTONS ----- */
        .cart-checkout .btn-checkout {
            background-color: #dc3545;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 12px 24px;
            font-size: .8125rem;
            white-space: nowrap;
            cursor: pointer;
        }

        .btn-checkout:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        /* ----- BADGES & ALERTS ----- */
        .cart-checkout .badge-discount,
        .cart-checkout .badge-small {
            font-size: 0.7rem;
        }

        .cart-checkout .badge-discount {
            background-color: #dc3545;
            color: #fff;
        }

        .cart-checkout .alert {
            border-radius: 8px;
        }

        .cart-checkout .alert-icon {
            font-size: 1.2rem;
        }

        .cart-checkout .alert-small {
            font-size: 0.75rem;
            border-radius: 6px;
        }

        /* ----- TEXT STYLES ----- */
        .text-danger-small {
            font-size: 0.75rem;
        }

        .text-danger-xs {
            font-size: 0.7rem;
        }

        /* ----- EMPTY CART ----- */
        .empty-cart-page-container {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 60vh;
            width: 100%;
        }

        .empty-cart-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem 1rem;
            max-width: 400px;
            margin: 0 auto;
            text-align: center;
        }

        .empty-cart-icon {
            margin-bottom: 1.5rem;
        }

        .empty-cart-image {
            width: 80px;
            height: 80px;
            object-fit: contain;
            display: block;
            margin: 0 auto;
        }

        .empty-cart-text {
            color: #212529;
            font-size: 1rem;
            margin-bottom: 0;
        }

        .cart-product-title {
            font-size: 0.9375rem;
            line-height: 2;
        }

        @media (max-width: 991.98px) {
            .cart-checkout {
                padding-top: 5rem;
            }

            .cart-checkout .cart-card {
                flex-direction: column;
                align-items: flex-start;
            }

            .cart-checkout .hide-on-mobile {
                display: none !important;
            }

            .cart-checkout .order-summary.step1 button.btn-checkout {
                display: none;
            }

            .cart-card-bottom {
                flex-direction: row;
                justify-content: space-between;
                gap: 0.5rem;
            }

            .cart-card-prices {
                text-align: end !important;
                width: auto;
                flex: 1;
            }

            .cart-card-prices .d-flex {
                justify-content: flex-end !important;
            }

            .co-quantity-box {
                min-width: 90px;
                flex-shrink: 0;
                font-size: 0.875rem;
            }

            .cart-product-title {
                font-size: 0.8125rem;
            }

            .cart-checkout .price {
                font-size: 0.875rem;
            }

            /* Mobile Checkout Footer */
            .cart-checkout .mobile-checkout-footer {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background-color: #fff;
                z-index: 1000;
                padding: 10px;
            }

            .cart-checkout .footer-content {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 1rem;
            }

            .cart-checkout .price-info {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                gap: 0.3rem;
                font-size: 0.9375rem;
                color: #212529;
                font-weight: 500;
            }

            .cart-checkout .price-amount {
                display: flex;
                align-items: center;
                gap: 0.3rem;
            }

            .cart-checkout .price-label {
                color: #212529bf;
                font-size: 0.8125rem;
            }

            .cart-checkout .col-md-8,
            .cart-checkout .col-md-4 {
                flex: 0 0 100% !important;
                max-width: 100% !important;
                width: 100% !important;
            }

            .cart-checkout .col-md-4 {
                margin-top: 1.5rem;
            }

            .empty-cart-text {
                font-size: 0.875rem;
            }

            .order-summary-label {
                font-size: 0.875rem;
            }

            .order-summary-row {
                font-size: 0.8125rem;
            }
        }