        /* ============================================================
           🛒 CART SCREENS — السلة + الاكمال + الدفع
           نظام بصري موحّد بثلاث شاشات متناسقة
           ============================================================ */

        /* ---------- Drawer container ---------- */
        #cart-drawer {
            background: linear-gradient(180deg, #fafdfb 0%, #f1f9f4 100%);
        }

        /* ---------- Sticky pretty header (drawer + review + checkout) ---------- */
        .cart-screen-header {
            position: sticky; top: 0; z-index: 20;
            display: flex; align-items: center; gap: 12px;
            padding: 14px 16px;
            background: rgba(255,255,255,0.85);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(226,232,240,0.6);
        }
        .cart-screen-header .title-block { flex: 1; line-height: 1.15; }
        .cart-screen-header .title-block h2 {
            font-weight: 800; font-size: 1.15rem; color: #0f172a;
            letter-spacing: -0.02em; display: flex; align-items: center; gap: 8px;
        }
        .cart-screen-header .title-block h2 .accent {
            display: inline-flex; width: 32px; height: 32px; border-radius: 10px;
            background: linear-gradient(135deg, var(--brand-soft), #d4f7ed);
            color: var(--brand-dark);
            align-items: center; justify-content: center; font-size: 0.9rem;
            box-shadow: inset 0 0 0 1px rgba(0,184,148,0.15);
        }
        .cart-screen-header .title-block .sub {
            font-size: 0.72rem; font-weight: 600; color: #64748b; margin-top: 2px;
        }
        .cart-screen-header .pill {
            display: inline-flex; align-items: center; gap: 4px;
            padding: 4px 10px; border-radius: 999px;
            background: var(--brand-soft); color: var(--brand-dark);
            font-size: 0.7rem; font-weight: 800;
        }

        /* ---------- Free delivery progress (cart drawer) ---------- */
        .free-delivery-card {
            position: relative; overflow: hidden;
            background: #fff; border: 1px solid #f1f5f9;
            border-radius: 22px; padding: 14px 16px;
            box-shadow: var(--shadow-sm);
        }
        .free-delivery-card.unlocked {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border-color: rgba(16,185,129,0.25);
        }
        .free-delivery-card .progress-track {
            width: 100%; height: 8px; border-radius: 999px;
            background: #f1f5f9; overflow: hidden; position: relative;
        }
        .free-delivery-card .progress-fill {
            height: 100%; border-radius: 999px;
            background: linear-gradient(90deg, #fbbf24, var(--orange));
            transition: width 0.5s cubic-bezier(.34,1.56,.64,1);
            box-shadow: 0 0 12px rgba(245,130,32,0.35);
        }

        /* ---------- Cart item card (sleek, rich) ---------- */
        .cart-item-card {
            background: #fff; border-radius: 22px; padding: 12px;
            display: flex; gap: 12px; align-items: center;
            border: 1px solid #f1f5f9;
            box-shadow: 0 1px 2px rgba(15,23,42,0.03);
            transition: transform .2s, box-shadow .25s;
            position: relative;
        }
        .cart-item-card:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
        .cart-item-card .ci-thumb {
            width: 72px; height: 72px; border-radius: 16px;
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; overflow: hidden; position: relative;
        }
        .cart-item-card .ci-thumb img { width: 60px; height: 60px; object-fit: contain; }
        .cart-item-card .ci-thumb.bundle {
            background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
            color: var(--orange); font-size: 1.6rem;
        }
        .cart-item-card .ci-body { flex: 1; min-width: 0; }
        .cart-item-card .ci-name {
            font-weight: 800; font-size: 0.95rem; color: #0f172a;
            line-height: 1.2; margin-bottom: 2px;
            overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
        }
        .cart-item-card .ci-specs {
            font-size: 0.7rem; color: #64748b; font-weight: 600;
            margin-bottom: 6px; line-height: 1.3;
        }
        .cart-item-card .ci-row {
            display: flex; justify-content: space-between; align-items: center;
            gap: 8px;
        }
        .cart-item-card .ci-qty-pill {
            display: inline-flex; align-items: center; gap: 4px;
            padding: 4px 10px; border-radius: 999px;
            background: var(--brand-soft); color: var(--brand-dark);
            font-size: 0.72rem; font-weight: 800;
        }
        .cart-item-card .ci-price {
            font-weight: 900; font-size: 1rem; color: var(--brand-dark);
            letter-spacing: -0.01em;
        }
        .cart-item-card .ci-price .currency { font-size: 0.65rem; opacity: 0.7; margin-right: 2px; }
        .cart-item-card .ci-actions {
            display: flex; flex-direction: column; gap: 6px; flex-shrink: 0;
        }
        .ci-icon-btn {
            width: 32px; height: 32px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.78rem; transition: all .2s;
            border: 1px solid transparent;
        }
        .ci-icon-btn.edit { background: #eff6ff; color: #2563eb; }
        .ci-icon-btn.edit:hover { background: #dbeafe; transform: scale(1.05); }
        .ci-icon-btn.remove { background: #fef2f2; color: #dc2626; }
        .ci-icon-btn.remove:hover { background: #fee2e2; transform: scale(1.05); }

        /* ---------- Empty cart state ---------- */
        .cart-empty {
            display: flex; flex-direction: column; align-items: center;
            justify-content: center; padding: 60px 24px; text-align: center;
            min-height: 50vh;
        }
        .cart-empty-icon {
            width: 110px; height: 110px; border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, var(--brand-soft), #fff);
            display: flex; align-items: center; justify-content: center;
            color: var(--brand); font-size: 3rem; margin-bottom: 22px;
            box-shadow: 0 12px 28px -8px rgba(0,184,148,0.25);
            position: relative;
        }
        .cart-empty-icon::after {
            content: ''; position: absolute; inset: -8px; border-radius: 50%;
            border: 2px dashed rgba(0,184,148,0.25); animation: ce-spin 12s linear infinite;
        }
        @keyframes ce-spin { to { transform: rotate(360deg); } }
        .cart-empty h3 { font-size: 1.2rem; font-weight: 800; color: #0f172a; margin-bottom: 6px; }
        .cart-empty p { font-size: 0.85rem; color: #64748b; max-width: 240px; margin: 0 auto 20px; line-height: 1.5; }

        /* ---------- Drawer footer summary ---------- */
        .cart-drawer-footer {
            padding: 16px 18px max(20px, env(safe-area-inset-bottom));
            background: linear-gradient(to top, #fff 75%, rgba(255,255,255,0.92) 100%);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border-top: 1px solid rgba(226,232,240,0.7);
            border-radius: 28px 28px 0 0;
            box-shadow: 0 -16px 40px -12px rgba(15,23,42,0.08);
        }
        .cart-summary-row {
            display: flex; justify-content: space-between; align-items: flex-end;
            margin-bottom: 14px;
        }
        .cart-summary-row .label {
            font-size: 0.72rem; color: #64748b; font-weight: 700; text-transform: uppercase;
            letter-spacing: 0.04em; margin-bottom: 2px;
        }
        .cart-summary-row .total-amount {
            font-size: 1.7rem; font-weight: 900; color: var(--brand-dark);
            letter-spacing: -0.025em; line-height: 1;
        }
        .cart-summary-row .total-amount .currency { font-size: 0.85rem; opacity: 0.75; margin-right: 4px; }
        .cart-summary-row .savings {
            display: inline-flex; align-items: center; gap: 4px;
            padding: 3px 9px; border-radius: 999px;
            background: #fef2f2; color: #dc2626;
            font-size: 0.68rem; font-weight: 800; margin-top: 6px;
        }
        .cart-cta-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
            color: #fff; padding: 16px 20px; border-radius: 20px;
            font-weight: 800; font-size: 1.02rem; letter-spacing: -0.01em;
            display: flex; align-items: center; justify-content: center; gap: 10px;
            box-shadow: 0 10px 26px -6px rgba(0,184,148,0.45), inset 0 -2px 0 rgba(0,0,0,0.08);
            transition: all .25s;
        }
        .cart-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 32px -4px rgba(0,184,148,0.55); }
        .cart-cta-btn:active { transform: scale(0.99); }
        .cart-cta-btn .arrow {
            display: inline-flex; width: 26px; height: 26px; border-radius: 50%;
            background: rgba(255,255,255,0.18); align-items: center; justify-content: center;
            font-size: 0.8rem;
        }

        /* ---------- Step indicator (review + checkout) ---------- */
        .cart-steps {
            display: flex; align-items: center; gap: 6px;
            padding: 10px 16px 4px;
        }
        .cart-step {
            display: flex; align-items: center; gap: 6px;
            font-size: 0.7rem; font-weight: 700; color: #94a3b8;
            flex: 0 0 78px;
            justify-content: center;
            white-space: nowrap;
        }
        .cart-step .dot {
            width: 22px; height: 22px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            background: #f1f5f9; color: #94a3b8; font-size: 0.7rem; font-weight: 800;
            border: 1.5px solid #e2e8f0;
        }
        .cart-step.done .dot { background: var(--brand); color: #fff; border-color: var(--brand); }
        .cart-step.done { color: var(--brand-dark); }
        .cart-step.active .dot {
            background: #fff; color: var(--brand); border-color: var(--brand);
            box-shadow: 0 0 0 4px rgba(0,184,148,0.12);
        }
        .cart-step.active { color: var(--brand-dark); }
        .cart-step-line {
            flex: 1; height: 2px; background: #e2e8f0; border-radius: 1px; margin: 0 2px;
        }
        .cart-step-line.done { background: var(--brand); }

        /* ---------- Review row item ---------- */
        .review-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 10px 12px; border-radius: 16px;
            background: #fff; border: 1px solid #f1f5f9;
            transition: border-color .2s;
        }
        .review-row:hover { border-color: rgba(0,184,148,0.25); }
        .review-row .rr-thumb {
            width: 44px; height: 44px; border-radius: 12px;
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .review-row .rr-thumb img { width: 36px; height: 36px; object-fit: contain; }
        .review-row .rr-thumb.bundle { background: linear-gradient(135deg, #fff7ed, #fed7aa); color: var(--orange); }
        .review-row .rr-name { font-weight: 800; font-size: 0.88rem; color: #0f172a; }
        .review-row .rr-meta { font-size: 0.7rem; color: #64748b; font-weight: 600; }
        .review-row .rr-price {
            font-weight: 800; font-size: 0.92rem; color: var(--brand-dark);
        }

        /* ---------- Summary card (review + checkout) ---------- */
        .cart-summary-card {
            background: linear-gradient(180deg, #ffffff 0%, #fafdfb 100%);
            border: 1px solid #e6f4ee; border-radius: 22px;
            padding: 16px; box-shadow: var(--shadow-sm);
        }
        .cart-summary-card .row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 6px 0; font-size: 0.85rem;
        }
        .cart-summary-card .row .lbl { color: #64748b; font-weight: 600; }
        .cart-summary-card .row .val { color: #0f172a; font-weight: 700; }
        .cart-summary-card .row.discount .lbl,
        .cart-summary-card .row.discount .val { color: #16a34a; }
        .cart-summary-card .divider { height: 1px; background: #e2e8f0; margin: 8px 0; }
        .cart-summary-card .total-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 6px 0 2px;
        }
        .cart-summary-card .total-row .lbl { font-weight: 800; color: #0f172a; font-size: 0.95rem; }
        .cart-summary-card .total-row .val {
            font-weight: 900; font-size: 1.4rem; color: var(--brand-dark);
            letter-spacing: -0.025em;
        }
        .cart-summary-card .total-row .val .currency { font-size: 0.7rem; opacity: 0.7; margin-right: 2px; }

        /* ---------- Compact coupon (collapsible, low-emphasis) ---------- */
        .coupon-compact { /* container */ }

        .coupon-toggle-btn {
            width: 100%;
            display: flex; align-items: center; gap: 10px;
            padding: 10px 14px; border-radius: 14px;
            background: rgba(255,255,255,0.6);
            border: 1.5px dashed #cbd5e1;
            color: #64748b; font-size: 0.82rem; font-weight: 700;
            transition: all .2s; cursor: pointer;
        }
        .coupon-toggle-btn:hover {
            border-color: rgba(0,184,148,0.5);
            color: var(--brand-dark);
            background: var(--brand-soft);
        }
        .coupon-toggle-btn > i:first-child {
            color: #f59e0b; font-size: 0.95rem;
        }
        .coupon-toggle-btn .chevron {
            font-size: 0.7rem;
            transition: transform .25s;
        }
        .coupon-toggle-btn.open .chevron { transform: rotate(180deg); }

        .coupon-expand {
            margin-top: 8px;
            padding: 12px;
            background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
            border: 1px dashed #fcd34d;
            border-radius: 14px;
            animation: couponSlideIn 0.25s ease-out;
            overflow: hidden;
        }
        @keyframes couponSlideIn {
            from { opacity: 0; transform: translateY(-4px); max-height: 0; padding-top: 0; padding-bottom: 0; }
            to { opacity: 1; transform: translateY(0); max-height: 500px; }
        }

        .coupon-input-row { display: flex; gap: 6px; }
        .coupon-input-compact {
            flex: 1; background: #fff; border: 1.5px solid #fde68a;
            border-radius: 11px; padding: 9px 12px;
            font-weight: 700; font-size: 0.85rem; color: #0f172a;
            outline: none; transition: border-color .2s;
        }
        .coupon-input-compact::placeholder { color: #d4a373; font-weight: 600; font-size: 0.8rem; }
        .coupon-input-compact:focus { border-color: #d97706; box-shadow: 0 0 0 3px rgba(217,119,6,0.15); }

        .coupon-apply-compact {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: #fff; padding: 9px 16px; border-radius: 11px;
            font-weight: 800; font-size: 0.82rem;
            box-shadow: 0 4px 10px -2px rgba(217,119,6,0.4);
            transition: all .2s; cursor: pointer;
        }
        .coupon-apply-compact:hover { transform: translateY(-1px); }
        .coupon-apply-compact:active { transform: scale(0.97); }

        .coupon-show-compact {
            display: inline-flex; align-items: center; gap: 4px;
            margin-top: 8px; padding: 4px 0;
            font-size: 0.72rem; font-weight: 800; color: #b45309;
            cursor: pointer;
        }
        .coupon-show-compact:hover { color: #92400e; }

        .coupon-applied {
            display: flex; align-items: center; gap: 10px;
            padding: 10px 14px; border-radius: 14px;
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
            border: 1px solid rgba(16,185,129,0.35);
            color: #065f46; font-size: 0.85rem; font-weight: 700;
        }
        .coupon-applied > i:first-child {
            color: #059669; font-size: 1.05rem;
        }
        .coupon-applied strong { font-weight: 900; letter-spacing: 0.02em; }
        .coupon-remove-btn {
            width: 26px; height: 26px; border-radius: 50%;
            background: rgba(255,255,255,0.7); color: #dc2626;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.72rem; flex-shrink: 0;
            transition: all .15s; cursor: pointer;
        }
        .coupon-remove-btn:hover { background: #fee2e2; transform: scale(1.05); }

        /* ---------- Section heading inside checkout ---------- */
        .ck-section-title {
            display: flex; align-items: center; gap: 8px;
            font-weight: 800; font-size: 0.95rem; color: #0f172a;
            margin: 4px 4px 12px; letter-spacing: -0.01em;
        }
        .ck-section-title .num {
            display: inline-flex; width: 24px; height: 24px; border-radius: 8px;
            background: var(--brand-soft); color: var(--brand-dark);
            align-items: center; justify-content: center;
            font-size: 0.72rem; font-weight: 900;
        }

        /* ---------- Address card (checkout) ---------- */
        .ck-address-card {
            background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
            border: 1px solid #d1fae5; border-radius: 22px;
            padding: 16px; box-shadow: var(--shadow-sm);
        }
        .ck-address-card .row {
            display: flex; justify-content: space-between; align-items: flex-start; gap: 12px;
        }
        .ck-address-card .pin {
            width: 44px; height: 44px; border-radius: 14px;
            background: linear-gradient(135deg, var(--brand), var(--brand-dark));
            color: #fff; display: flex; align-items: center; justify-content: center;
            font-size: 1.05rem; flex-shrink: 0;
            box-shadow: 0 6px 16px -4px rgba(0,184,148,0.4);
        }
        .ck-address-card .label {
            font-size: 0.65rem; font-weight: 800; color: var(--brand-dark);
            text-transform: uppercase; letter-spacing: 0.05em;
        }
        .ck-address-card .text { font-weight: 700; font-size: 0.92rem; color: #0f172a; line-height: 1.35; margin-top: 2px; }
        .ck-address-card .edit-btn {
            color: var(--brand-dark); font-size: 0.72rem; font-weight: 800;
            padding: 6px 12px; border-radius: 999px;
            background: rgba(0,184,148,0.08); transition: background .2s;
        }
        .ck-address-card .edit-btn:hover { background: rgba(0,184,148,0.16); }
        .ck-address-card .eta {
            margin-top: 12px; padding: 10px 12px; border-radius: 14px;
            background: rgba(255,255,255,0.7); border: 1px solid #d1fae5;
            display: flex; align-items: center; gap: 10px;
            font-size: 0.78rem; font-weight: 700; color: #047857;
        }
        .ck-address-card .eta .clock {
            width: 28px; height: 28px; border-radius: 50%;
            background: var(--brand-soft); color: var(--brand-dark);
            display: flex; align-items: center; justify-content: center;
        }
        .ck-address-card .eta .time-pill {
            background: var(--brand); color: #fff; padding: 2px 10px;
            border-radius: 999px; font-weight: 800; font-size: 0.78rem;
        }

        /* ---------- Delivery option cards (improved) ---------- */
        .delivery-option-card {
            border: 1.5px solid #e2e8f0; border-radius: 18px; padding: 14px 12px;
            display: flex; flex-direction: column; align-items: center; gap: 8px;
            cursor: pointer; transition: all .25s;
            background: #fff; text-align: center;
        }
        .delivery-option-card i {
            width: 36px; height: 36px; border-radius: 10px;
            background: #f8fafc; color: #94a3b8;
            display: flex; align-items: center; justify-content: center;
            font-size: 1rem; transition: all .25s;
        }
        .delivery-option-card span { font-size: 0.78rem; font-weight: 700; color: #64748b; transition: color .2s; }
        .delivery-option-card:hover { border-color: rgba(0,184,148,0.4); transform: translateY(-1px); }
        .delivery-option-card.selected {
            border-color: var(--brand);
            background: linear-gradient(135deg, var(--brand-soft), #d4f7ed);
            box-shadow: 0 6px 16px -4px rgba(0,184,148,0.25);
        }
        .delivery-option-card.selected i { background: var(--brand); color: #fff; }
        .delivery-option-card.selected span { color: var(--brand-dark); font-weight: 800; }

        /* ---------- Instruction toggles ---------- */
        .ck-instruction {
            display: flex; align-items: center; gap: 10px;
            background: #fff; border: 1.5px solid #e2e8f0; border-radius: 16px;
            padding: 12px 14px; cursor: pointer; transition: all .2s;
        }
        .ck-instruction:hover { border-color: rgba(0,184,148,0.4); }
        .ck-instruction:has(input:checked),
        .ck-instruction.active { border-color: var(--brand); background: var(--brand-soft); }
        .ck-instruction .ico {
            width: 32px; height: 32px; border-radius: 10px;
            display: flex; align-items: center; justify-content: center; flex-shrink: 0;
        }
        .ck-instruction .meta { flex: 1; line-height: 1.2; }
        .ck-instruction .meta .t { font-size: 0.8rem; font-weight: 800; color: #0f172a; }
        .ck-instruction .meta .s { font-size: 0.66rem; color: #64748b; font-weight: 600; }

        /* ---------- Tip buttons (richer) ---------- */
        .tip-btn {
            border: 1.5px solid #e2e8f0; padding: 12px 8px; border-radius: 14px;
            font-weight: 800; font-size: 0.85rem; color: #475569;
            background: #fff; transition: all .2s; cursor: pointer;
        }
        .tip-btn:hover { border-color: rgba(245,130,32,0.5); transform: translateY(-1px); }
        .tip-btn.selected {
            background: linear-gradient(135deg, var(--orange), #ea580c);
            color: #fff; border-color: var(--orange);
            box-shadow: 0 8px 18px -4px rgba(245,130,32,0.45);
        }

        /* ---------- Payment method card (improved) ---------- */
        .payment-method-card {
            display: flex; align-items: center; gap: 12px;
            background: #fff; border: 1.5px solid #e2e8f0; border-radius: 18px;
            padding: 14px; cursor: pointer; transition: all .25s;
        }
        .payment-method-card:hover { border-color: rgba(0,184,148,0.4); transform: translateY(-1px); }
        .payment-method-card.selected {
            border-color: var(--brand);
            background: linear-gradient(135deg, var(--brand-soft), #fff);
            box-shadow: 0 6px 16px -4px rgba(0,184,148,0.2);
        }
        .payment-method-card .pm-icon {
            width: 44px; height: 44px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.05rem; flex-shrink: 0;
        }
        .payment-method-card .pm-body { flex: 1; line-height: 1.25; }
        .payment-method-card .pm-body .pm-title { font-weight: 800; font-size: 0.92rem; color: #0f172a; }
        .payment-method-card .pm-body .pm-sub { font-size: 0.68rem; color: #64748b; font-weight: 600; }
        .payment-method-card .pm-radio {
            width: 22px; height: 22px; border-radius: 50%;
            border: 2px solid #cbd5e1; flex-shrink: 0; position: relative;
            transition: all .2s;
        }
        .payment-method-card.selected .pm-radio {
            border-color: var(--brand); background: var(--brand);
        }
        .payment-method-card.selected .pm-radio::after {
            content: ''; position: absolute; inset: 4px;
            background: #fff; border-radius: 50%;
        }

        .add-card-btn {
            display: flex; align-items: center; justify-content: center; gap: 10px;
            width: 100%; padding: 14px;
            border: 2px dashed #cbd5e1; border-radius: 18px;
            color: #64748b; font-weight: 800; font-size: 0.88rem;
            background: rgba(248,250,252,0.5); transition: all .2s;
        }
        .add-card-btn:hover {
            border-color: var(--brand); color: var(--brand-dark);
            background: var(--brand-soft);
        }

        /* ---------- Final summary card (dark, premium) ---------- */
        .ck-final-summary {
            background:
                radial-gradient(ellipse at top right, rgba(0,184,148,0.18), transparent 50%),
                linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #fff; border-radius: 24px; padding: 18px;
            box-shadow: 0 14px 32px -8px rgba(15,23,42,0.35);
            position: relative; overflow: hidden;
        }
        .ck-final-summary::before {
            content: ''; position: absolute; top: -40px; left: -40px;
            width: 120px; height: 120px; border-radius: 50%;
            background: radial-gradient(circle, rgba(0,184,148,0.18), transparent 70%);
            pointer-events: none;
        }
        .ck-final-summary .row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 5px 0; font-size: 0.8rem; opacity: 0.8;
        }
        .ck-final-summary .divider { height: 1px; background: rgba(255,255,255,0.1); margin: 8px 0; }
        .ck-final-summary .total-row {
            display: flex; justify-content: space-between; align-items: center;
            padding-top: 6px;
        }
        .ck-final-summary .total-row .lbl { font-weight: 800; font-size: 1rem; opacity: 1; }
        .ck-final-summary .total-row .val {
            font-weight: 900; font-size: 1.55rem; color: #34d399;
            letter-spacing: -0.025em;
        }
        .ck-final-summary .total-row .val .currency { font-size: 0.78rem; opacity: 0.7; margin-right: 3px; }
        .ck-final-summary .points-line {
            margin-top: 10px; padding-top: 10px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center; font-size: 0.72rem; font-weight: 800;
            color: #fbbf24; letter-spacing: 0.02em;
        }
        /* ============================================================
           🌍 OUT-OF-ZONE MODAL — رسالة اعتذار ناعمة
           ============================================================ */
        .ooz-hero {
            text-align: center; padding: 8px 4px 18px;
        }
        .ooz-icon-bg {
            width: 90px; height: 90px; margin: 0 auto 18px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #fff7ed, #fed7aa);
            display: flex; align-items: center; justify-content: center;
            color: var(--orange); font-size: 2.4rem;
            box-shadow: 0 12px 30px -8px rgba(245,130,32,0.3);
            position: relative;
        }
        .ooz-icon-bg::after {
            content: ''; position: absolute; inset: -8px; border-radius: 50%;
            border: 2px dashed rgba(245,130,32,0.3); animation: ce-spin 16s linear infinite;
        }
        .ooz-title { font-size: 1.25rem; font-weight: 900; color: #0f172a; letter-spacing: -0.02em; margin-bottom: 8px; }
        .ooz-message { font-size: 0.88rem; color: #475569; font-weight: 600; line-height: 1.6; max-width: 320px; margin: 0 auto 18px; }
        .ooz-meta {
            background: linear-gradient(135deg, #fff7ed 0%, #fefce8 100%);
            border: 1px dashed #fed7aa;
            border-radius: 18px; padding: 12px 14px; max-width: 320px; margin: 0 auto;
        }
        .ooz-meta-row {
            display: flex; justify-content: space-between; align-items: center;
            padding: 5px 0; font-size: 0.78rem;
        }
        .ooz-meta-row + .ooz-meta-row { border-top: 1px dashed rgba(234,88,12,0.15); }
        .ooz-meta-label { color: #9a3412; font-weight: 700; display: flex; align-items: center; gap: 6px; }
        .ooz-meta-label i { color: var(--orange); font-size: 0.78rem; }
        .ooz-meta-val { color: #7c2d12; font-weight: 900; }
