
        /* ============================================
           iEvolution Cart Drawer - Optimized CSS
           Color Palette: Emerald Primary, Blue Secondary
           ============================================ */

        /* Cart Trigger */
        .shopify-cart-trigger {
            position: relative;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px;
            color: #2AAFD3;
            transition: transform 0.2s ease, color 0.2s ease;
        }

        .shopify-cart-trigger:hover {
            transform: scale(1.05);
            color: #1B2A4A;
        }

        .cart-drawer-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: #E8593C;
            color: #fff;
            border-radius: 9999px;
            min-width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 600;
            padding: 0 6px;
            box-shadow: 0 2px 4px rgba(232, 89, 60, 0.3);
        }

        .cart-drawer-total {
            font-size: 14px;
            font-weight: 500;
        }

        /* Overlay */
        .cart-drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(27, 42, 74, 0.4);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            z-index: 99998;
            backdrop-filter: blur(4px);
        }

        .cart-drawer-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Drawer */
        .shopify-cart-drawer {
            position: fixed;
            top: 0;
            right: -480px;
            width: 480px;
            height: 100%;
            background: #ffffff;
            box-shadow: -10px 0 30px rgba(27, 42, 74, 0.1);
            transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            z-index: 99999;
            display: flex;
            flex-direction: column;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        }

        .shopify-cart-drawer.open {
            right: 0;
        }

        /* Header */
        .drawer-header {
            padding: 24px;
            border-bottom: 1px solid #E4DFD8;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(135deg, #FFFFFF 0%, #F0EEE9 100%);
        }

        .drawer-header h2 {
            margin: 0;
            font-size: 20px;
            font-weight: 600;
            color: #1B2A4A;
            letter-spacing: -0.5px;
        }

        .close-drawer {
            background: #fff;
            border: 1px solid #E4DFD8;
            font-size: 20px;
            cursor: pointer;
            color: #6B7B8D;
            padding: 0;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            border-radius: 50%;
        }

        .close-drawer:hover {
            background: #2AAFD3;
            color: #fff;
            border-color: #2AAFD3;
            transform: rotate(90deg);
        }

        /* Content */
        .drawer-content {
            flex: 1;
            overflow-y: auto;
            padding: 24px;
            background: #F0EEE9;
        }

        .drawer-content::-webkit-scrollbar {
            width: 6px;
        }

        .drawer-content::-webkit-scrollbar-track {
            background: #F0EEE9;
        }

        .drawer-content::-webkit-scrollbar-thumb {
            background: #2AAFD3;
            border-radius: 3px;
        }

        .drawer-content::-webkit-scrollbar-thumb:hover {
            background: #1E8FAD;
        }

        /* Empty Cart */
        .drawer-empty-cart {
            text-align: center;
            padding: 60px 20px;
            color: #6B7B8D;
        }

        .drawer-empty-cart p {
            margin: 10px 0;
            font-size: 16px;
            color: #94a3b8;
        }

        .drawer-empty-cart p:first-child {
            font-size: 18px;
            color: #1B2A4A;
            font-weight: 500;
        }

        /* Cart Items */
        .drawer-cart-item {
            display: flex;
            padding: 20px;
            margin-bottom: 16px;
            position: relative;
            background: #FFFFFF;
            
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
            transition: all 0.2s ease;
            border: 1px solid rgba(228, 223, 216, 0.6);
        }

        .drawer-cart-item:hover {
            box-shadow: 0 10px 15px -3px rgba(42, 175, 211, 0.1);
            transform: translateY(-2px);
            border-color: rgba(42, 175, 211, 0.2);
        }

        .drawer-cart-item.removing {
            opacity: 0.5;
            transform: scale(0.98);
        }

        .drawer-item-image {
            width: 90px;
            height: 90px;
            background: #F0EEE9;
            border-radius: 12px;
            overflow: hidden;
            flex-shrink: 0;
            border: 1px solid rgba(228, 223, 216, 0.6);
        }

        .drawer-item-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .drawer-item-details {
            flex: 1;
            padding-left: 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .drawer-item-title {
            font-size: 16px;
            font-weight: 500;
            color: #1B2A4A;
            margin: 0 0 4px 0;
            text-decoration: none;
            display: block;
            line-height: 1.4;
        }

        .drawer-item-title:hover {
            color: #1B2A4A;
        }

        .drawer-item-variant {
            font-size: 13px;
            color: #94a3b8;
            margin: 0 0 8px 0;
        }

        .drawer-item-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 8px;
        }

        .drawer-item-price {
            font-size: 18px;
            font-weight: 600;
            color: #2AAFD3;
        }

        /* Quantity Selector */
        .drawer-quantity-selector {
            display: flex;
            align-items: center;
            background: #F0EEE9;
            border-radius: 9999px;
            padding: 4px;
            border: 1px solid #E4DFD8;
        }

        .drawer-quantity-selector.updating {
            opacity: 1;
            pointer-events: auto;
        }

        .drawer-quantity-btn {
            background: transparent;
            border: none;
            width: 32px;
            height: 32px;
            cursor: pointer;
            font-size: 16px;
            color: #6B7B8D;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.15s ease;
            border-radius: 50%;
            font-weight: 600;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .drawer-quantity-btn:hover,
        .drawer-quantity-btn:active {
            background: #2AAFD3;
            color: #fff;
        }

        .drawer-quantity-btn.active {
            transform: scale(0.9);
            background: #2AAFD3;
            color: #fff;
        }

        .drawer-quantity-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
        }

        .drawer-quantity-value {
            min-width: 40px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #1B2A4A;
            padding: 0 8px;
            user-select: none;
        }

        /* Remove Item */
        .drawer-remove-item {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #fff;
            border: 1px solid #E4DFD8;
            color: #94a3b8;
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
            transition: all 0.2s ease;
            padding: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .drawer-remove-item:hover {
            /* Brand Slate — destructive-action hover (on-palette, not red) */
            background: #6B7B8D;
            color: #fff;
            border-color: #6B7B8D;
            transform: scale(1.1);
        }

        .drawer-remove-item:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Footer */
        .drawer-footer {
            border-top: 1px solid #E4DFD8;
            padding: 24px;
            background: #fff;
            box-shadow: 0 -4px 16px rgba(27, 42, 74, 0.05);
        }

        /* Free Shipping Progress Bar */
        .csr-drawer-shipping-bar {
            margin-bottom: 16px;
            padding: 14px 16px;
            background: #F0EEE9;
            border-radius: 12px;
            border: 1px solid #E4DFD8;
            font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .csr-drawer-shipping-bar.csr-achieved {
            background: linear-gradient(135deg, #F0EEE9 0%, #FFFFFF 100%);
            border-color: #2AAFD3;
        }
        .csr-drawer-progress-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }
        .csr-drawer-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .csr-drawer-icon-progress {
            background: rgba(42, 175, 211, 0.1);
            border: 2px solid #2AAFD3;
        }
        .csr-drawer-icon-done {
            background: #2AAFD3;
            border: 2px solid #2AAFD3;
            animation: csrDrawerPulse 2.5s ease-in-out infinite;
        }
        .csr-drawer-msg {
            font-size: 13px;
            color: #1B2A4A;
            font-weight: 500;
            line-height: 1.3;
        }
        .csr-drawer-amount {
            color: #8B6914;
            font-weight: 700;
        }
        .csr-drawer-highlight {
            color: #2AAFD3;
            font-weight: 700;
        }
        .csr-drawer-track {
            background: #E4DFD8;
            border-radius: 99px;
            height: 6px;
            overflow: hidden;
        }
        .csr-drawer-fill {
            background: linear-gradient(90deg, #2AAFD3, #1B2A4A);
            height: 100%;
            border-radius: 99px;
            transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }
        .csr-drawer-fill::after {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
            animation: csrDrawerShimmer 2s ease-in-out infinite;
        }
        .csr-drawer-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 6px;
            font-size: 11px;
            color: #94A3B8;
            font-weight: 600;
        }
        .csr-drawer-pct {
            color: #1B2A4A;
            font-weight: 700;
            background: rgba(27, 42, 74, 0.06);
            padding: 1px 6px;
            border-radius: 99px;
            font-size: 10px;
        }
        .csr-drawer-achieved {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .csr-drawer-achieved-text {
            display: flex;
            flex-direction: column;
        }
        .csr-drawer-achieved-title {
            font-size: 13px;
            font-weight: 700;
            color: #1B2A4A;
            letter-spacing: -0.2px;
        }
        .csr-drawer-achieved-sub {
            font-size: 11px;
            color: #2AAFD3;
            font-weight: 600;
            margin-top: 1px;
        }
        @keyframes csrDrawerPulse {
            0%, 100% { box-shadow: 0 0 0 3px rgba(42, 175, 211, 0.12); }
            50% { box-shadow: 0 0 0 6px rgba(42, 175, 211, 0.06); }
        }
        @keyframes csrDrawerShimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Coupon Section */
        .drawer-coupon-section {
            margin-bottom: 20px;
            padding: 16px;
            background: #F0EEE9;
            border-radius: 12px;
            border: 1px solid rgba(228, 223, 216, 0.6);
        }

        .drawer-coupon-toggle {
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            padding: 8px 0;
            transition: color 0.2s ease;
        }

        .drawer-coupon-toggle:hover {
            color: #2AAFD3;
        }

        .coupon-icon {
            font-size: 20px;
            margin-right: 10px;
        }

        .coupon-text {
            flex: 1;
            font-size: 14px;
            font-weight: 500;
            color: #6B7B8D;
        }

        .coupon-arrow {
            font-size: 18px;
            transition: transform 0.3s ease;
            color: #94a3b8;
        }

        .drawer-coupon-toggle.active .coupon-arrow {
            transform: rotate(90deg);
        }

        .drawer-coupon-form {
            margin-top: 12px;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .coupon-input-wrapper {
            display: flex;
            gap: 8px;
            margin-bottom: 8px;
        }

        #drawerCouponCode {
            flex: 1;
            padding: 12px 16px;
            border: 2px solid #E4DFD8;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.2s ease;
            background: #fff;
        }

        #drawerCouponCode:focus {
            outline: none;
            border-color: #2AAFD3;
            box-shadow: 0 0 0 3px rgba(42, 175, 211, 0.15);
        }

        .apply-coupon-btn {
            padding: 12px 24px;
            background: #E8593C;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .apply-coupon-btn:hover {
            background: #D14832;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(232, 89, 60, 0.3);
        }

        .apply-coupon-btn:active {
            transform: scale(0.98);
        }

        .apply-coupon-btn.loading {
            opacity: 0.7;
            pointer-events: none;
        }

        .apply-coupon-btn.loading::after {
            content: '';
            display: inline-block;
            width: 12px;
            height: 12px;
            margin-left: 8px;
            border: 2px solid #fff;
            border-radius: 50%;
            border-top-color: transparent;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* Coupon Messages */
        .coupon-message {
            font-size: 13px;
            padding: 8px 12px;
            border-radius: 8px;
            margin-top: 8px;
            display: none;
            animation: fadeIn 0.3s ease;
        }

        .coupon-message.success {
            background: rgba(42, 175, 211, 0.08);
            color: #1E8FAD;
            border: 1px solid rgba(42, 175, 211, 0.2);
        }

        .coupon-message.error {
            background: #fef2f2;
            color: #991b1b;
            border: 1px solid #fecaca;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Applied Coupons */
        .drawer-applied-coupons {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .applied-coupon-tag {
            display: inline-flex;
            align-items: center;
            background: rgba(42, 175, 211, 0.08);
            border: 1px solid #2AAFD3;
            border-radius: 9999px;
            padding: 6px 12px;
            font-size: 13px;
            color: #1E8FAD;
            animation: tagBounce 0.3s ease;
        }

        @keyframes tagBounce {
            0% { transform: scale(0.8); opacity: 0; }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); opacity: 1; }
        }

        .coupon-code {
            font-weight: 600;
            margin-right: 8px;
            text-transform: uppercase;
        }

        .remove-coupon {
            background: none;
            border: none;
            color: #6B7B8D;
            font-size: 18px;
            cursor: pointer;
            padding: 0;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
            margin-left: 4px;
        }

        .remove-coupon:hover {
            /* Brand Slate — destructive-action hover (on-palette, not red) */
            background: #6B7B8D;
            color: #fff;
            transform: scale(1.1);
        }

        /* Discount */
        .drawer-discount {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding: 12px 0;
            color: #2AAFD3;
            font-weight: 500;
        }

        .drawer-discount-label {
            font-size: 14px;
        }

        .drawer-discount-value {
            font-size: 16px;
            font-weight: 600;
        }

        /* Subtotal */
        .drawer-subtotal {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 12px 0;
            border-bottom: 1px solid #E4DFD8;
        }

        .drawer-subtotal-label {
            font-size: 16px;
            color: #6B7B8D;
            font-weight: 500;
        }

        .drawer-subtotal-value {
            font-size: 24px;
            font-weight: 700;
            color: #1B2A4A;
        }

        /* Buttons */
        .drawer-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .drawer-checkout-btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            text-align: center;
            display: block;
            position: relative;
            overflow: hidden;
            background: #E8593C;
            color: #fff;
            box-shadow: 0 4px 6px -1px rgba(232, 89, 60, 0.25);
            box-sizing: border-box;
        }

        .drawer-checkout-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .drawer-checkout-btn:hover {
            transform: translateY(-2px);
            background: #D14832 !important;
            box-shadow: 0 10px 15px -3px rgba(232, 89, 60, 0.3);
        }

        .drawer-checkout-btn:hover::before {
            left: 100%;
        }

        .drawer-checkout-btn:active {
            transform: scale(0.98);
        }

        .drawer-checkout-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Success state for add to cart */
        .ajax_add_to_cart.added-success {
            background: #D14832 !important;
            color: #fff !important;
        }

        /* Currency flash guard — class-based approach.
           .currency-converting is added BEFORE HTML replacement and removed AFTER conversion.
           This prevents USD prices from flashing during AJAX drawer replacements.
           For USD users, the class is never added so prices show immediately. */
        .shopify-cart-drawer.currency-converting .drawer-item-price,
        .shopify-cart-drawer.currency-converting .drawer-subtotal-value,
        .shopify-cart-drawer.currency-converting .drawer-discount-value,
        .shopify-cart-drawer.currency-converting .csr-drawer-amount,
        .shopify-cart-drawer.currency-converting .csr-drawer-stat-current,
        .shopify-cart-drawer.currency-converting .csr-drawer-stat-goal {
            color: transparent !important;
        }

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

        /* Tablet */
        @media (max-width: 768px) {
            .shopify-cart-drawer {
                width: 420px;
            }
            .drawer-header { padding: 20px; }
            .drawer-content { padding: 20px; }
            .drawer-cart-item { padding: 16px; }
            .drawer-item-image { width: 80px; height: 80px; }
            .drawer-footer { padding: 20px; }
        }
        
        /* Mobile */
        @media (max-width: 520px) {
            .shopify-cart-drawer {
                width: 100%;
                right: -100%;
            }
            
            .drawer-header {
                padding: 16px;
                position: sticky;
                top: 0;
                z-index: 10;
                background: linear-gradient(135deg, #FFFFFF 0%, #F0EEE9 100%);
            }
            
            .drawer-header h2 { font-size: 18px; }
            
            .close-drawer {
                width: 40px;
                height: 40px;
                font-size: 22px;
            }
            
            .drawer-content { padding: 16px; }
            
            .drawer-cart-item {
                padding: 14px;
                margin-bottom: 12px;
            }
            
            .drawer-item-image {
                width: 70px;
                height: 70px;
                border-radius: 8px;
            }
            
            .drawer-item-details { padding-left: 12px; }
            .drawer-item-title { font-size: 14px; line-height: 1.3; }
            .drawer-item-variant { font-size: 12px; }
            
            .drawer-item-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            
            .drawer-item-price {
                font-size: 16px;
                margin-bottom: 4px;
            }
            
            /* Mobile quantity selector */
            .drawer-quantity-selector {
                width: 100%;
                max-width: 160px;
                justify-content: space-between;
                padding: 4px;
                background: #F0EEE9;
                border: 1px solid #E4DFD8;
                border-radius: 9999px;
            }
            
            .drawer-quantity-btn {
                width: 40px;
                height: 40px;
                font-size: 20px;
                min-width: 44px;
                min-height: 44px;
                border-radius: 50%;
            }
            
            .drawer-quantity-value {
                font-size: 18px;
                font-weight: 700;
                min-width: 50px;
                padding: 0 12px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            
            .drawer-remove-item {
                width: 40px;
                height: 40px;
                font-size: 20px;
                top: 10px;
                right: 10px;
            }
            
            .drawer-footer {
                padding: 16px;
                position: sticky;
                bottom: 0;
                background: #fff;
                box-shadow: 0 -8px 20px rgba(27, 42, 74, 0.08);
            }

            .csr-drawer-shipping-bar {
                padding: 12px 14px;
                margin-bottom: 12px;
            }
            .csr-drawer-icon {
                width: 28px;
                height: 28px;
            }
            .csr-drawer-msg {
                font-size: 12px;
            }
            
            /* Mobile Coupon */
            .drawer-coupon-section {
                padding: 12px;
                margin-bottom: 16px;
            }
            
            .coupon-input-wrapper { flex-direction: column; }
            
            #drawerCouponCode {
                width: 100%;
                padding: 14px 16px;
                font-size: 16px; /* Prevent zoom on iOS */
            }
            
            .apply-coupon-btn {
                width: 100%;
                padding: 14px;
                font-size: 15px;
            }
            
            .coupon-text { font-size: 15px; }
            
            .drawer-applied-coupons { margin-top: 10px; }
            
            .applied-coupon-tag {
                font-size: 12px;
                padding: 4px 10px;
            }
            
            .drawer-subtotal {
                margin-bottom: 16px;
                padding: 10px 0;
            }
            
            .drawer-subtotal-label { font-size: 15px; }
            .drawer-subtotal-value { font-size: 20px; }
            
            .drawer-checkout-btn {
                padding: 18px;
                font-size: 17px;
                border-radius: 12px;
            }
            
            .drawer-content {
                -webkit-overflow-scrolling: touch;
                padding-bottom: 20px;
            }
            
            .drawer-empty-cart { padding: 40px 20px; }
            .drawer-empty-cart p:first-child { font-size: 16px; }
            .drawer-empty-cart p { font-size: 14px; }
        }
        
        /* Extra small */
        @media (max-width: 380px) {
            .drawer-header { padding: 14px; }
            .drawer-header h2 { font-size: 16px; }
            .drawer-content { padding: 14px; }
            .drawer-cart-item { padding: 12px; }
            .drawer-item-image { width: 60px; height: 60px; }
            .drawer-item-title { font-size: 13px; }
            .drawer-quantity-selector { transform: scale(0.95); transform-origin: left center; }
            .drawer-footer { padding: 14px; }
            .drawer-coupon-section { padding: 10px; }
            .csr-drawer-shipping-bar { padding: 10px 12px; margin-bottom: 10px; }
            .csr-drawer-msg { font-size: 11px; }
            .csr-drawer-icon { width: 26px; height: 26px; }
            .csr-drawer-achieved-title { font-size: 12px; }
            .coupon-icon { font-size: 18px; margin-right: 8px; }
            .coupon-text { font-size: 14px; }
            .drawer-checkout-btn { padding: 16px; font-size: 16px; }
        }
        
        /* Landscape */
        @media (max-height: 600px) and (orientation: landscape) {
            .drawer-header { padding: 12px 20px; }
            .drawer-header h2 { font-size: 16px; }
            .drawer-content { padding: 12px 20px; }
            .drawer-cart-item { padding: 12px; margin-bottom: 10px; }
            .drawer-item-image { width: 60px; height: 60px; }
            .drawer-footer { padding: 12px 20px; }
            .drawer-subtotal { margin-bottom: 12px; }
            .csr-drawer-shipping-bar { padding: 10px 14px; margin-bottom: 10px; }
            .drawer-checkout-btn { padding: 14px; }
        }
        
        /* Checkout auto-close countdown toast */
        .drawer-checkout-toast {
            position: absolute;
            bottom: 90px;
            left: 16px;
            right: 16px;
            background: #1B2A4A;
            color: #fff;
            padding: 12px 16px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 500;
            text-align: center;
            z-index: 100;
            opacity: 0;
            transform: translateY(8px);
            transition: opacity .3s ease, transform .3s ease;
            box-shadow: 0 4px 16px rgba(27, 42, 74, 0.3);
        }
        .drawer-checkout-toast.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .drawer-checkout-toast .toast-check {
            color: #2AAFD3;
            font-weight: 700;
        }
        .drawer-checkout-toast .toast-countdown {
            display: inline-block;
            min-width: 12px;
            font-weight: 700;
            color: #2AAFD3;
        }
    