.cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
        }

        .cart-header h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .clear-cart {
            font-size: 13px;
            color: #ff6b35;
            float: right;
            cursor: pointer;
        }

        .cart-close {
            font-size: 22px;
            cursor: pointer;
        }

        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.35);
            z-index: 1040;
            display: none;
        }

        .cart-modal {
            position: fixed;
            right: -420px;
            top: 0;
            width: 400px;
            height: 100%;
            background: #fff;
            z-index: 1050;
            transition: right .3s ease;
        }

        .cart-modal.open {
            right: 0;
        }

        .cart-items {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        cart-modal h3 {
            font-weight: 700;
            margin-bottom: 15px;
        }

        .cart-item {
            display: grid;
            grid-template-columns: 1fr auto auto;
            align-items: center;
            background: #f8f9fb;
            padding: 12px 14px;
            border-radius: 12px;
            margin-bottom: 10px;
        }

        .cart-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 15px;
            border-top: 1px solid #eee;
        }

        .cart-subtotal {
            background: #ff6b35;
            color: #fff;
            padding: 14px 16px;
            border-radius: 12px;
            display: flex;
            justify-content: space-between;
            font-size: 16px;
            margin-bottom: 10px;
        }

        .cart-summary .summary-row {
            display: flex;
            justify-content: space-between;
            font-size: 14px;
            margin-bottom: 6px;
            color: #5f6c8a;
        }

        .cart-grand {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 12px;
        }

        .grand-total {
            font-size: 18px;
            font-weight: 700;
            color: #1a202c;
        }

        .order-btn {
            padding: 12px 26px;
            border-radius: 30px;
            background: #f9a825;
            border: none;
            font-size: 16px;
            font-weight: 600;
        }

        .order-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        .cart-item-card {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            border-radius: 14px;
            padding: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
        }

        .cart-item-img img {
            width: 64px;
            height: 64px;
            border-radius: 10px;
            object-fit: cover;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-title {
            font-weight: 600;
            font-size: 14px;
            color: #2c2c2c;
        }

        .cart-item-options {
            font-size: 12px;
            color: #777;
            margin-top: 2px;
        }

        .cart-item-actions {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
        }

        .cart-item-price {
            font-weight: 600;
            font-size: 14px;
        }

        .cart-qty {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .cart-qty button {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            border: none;
            background: #f2f2f2;
            font-size: 18px;
            cursor: pointer;
        }

        .cart-qty span {
            min-width: 20px;
            text-align: center;
            font-weight: 500;
        }