stateset-db 1.22.0

Database implementations for StateSet iCommerce
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
//! PostgreSQL implementation of cart/checkout repository

use super::{PgCustomerRepository, PgOrderRepository, PgPromotionRepository, map_db_error};
use chrono::{DateTime, Duration, Utc};
use rust_decimal::Decimal;
use sqlx::{FromRow, postgres::PgPool};
use stateset_core::{
    AddCartItem, BatchResult, Cart, CartAddress, CartFilter, CartId, CartItem, CartPaymentStatus,
    CartRepository, CartStatus, CartX402Payment, CheckoutResult, CommerceError, CreateCart,
    CreateCustomer, CreateOrder, CreateOrderItem, CurrencyCode, CustomerId, FulfillmentType,
    OrderStatus, PaymentStatus, PromotionType, Result, SetCartPayment, SetCartShipping,
    SetCartX402Payment, ShippingRate, UpdateCart, UpdateCartItem, X402Asset,
    X402AwaitingSettlementData, X402CheckoutResult, X402IntentCreatedData, X402IntentStatus,
    X402Network, X402PaymentRequiredData, validate_batch_size,
};
use uuid::Uuid;

#[derive(Debug, FromRow)]
struct CartRow {
    id: Uuid,
    cart_number: String,
    customer_id: Option<Uuid>,
    status: String,
    currency: CurrencyCode,
    subtotal: Decimal,
    tax_amount: Decimal,
    shipping_amount: Decimal,
    discount_amount: Decimal,
    grand_total: Decimal,
    customer_email: Option<String>,
    customer_phone: Option<String>,
    customer_name: Option<String>,
    shipping_address: Option<serde_json::Value>,
    billing_address: Option<serde_json::Value>,
    billing_same_as_shipping: bool,
    fulfillment_type: Option<String>,
    shipping_method: Option<String>,
    shipping_carrier: Option<String>,
    estimated_delivery: Option<DateTime<Utc>>,
    payment_method: Option<String>,
    payment_token: Option<String>,
    payment_status: String,
    coupon_code: Option<String>,
    discount_description: Option<String>,
    order_id: Option<Uuid>,
    order_number: Option<String>,
    notes: Option<String>,
    metadata: Option<serde_json::Value>,
    inventory_reserved: bool,
    reservation_expires_at: Option<DateTime<Utc>>,
    x402_payer_address: Option<String>,
    x402_network: Option<String>,
    x402_asset: Option<String>,
    x402_intent_id: Option<Uuid>,
    x402_status: Option<String>,
    expires_at: Option<DateTime<Utc>>,
    completed_at: Option<DateTime<Utc>>,
    created_at: DateTime<Utc>,
    updated_at: DateTime<Utc>,
}

impl CartRow {
    fn into_cart(self, items: Vec<CartItem>) -> Result<Cart> {
        let Self {
            id,
            cart_number,
            customer_id,
            status,
            currency,
            subtotal,
            tax_amount,
            shipping_amount,
            discount_amount,
            grand_total,
            customer_email,
            customer_phone,
            customer_name,
            shipping_address,
            billing_address,
            billing_same_as_shipping,
            fulfillment_type,
            shipping_method,
            shipping_carrier,
            estimated_delivery,
            payment_method,
            payment_token,
            payment_status,
            coupon_code,
            discount_description,
            order_id,
            order_number,
            notes,
            metadata,
            inventory_reserved,
            reservation_expires_at,
            x402_payer_address,
            x402_network,
            x402_asset,
            x402_intent_id,
            x402_status,
            expires_at,
            completed_at,
            created_at,
            updated_at,
        } = self;

        let status: CartStatus = status.parse().map_err(|e| {
            CommerceError::DatabaseError(format!("Invalid cart.status '{}': {}", status, e))
        })?;
        let payment_status: CartPaymentStatus = payment_status.parse().map_err(|e| {
            CommerceError::DatabaseError(format!(
                "Invalid cart.payment_status '{}': {}",
                payment_status, e
            ))
        })?;
        let fulfillment_type = match fulfillment_type {
            Some(value) => Some(value.parse::<FulfillmentType>().map_err(|e| {
                CommerceError::DatabaseError(format!(
                    "Invalid cart.fulfillment_type '{}': {}",
                    value, e
                ))
            })?),
            None => None,
        };
        let shipping_address =
            shipping_address.map(serde_json::from_value).transpose().map_err(|e| {
                CommerceError::DatabaseError(format!(
                    "Invalid JSON for cart.shipping_address: {}",
                    e
                ))
            })?;
        let billing_address =
            billing_address.map(serde_json::from_value).transpose().map_err(|e| {
                CommerceError::DatabaseError(format!(
                    "Invalid JSON for cart.billing_address: {}",
                    e
                ))
            })?;
        let x402_payment = match x402_payer_address {
            Some(payer_address) => {
                let network = match x402_network.as_deref() {
                    Some(value) => value.parse::<X402Network>().map_err(|e| {
                        CommerceError::DatabaseError(format!(
                            "Invalid cart.x402_network '{}': {}",
                            value, e
                        ))
                    })?,
                    None => X402Network::default(),
                };
                let asset = match x402_asset.as_deref() {
                    Some(value) => value.parse::<X402Asset>().map_err(|e| {
                        CommerceError::DatabaseError(format!(
                            "Invalid cart.x402_asset '{}': {}",
                            value, e
                        ))
                    })?,
                    None => X402Asset::default(),
                };
                let status = match x402_status.as_deref() {
                    Some(value) => value.parse::<X402IntentStatus>().map_err(|e| {
                        CommerceError::DatabaseError(format!(
                            "Invalid cart.x402_status '{}': {}",
                            value, e
                        ))
                    })?,
                    None => X402IntentStatus::default(),
                };
                Some(CartX402Payment {
                    intent_id: x402_intent_id,
                    payer_address,
                    network,
                    asset,
                    status,
                })
            }
            None => None,
        };

        Ok(Cart {
            id: id.into(),
            cart_number,
            customer_id: customer_id.map(Into::into),
            status,
            currency,
            items,
            subtotal,
            tax_amount,
            shipping_amount,
            discount_amount,
            grand_total,
            customer_email,
            customer_phone,
            customer_name,
            shipping_address,
            billing_address,
            billing_same_as_shipping,
            fulfillment_type,
            shipping_method,
            shipping_carrier,
            estimated_delivery,
            payment_method,
            payment_token,
            payment_status,
            coupon_code,
            discount_description,
            order_id: order_id.map(Into::into),
            order_number,
            notes,
            metadata,
            inventory_reserved,
            reservation_expires_at,
            x402_payment,
            expires_at,
            completed_at,
            created_at,
            updated_at,
        })
    }
}

#[derive(Debug, FromRow)]
struct CartItemRow {
    id: Uuid,
    cart_id: Uuid,
    product_id: Option<Uuid>,
    variant_id: Option<Uuid>,
    sku: String,
    name: String,
    description: Option<String>,
    image_url: Option<String>,
    quantity: i32,
    unit_price: Decimal,
    original_price: Option<Decimal>,
    discount_amount: Decimal,
    tax_amount: Decimal,
    total: Decimal,
    weight: Option<Decimal>,
    requires_shipping: bool,
    metadata: Option<serde_json::Value>,
    created_at: DateTime<Utc>,
    updated_at: DateTime<Utc>,
}

impl From<CartItemRow> for CartItem {
    fn from(row: CartItemRow) -> Self {
        Self {
            id: row.id,
            cart_id: row.cart_id.into(),
            product_id: row.product_id.map(Into::into),
            variant_id: row.variant_id,
            sku: row.sku,
            name: row.name,
            description: row.description,
            image_url: row.image_url,
            quantity: row.quantity,
            unit_price: row.unit_price,
            original_price: row.original_price,
            discount_amount: row.discount_amount,
            tax_amount: row.tax_amount,
            total: row.total,
            weight: row.weight,
            requires_shipping: row.requires_shipping,
            metadata: row.metadata,
            created_at: row.created_at,
            updated_at: row.updated_at,
        }
    }
}

/// PostgreSQL cart repository
#[derive(Debug, Clone)]
pub struct PgCartRepository {
    pool: PgPool,
}

impl PgCartRepository {
    pub const fn new(pool: PgPool) -> Self {
        Self { pool }
    }

    async fn resolve_customer_id_async(&self, cart: &Cart) -> Result<Uuid> {
        let customer_repo = PgCustomerRepository::new(self.pool.clone());

        if let Some(id) = cart.customer_id {
            return Ok(id.into_uuid());
        }

        let email = cart.customer_email.as_ref().ok_or_else(|| {
            CommerceError::ValidationError("Customer ID or email required".to_string())
        })?;

        if let Some(customer) = customer_repo.get_by_email_async(email).await? {
            return Ok(customer.id.into_uuid());
        }

        let (first_name, last_name) = cart
            .customer_name
            .as_deref()
            .map(str::trim)
            .filter(|s| !s.is_empty())
            .map(|name| {
                let mut parts = name.split_whitespace();
                let first = parts.next().unwrap_or("Guest").to_string();
                let rest = parts.collect::<Vec<_>>().join(" ");
                let last = if rest.is_empty() { "Customer".to_string() } else { rest };
                (first, last)
            })
            .unwrap_or_else(|| ("Guest".to_string(), "Customer".to_string()));

        let customer = customer_repo
            .get_or_create_by_email_async(CreateCustomer {
                email: email.clone(),
                first_name,
                last_name,
                ..Default::default()
            })
            .await?;

        Ok(customer.id.into_uuid())
    }

    fn order_items_from_cart(cart: &Cart) -> Vec<CreateOrderItem> {
        cart.items
            .iter()
            .map(|item| CreateOrderItem {
                product_id: item.product_id.unwrap_or_else(|| Uuid::new_v4().into()),
                variant_id: item.variant_id,
                sku: item.sku.clone(),
                name: item.name.clone(),
                quantity: item.quantity,
                unit_price: item.unit_price,
                discount: Some(item.discount_amount),
                tax_amount: Some(item.tax_amount),
            })
            .collect()
    }

    fn billing_address_for_cart(cart: &Cart) -> Option<stateset_core::Address> {
        if cart.billing_same_as_shipping {
            cart.billing_address.clone().or_else(|| cart.shipping_address.clone()).map(Into::into)
        } else {
            cart.billing_address.clone().map(Into::into)
        }
    }

    fn generate_cart_number() -> String {
        let timestamp_ms = Utc::now().timestamp_millis();
        let random_suffix = (Uuid::new_v4().as_u128() & 0xFFFF_FFFF_FFFF_FFFF) as u64;
        format!("CART-{timestamp_ms}-{random_suffix:016x}")
    }

    async fn get_cart_items_async(&self, cart_id: Uuid) -> Result<Vec<CartItem>> {
        let rows: Vec<CartItemRow> =
            sqlx::query_as("SELECT * FROM cart_items WHERE cart_id = $1 ORDER BY created_at")
                .bind(cart_id)
                .fetch_all(&self.pool)
                .await
                .map_err(map_db_error)?;

        Ok(rows.into_iter().map(|r| r.into()).collect())
    }

    async fn get_cart_items_batch_async(
        &self,
        ids: &[Uuid],
    ) -> Result<std::collections::HashMap<Uuid, Vec<CartItem>>> {
        let mut map: std::collections::HashMap<Uuid, Vec<CartItem>> =
            std::collections::HashMap::with_capacity(ids.len());
        if ids.is_empty() {
            return Ok(map);
        }
        let rows: Vec<CartItemRow> =
            sqlx::query_as("SELECT * FROM cart_items WHERE cart_id = ANY($1) ORDER BY created_at")
                .bind(ids.to_vec())
                .fetch_all(&self.pool)
                .await
                .map_err(map_db_error)?;
        for row in rows {
            let parent = row.cart_id;
            map.entry(parent).or_default().push(row.into());
        }
        Ok(map)
    }

    async fn get_cart_with_items(&self, id: Uuid) -> Result<Option<Cart>> {
        let row: Option<CartRow> = sqlx::query_as("SELECT * FROM carts WHERE id = $1")
            .bind(id)
            .fetch_optional(&self.pool)
            .await
            .map_err(map_db_error)?;

        match row {
            Some(cart_row) => {
                let items = self.get_cart_items_async(id).await?;
                Ok(Some(cart_row.into_cart(items)?))
            }
            None => Ok(None),
        }
    }

    async fn update_cart_totals_async(&self, cart_id: Uuid) -> Result<()> {
        // Calculate subtotal from pre-tax line amounts to avoid double-counting tax.
        let subtotal: Decimal = sqlx::query_scalar(
            "SELECT COALESCE(SUM((quantity * unit_price) - discount_amount), 0) FROM cart_items WHERE cart_id = $1",
        )
        .bind(cart_id)
        .fetch_one(&self.pool)
        .await
        .map_err(map_db_error)?;

        // Get current tax, shipping, and discount
        let row: (Decimal, Decimal, Decimal) = sqlx::query_as(
            "SELECT tax_amount, shipping_amount, discount_amount FROM carts WHERE id = $1",
        )
        .bind(cart_id)
        .fetch_one(&self.pool)
        .await
        .map_err(map_db_error)?;

        let (tax_amount, shipping_amount, discount_amount) = row;

        // Round the subtotal to the currency minor unit explicitly (rather than
        // relying on the DECIMAL(12,2) column to coerce), so the rounding
        // strategy matches the SQLite backend exactly.
        let subtotal = subtotal.round_dp(2);

        // Clamp at zero: a discount larger than subtotal + tax + shipping must
        // not produce a negative total (which would charge the buyer a negative
        // amount at checkout).
        let grand_total = (subtotal + tax_amount + shipping_amount - discount_amount)
            .round_dp(2)
            .max(Decimal::ZERO);

        sqlx::query(
            "UPDATE carts SET subtotal = $1, grand_total = $2, updated_at = $3 WHERE id = $4",
        )
        .bind(subtotal)
        .bind(grand_total)
        .bind(Utc::now())
        .bind(cart_id)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        Ok(())
    }

    async fn finalize_x402_checkout_async(&self, cart_id: Uuid) -> Result<X402CheckoutResult> {
        let cart = self.get_cart_with_items(cart_id).await?.ok_or(CommerceError::NotFound)?;

        if cart.status == CartStatus::Completed {
            if let (Some(order_id), Some(order_number)) = (cart.order_id, cart.order_number.clone())
            {
                return Ok(X402CheckoutResult::Completed(CheckoutResult {
                    cart_id: cart_id.into(),
                    order_id,
                    order_number,
                    payment_id: None,
                    total_charged: cart.grand_total,
                    currency: cart.currency,
                }));
            }
        }

        let order_repo = PgOrderRepository::new(self.pool.clone());
        let customer_id = self.resolve_customer_id_async(&cart).await?;
        let order_items = Self::order_items_from_cart(&cart);

        let shipping_address = cart.shipping_address.clone().map(Into::into);
        let billing_address = Self::billing_address_for_cart(&cart);
        let order = order_repo
            .create_from_cart_async(
                cart_id,
                CreateOrder {
                    customer_id: customer_id.into(),
                    items: order_items,
                    currency: Some(cart.currency),
                    shipping_address,
                    billing_address,
                    notes: cart.notes.clone(),
                    payment_method: cart.payment_method.clone(),
                    shipping_method: cart.shipping_method.clone(),
                },
            )
            .await?;

        // Promote the order and complete the cart atomically (x402 settlement
        // is already durable upstream; order creation above is idempotent by
        // cart_id, so a crash before this transaction commits is converged by
        // checkout replay).
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;
        sqlx::query(
            r#"UPDATE orders SET
                status = $2, payment_status = $3, updated_at = $4, version = version + 1
            WHERE id = $1"#,
        )
        .bind(order.id)
        .bind(OrderStatus::Confirmed.to_string())
        .bind(PaymentStatus::Paid.to_string())
        .bind(Utc::now())
        .execute(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        let now = Utc::now();
        sqlx::query(
            r#"UPDATE carts SET
                status = 'completed', order_id = $1, order_number = $2,
                payment_status = 'captured', x402_status = $3,
                completed_at = $4, updated_at = $5, customer_id = $6
             WHERE id = $7"#,
        )
        .bind(order.id)
        .bind(&order.order_number)
        .bind(X402IntentStatus::Settled.to_string())
        .bind(now)
        .bind(now)
        .bind(customer_id)
        .bind(cart_id)
        .execute(tx.as_mut())
        .await
        .map_err(map_db_error)?;
        tx.commit().await.map_err(map_db_error)?;

        Ok(X402CheckoutResult::Completed(CheckoutResult {
            cart_id: cart_id.into(),
            order_id: order.id,
            order_number: order.order_number,
            payment_id: None,
            total_charged: cart.grand_total,
            currency: cart.currency,
        }))
    }

    // Async implementations
    pub async fn create_async(&self, input: CreateCart) -> Result<Cart> {
        let id = Uuid::new_v4();
        let cart_number = Self::generate_cart_number();
        let now = Utc::now();
        let currency = input.currency.unwrap_or(CurrencyCode::USD);
        let expires_at = input.expires_in_minutes.map(|mins| now + Duration::minutes(mins));

        let shipping_address_json =
            input.shipping_address.as_ref().map(|a| serde_json::to_value(a).unwrap_or_default());
        let billing_address_json =
            input.billing_address.as_ref().map(|a| serde_json::to_value(a).unwrap_or_default());
        let metadata_json = input.metadata.clone();

        let mut tx = self.pool.begin().await.map_err(map_db_error)?;

        sqlx::query(
            r#"INSERT INTO carts (
                id, cart_number, customer_id, status, currency,
                subtotal, tax_amount, shipping_amount, discount_amount, grand_total,
                customer_email, customer_name, shipping_address, billing_address,
                notes, metadata, expires_at, created_at, updated_at
            ) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19)"#,
        )
        .bind(id)
        .bind(&cart_number)
        .bind(input.customer_id)
        .bind("active")
        .bind(currency)
        .bind(Decimal::ZERO)
        .bind(Decimal::ZERO)
        .bind(Decimal::ZERO)
        .bind(Decimal::ZERO)
        .bind(Decimal::ZERO)
        .bind(&input.customer_email)
        .bind(&input.customer_name)
        .bind(&shipping_address_json)
        .bind(&billing_address_json)
        .bind(&input.notes)
        .bind(&metadata_json)
        .bind(expires_at)
        .bind(now)
        .bind(now)
        .execute(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        // Add initial items if provided
        let mut items = vec![];
        if let Some(input_items) = &input.items {
            for item_input in input_items {
                let item = self.add_item_internal(&mut tx, id, item_input.clone()).await?;
                items.push(item);
            }
        }

        // Update totals
        let subtotal: Decimal = sqlx::query_scalar(
            "SELECT COALESCE(SUM((quantity * unit_price) - discount_amount), 0) FROM cart_items WHERE cart_id = $1",
        )
        .bind(id)
        .fetch_one(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        sqlx::query("UPDATE carts SET subtotal = $1, grand_total = $2 WHERE id = $3")
            .bind(subtotal)
            .bind(subtotal)
            .bind(id)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        tx.commit().await.map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    async fn add_item_internal(
        &self,
        tx: &mut sqlx::Transaction<'_, sqlx::Postgres>,
        cart_id: Uuid,
        item: AddCartItem,
    ) -> Result<CartItem> {
        let item_id = Uuid::new_v4();
        let now = Utc::now();
        let requires_shipping = item.requires_shipping.unwrap_or(true);
        let total =
            CartItem::calculate_total(item.quantity, item.unit_price, Decimal::ZERO, Decimal::ZERO);
        let metadata_json = item.metadata.clone();

        sqlx::query(
            r#"INSERT INTO cart_items (
                id, cart_id, product_id, variant_id, sku, name, description,
                image_url, quantity, unit_price, original_price, discount_amount,
                tax_amount, total, weight, requires_shipping, metadata,
                created_at, updated_at
            ) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19)"#,
        )
        .bind(item_id)
        .bind(cart_id)
        .bind(item.product_id)
        .bind(item.variant_id)
        .bind(&item.sku)
        .bind(&item.name)
        .bind(&item.description)
        .bind(&item.image_url)
        .bind(item.quantity)
        .bind(item.unit_price)
        .bind(item.original_price)
        .bind(Decimal::ZERO)
        .bind(Decimal::ZERO)
        .bind(total)
        .bind(item.weight)
        .bind(requires_shipping)
        .bind(&metadata_json)
        .bind(now)
        .bind(now)
        .execute(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        Ok(CartItem {
            id: item_id,
            cart_id: cart_id.into(),
            product_id: item.product_id,
            variant_id: item.variant_id,
            sku: item.sku,
            name: item.name,
            description: item.description,
            image_url: item.image_url,
            quantity: item.quantity,
            unit_price: item.unit_price,
            original_price: item.original_price,
            discount_amount: Decimal::ZERO,
            tax_amount: Decimal::ZERO,
            total,
            weight: item.weight,
            requires_shipping,
            metadata: item.metadata,
            created_at: now,
            updated_at: now,
        })
    }

    pub async fn get_async(&self, id: Uuid) -> Result<Option<Cart>> {
        self.get_cart_with_items(id).await
    }

    pub async fn get_by_number_async(&self, cart_number: &str) -> Result<Option<Cart>> {
        let row: Option<CartRow> = sqlx::query_as("SELECT * FROM carts WHERE cart_number = $1")
            .bind(cart_number)
            .fetch_optional(&self.pool)
            .await
            .map_err(map_db_error)?;

        match row {
            Some(cart_row) => {
                let items = self.get_cart_items_async(cart_row.id).await?;
                Ok(Some(cart_row.into_cart(items)?))
            }
            None => Ok(None),
        }
    }

    pub async fn update_async(&self, id: Uuid, input: UpdateCart) -> Result<Cart> {
        let now = Utc::now();

        sqlx::query(
            r#"UPDATE carts SET
                customer_id = COALESCE($1, customer_id),
                customer_email = COALESCE($2, customer_email),
                customer_phone = COALESCE($3, customer_phone),
                customer_name = COALESCE($4, customer_name),
                shipping_address = COALESCE($5, shipping_address),
                billing_address = COALESCE($6, billing_address),
                billing_same_as_shipping = COALESCE($7, billing_same_as_shipping),
                fulfillment_type = COALESCE($8, fulfillment_type),
                shipping_method = COALESCE($9, shipping_method),
                shipping_carrier = COALESCE($10, shipping_carrier),
                coupon_code = COALESCE($11, coupon_code),
                discount_amount = COALESCE($12, discount_amount),
                discount_description = COALESCE($13, discount_description),
                notes = COALESCE($14, notes),
                metadata = COALESCE($15, metadata),
                updated_at = $16
            WHERE id = $17"#,
        )
        .bind(input.customer_id)
        .bind(&input.customer_email)
        .bind(&input.customer_phone)
        .bind(&input.customer_name)
        .bind(input.shipping_address.as_ref().map(|a| serde_json::to_value(a).unwrap_or_default()))
        .bind(input.billing_address.as_ref().map(|a| serde_json::to_value(a).unwrap_or_default()))
        .bind(input.billing_same_as_shipping)
        .bind(input.fulfillment_type.map(|f| f.to_string()))
        .bind(&input.shipping_method)
        .bind(&input.shipping_carrier)
        .bind(&input.coupon_code)
        .bind(input.discount_amount)
        .bind(&input.discount_description)
        .bind(&input.notes)
        .bind(&input.metadata)
        .bind(now)
        .bind(id)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn list_async(&self, filter: CartFilter) -> Result<Vec<Cart>> {
        let mut sql = "SELECT * FROM carts WHERE 1=1".to_string();
        let mut param_count = 0;

        if filter.customer_id.is_some() {
            param_count += 1;
            sql.push_str(&format!(" AND customer_id = ${}", param_count));
        }
        if filter.customer_email.is_some() {
            param_count += 1;
            sql.push_str(&format!(" AND customer_email = ${}", param_count));
        }
        if filter.status.is_some() {
            param_count += 1;
            sql.push_str(&format!(" AND status = ${}", param_count));
        }
        if let Some(has_items) = filter.has_items {
            if has_items {
                sql.push_str(" AND id IN (SELECT DISTINCT cart_id FROM cart_items)");
            } else {
                sql.push_str(" AND id NOT IN (SELECT DISTINCT cart_id FROM cart_items)");
            }
        }
        if let Some(true) = filter.is_abandoned {
            sql.push_str(" AND status = 'abandoned'");
        }
        if filter.created_after.is_some() {
            param_count += 1;
            sql.push_str(&format!(" AND created_at >= ${}", param_count));
        }
        if filter.created_before.is_some() {
            param_count += 1;
            sql.push_str(&format!(" AND created_at <= ${}", param_count));
        }

        sql.push_str(" ORDER BY created_at DESC");

        param_count += 1;
        sql.push_str(&format!(" LIMIT ${}", param_count));
        if filter.offset.is_some() {
            param_count += 1;
            sql.push_str(&format!(" OFFSET ${}", param_count));
        }

        let mut query = sqlx::query_as::<_, CartRow>(&sql);

        if let Some(customer_id) = filter.customer_id {
            query = query.bind(customer_id);
        }
        if let Some(email) = filter.customer_email {
            query = query.bind(email);
        }
        if let Some(status) = filter.status {
            query = query.bind(status.to_string());
        }
        if let Some(from) = filter.created_after {
            query = query.bind(from);
        }
        if let Some(to) = filter.created_before {
            query = query.bind(to);
        }
        query = query.bind(super::effective_limit(filter.limit));
        if let Some(offset) = filter.offset {
            query = query.bind(offset as i64);
        }

        let rows: Vec<CartRow> = query.fetch_all(&self.pool).await.map_err(map_db_error)?;

        let ids: Vec<Uuid> = rows.iter().map(|r| r.id).collect();
        let mut items_by_id = self.get_cart_items_batch_async(&ids).await?;
        let mut carts = Vec::new();
        for row in rows {
            let items = items_by_id.remove(&row.id).unwrap_or_default();
            carts.push(row.into_cart(items)?);
        }

        Ok(carts)
    }

    pub async fn for_customer_async(&self, customer_id: Uuid) -> Result<Vec<Cart>> {
        self.list_async(CartFilter { customer_id: Some(customer_id.into()), ..Default::default() })
            .await
    }

    pub async fn delete_async(&self, id: Uuid) -> Result<()> {
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;

        sqlx::query("DELETE FROM cart_items WHERE cart_id = $1")
            .bind(id)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        sqlx::query("DELETE FROM carts WHERE id = $1")
            .bind(id)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        tx.commit().await.map_err(map_db_error)?;

        Ok(())
    }

    pub async fn add_item_async(&self, cart_id: Uuid, item: AddCartItem) -> Result<CartItem> {
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;
        let result = self.add_item_internal(&mut tx, cart_id, item).await?;

        // Update cart totals
        let subtotal: Decimal = sqlx::query_scalar(
            "SELECT COALESCE(SUM((quantity * unit_price) - discount_amount), 0) FROM cart_items WHERE cart_id = $1",
        )
        .bind(cart_id)
        .fetch_one(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        let (tax, shipping, discount): (Decimal, Decimal, Decimal) = sqlx::query_as(
            "SELECT tax_amount, shipping_amount, discount_amount FROM carts WHERE id = $1",
        )
        .bind(cart_id)
        .fetch_one(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        let grand_total = (subtotal + tax + shipping - discount).max(Decimal::ZERO);

        sqlx::query(
            "UPDATE carts SET subtotal = $1, grand_total = $2, updated_at = $3 WHERE id = $4",
        )
        .bind(subtotal)
        .bind(grand_total)
        .bind(Utc::now())
        .bind(cart_id)
        .execute(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        tx.commit().await.map_err(map_db_error)?;

        Ok(result)
    }

    pub async fn update_item_async(
        &self,
        item_id: Uuid,
        input: UpdateCartItem,
    ) -> Result<CartItem> {
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;
        let now = Utc::now();

        // Get cart_id for this item
        let cart_id: Uuid = sqlx::query_scalar("SELECT cart_id FROM cart_items WHERE id = $1")
            .bind(item_id)
            .fetch_one(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        // Update item fields
        if let Some(qty) = input.quantity {
            sqlx::query("UPDATE cart_items SET quantity = $1, updated_at = $2 WHERE id = $3")
                .bind(qty)
                .bind(now)
                .bind(item_id)
                .execute(tx.as_mut())
                .await
                .map_err(map_db_error)?;
        }
        if let Some(price) = input.unit_price {
            sqlx::query("UPDATE cart_items SET unit_price = $1, updated_at = $2 WHERE id = $3")
                .bind(price)
                .bind(now)
                .bind(item_id)
                .execute(tx.as_mut())
                .await
                .map_err(map_db_error)?;
        }
        if let Some(discount) = input.discount_amount {
            sqlx::query(
                "UPDATE cart_items SET discount_amount = $1, updated_at = $2 WHERE id = $3",
            )
            .bind(discount)
            .bind(now)
            .bind(item_id)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;
        }
        if let Some(meta) = &input.metadata {
            sqlx::query("UPDATE cart_items SET metadata = $1, updated_at = $2 WHERE id = $3")
                .bind(meta)
                .bind(now)
                .bind(item_id)
                .execute(tx.as_mut())
                .await
                .map_err(map_db_error)?;
        }

        // Recalculate item total
        let (qty, unit_price, discount, tax): (i32, Decimal, Decimal, Decimal) = sqlx::query_as(
            "SELECT quantity, unit_price, discount_amount, tax_amount FROM cart_items WHERE id = $1",
        )
        .bind(item_id)
        .fetch_one(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        let total = CartItem::calculate_total(qty, unit_price, discount, tax);

        sqlx::query("UPDATE cart_items SET total = $1 WHERE id = $2")
            .bind(total)
            .bind(item_id)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        // Update cart totals
        let subtotal: Decimal = sqlx::query_scalar(
            "SELECT COALESCE(SUM((quantity * unit_price) - discount_amount), 0) FROM cart_items WHERE cart_id = $1",
        )
        .bind(cart_id)
        .fetch_one(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        let (cart_tax, shipping, discount_cart): (Decimal, Decimal, Decimal) = sqlx::query_as(
            "SELECT tax_amount, shipping_amount, discount_amount FROM carts WHERE id = $1",
        )
        .bind(cart_id)
        .fetch_one(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        let grand_total = (subtotal + cart_tax + shipping - discount_cart).max(Decimal::ZERO);

        sqlx::query(
            "UPDATE carts SET subtotal = $1, grand_total = $2, updated_at = $3 WHERE id = $4",
        )
        .bind(subtotal)
        .bind(grand_total)
        .bind(now)
        .bind(cart_id)
        .execute(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        // Fetch updated item
        let item: CartItemRow = sqlx::query_as("SELECT * FROM cart_items WHERE id = $1")
            .bind(item_id)
            .fetch_one(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        tx.commit().await.map_err(map_db_error)?;

        Ok(item.into())
    }

    pub async fn remove_item_async(&self, item_id: Uuid) -> Result<()> {
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;

        // Get cart_id before deleting
        let cart_id: Uuid = sqlx::query_scalar("SELECT cart_id FROM cart_items WHERE id = $1")
            .bind(item_id)
            .fetch_one(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        sqlx::query("DELETE FROM cart_items WHERE id = $1")
            .bind(item_id)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        // Update cart totals
        let subtotal: Decimal = sqlx::query_scalar(
            "SELECT COALESCE(SUM((quantity * unit_price) - discount_amount), 0) FROM cart_items WHERE cart_id = $1",
        )
        .bind(cart_id)
        .fetch_one(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        let (tax, shipping, discount): (Decimal, Decimal, Decimal) = sqlx::query_as(
            "SELECT tax_amount, shipping_amount, discount_amount FROM carts WHERE id = $1",
        )
        .bind(cart_id)
        .fetch_one(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        let grand_total = (subtotal + tax + shipping - discount).max(Decimal::ZERO);

        sqlx::query(
            "UPDATE carts SET subtotal = $1, grand_total = $2, updated_at = $3 WHERE id = $4",
        )
        .bind(subtotal)
        .bind(grand_total)
        .bind(Utc::now())
        .bind(cart_id)
        .execute(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        tx.commit().await.map_err(map_db_error)?;

        Ok(())
    }

    pub async fn get_items_async(&self, cart_id: Uuid) -> Result<Vec<CartItem>> {
        self.get_cart_items_async(cart_id).await
    }

    pub async fn clear_items_async(&self, cart_id: Uuid) -> Result<()> {
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;

        sqlx::query("DELETE FROM cart_items WHERE cart_id = $1")
            .bind(cart_id)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        sqlx::query(
            "UPDATE carts SET subtotal = 0, grand_total = 0, updated_at = $1 WHERE id = $2",
        )
        .bind(Utc::now())
        .bind(cart_id)
        .execute(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        tx.commit().await.map_err(map_db_error)?;

        Ok(())
    }

    pub async fn set_shipping_address_async(&self, id: Uuid, address: CartAddress) -> Result<Cart> {
        let address_json = serde_json::to_value(&address).unwrap_or_default();

        sqlx::query("UPDATE carts SET shipping_address = $1, updated_at = $2 WHERE id = $3")
            .bind(&address_json)
            .bind(Utc::now())
            .bind(id)
            .execute(&self.pool)
            .await
            .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn set_billing_address_async(&self, id: Uuid, address: CartAddress) -> Result<Cart> {
        let address_json = serde_json::to_value(&address).unwrap_or_default();

        sqlx::query(
            "UPDATE carts SET billing_address = $1, billing_same_as_shipping = false, updated_at = $2 WHERE id = $3",
        )
        .bind(&address_json)
        .bind(Utc::now())
        .bind(id)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn set_shipping_async(&self, id: Uuid, shipping: SetCartShipping) -> Result<Cart> {
        let address_json = serde_json::to_value(&shipping.shipping_address).unwrap_or_default();
        let shipping_amount = shipping.shipping_amount.unwrap_or_default();

        sqlx::query(
            r#"UPDATE carts SET
                shipping_address = $1, shipping_method = $2, shipping_carrier = $3,
                shipping_amount = $4, updated_at = $5
            WHERE id = $6"#,
        )
        .bind(&address_json)
        .bind(&shipping.shipping_method)
        .bind(&shipping.shipping_carrier)
        .bind(shipping_amount)
        .bind(Utc::now())
        .bind(id)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        self.recalculate_async(id).await
    }

    pub async fn get_shipping_rates_async(&self, _id: Uuid) -> Result<Vec<ShippingRate>> {
        // Default rates - would integrate with shipping providers in real implementation
        Ok(vec![
            ShippingRate {
                id: "standard".to_string(),
                carrier: "USPS".to_string(),
                service: "Ground".to_string(),
                description: Some("Standard shipping (5-7 business days)".to_string()),
                price: Decimal::new(599, 2),
                currency: CurrencyCode::USD,
                estimated_days: Some(7),
                estimated_delivery: None,
            },
            ShippingRate {
                id: "express".to_string(),
                carrier: "UPS".to_string(),
                service: "Express".to_string(),
                description: Some("Express shipping (2-3 business days)".to_string()),
                price: Decimal::new(1499, 2),
                currency: CurrencyCode::USD,
                estimated_days: Some(3),
                estimated_delivery: None,
            },
            ShippingRate {
                id: "overnight".to_string(),
                carrier: "FedEx".to_string(),
                service: "Overnight".to_string(),
                description: Some("Next business day delivery".to_string()),
                price: Decimal::new(2999, 2),
                currency: CurrencyCode::USD,
                estimated_days: Some(1),
                estimated_delivery: None,
            },
        ])
    }

    pub async fn set_payment_async(&self, id: Uuid, payment: SetCartPayment) -> Result<Cart> {
        let billing_json =
            payment.billing_address.as_ref().map(|a| serde_json::to_value(a).unwrap_or_default());

        if let Some(billing) = billing_json {
            sqlx::query(
                r#"UPDATE carts SET
                    payment_method = $1, payment_token = $2, payment_status = 'method_selected',
                    billing_address = $3, updated_at = $4
                WHERE id = $5"#,
            )
            .bind(&payment.payment_method)
            .bind(&payment.payment_token)
            .bind(&billing)
            .bind(Utc::now())
            .bind(id)
            .execute(&self.pool)
            .await
            .map_err(map_db_error)?;
        } else {
            sqlx::query(
                r#"UPDATE carts SET
                    payment_method = $1, payment_token = $2, payment_status = 'method_selected',
                    updated_at = $3
                WHERE id = $4"#,
            )
            .bind(&payment.payment_method)
            .bind(&payment.payment_token)
            .bind(Utc::now())
            .bind(id)
            .execute(&self.pool)
            .await
            .map_err(map_db_error)?;
        }

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn set_x402_payment_async(
        &self,
        id: Uuid,
        payment: SetCartX402Payment,
    ) -> Result<Cart> {
        sqlx::query(
            r#"UPDATE carts SET
                x402_payer_address = $1, x402_network = $2, x402_asset = $3,
                x402_status = $4, payment_method = 'x402', updated_at = $5
            WHERE id = $6"#,
        )
        .bind(payment.payer_address)
        .bind(payment.network.to_string())
        .bind(payment.asset.to_string().to_lowercase())
        .bind(X402IntentStatus::Created.to_string())
        .bind(Utc::now())
        .bind(id)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn complete_with_x402_async(
        &self,
        id: Uuid,
        payee_address: &str,
    ) -> Result<X402CheckoutResult> {
        use rust_decimal::prelude::ToPrimitive;

        let cart = self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)?;

        if cart.status == CartStatus::Completed {
            if let (Some(order_id), Some(order_number)) = (cart.order_id, cart.order_number.clone())
            {
                return Ok(X402CheckoutResult::Completed(CheckoutResult {
                    cart_id: id.into(),
                    order_id,
                    order_number,
                    payment_id: None,
                    total_charged: cart.grand_total,
                    currency: cart.currency,
                }));
            }
        }

        // A cancelled/abandoned/expired cart must never be minted into an order.
        if !cart.is_checkoutable_status() {
            return Err(CommerceError::Conflict(format!(
                "Cart cannot be checked out in status: {}",
                cart.status
            )));
        }

        if !cart.is_ready_for_checkout() {
            return Err(CommerceError::ValidationError(
                "Cart is not ready for checkout - ensure items, customer info, and shipping address are set".to_string(),
            ));
        }

        let x402_payment = cart.x402_payment.as_ref().ok_or_else(|| {
            CommerceError::ValidationError(
                "x402 payment not configured. Call set_x402_payment first".to_string(),
            )
        })?;

        let decimals = x402_payment.asset.decimals();
        let multiplier = Decimal::from(10u64.pow(decimals as u32));
        let amount_scaled = cart.grand_total * multiplier;
        let amount = amount_scaled.to_u64().unwrap_or(0);
        let amount_display = format!("{:.6} {}", cart.grand_total, x402_payment.asset);

        if let Some(intent_id) = x402_payment.intent_id {
            type IntentStatusRow = (String, Option<String>, Option<i64>, Option<Uuid>);
            let row: Option<IntentStatusRow> = sqlx::query_as(
                "SELECT status, signing_hash, sequence_number, batch_id FROM x402_payment_intents WHERE id = $1",
            )
            .bind(intent_id)
            .fetch_optional(&self.pool)
            .await
            .map_err(map_db_error)?;

            if let Some((status_str, signing_hash, seq_num, batch_id)) = row {
                let status: X402IntentStatus = status_str.parse().unwrap_or_default();
                match status {
                    X402IntentStatus::Settled => {
                        return self.finalize_x402_checkout_async(id).await;
                    }
                    X402IntentStatus::Signed
                    | X402IntentStatus::Sequenced
                    | X402IntentStatus::Batched => {
                        return Ok(X402CheckoutResult::AwaitingSettlement(
                            X402AwaitingSettlementData {
                                cart_id: id.into(),
                                intent_id,
                                status,
                                sequence_number: seq_num.map(|n| n as u64),
                                batch_id,
                            },
                        ));
                    }
                    X402IntentStatus::Created => {
                        return Ok(X402CheckoutResult::IntentCreated(X402IntentCreatedData {
                            cart_id: id.into(),
                            intent_id,
                            signing_hash: signing_hash.unwrap_or_default(),
                            amount,
                            amount_display,
                            asset: x402_payment.asset,
                            network: x402_payment.network,
                            payee_address: payee_address.to_string(),
                            valid_until: 0,
                            nonce: 0,
                        }));
                    }
                    X402IntentStatus::Expired
                    | X402IntentStatus::Failed
                    | X402IntentStatus::Cancelled => {}
                    _ => {}
                }
            }
        }

        let chain_id = x402_payment.network.chain_id();
        Ok(X402CheckoutResult::PaymentRequired(X402PaymentRequiredData {
            cart_id: id.into(),
            payee_address: payee_address.to_string(),
            amount,
            amount_display,
            asset: x402_payment.asset,
            network: x402_payment.network,
            chain_id,
            valid_seconds: 3600,
        }))
    }

    pub async fn apply_discount_async(&self, id: Uuid, coupon_code: &str) -> Result<Cart> {
        // Get the cart first to calculate the discount off its subtotal.
        let cart = self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)?;

        // Look up the coupon and its promotion. An unknown coupon is rejected
        // (rather than silently stamped onto the cart).
        let promo_repo = PgPromotionRepository::new(self.pool.clone());
        let coupon = promo_repo.get_coupon_by_code_async(coupon_code).await?.ok_or_else(|| {
            CommerceError::ValidationError(format!("Invalid coupon code: {coupon_code}"))
        })?;

        let promotion = promo_repo
            .get_async(coupon.promotion_id)
            .await?
            .ok_or_else(|| CommerceError::ValidationError("Promotion not found".into()))?;

        // Calculate the discount based on promotion type (mirrors the SQLite
        // backend so the two agree to the cent).
        let subtotal = cart.subtotal;
        let discount_amount = match promotion.promotion_type {
            PromotionType::PercentageOff => {
                let percentage = promotion.percentage_off.unwrap_or(Decimal::ZERO);
                let discount = subtotal * percentage;
                // Apply max discount cap if set.
                if let Some(max) = promotion.max_discount_amount {
                    discount.min(max)
                } else {
                    discount
                }
            }
            PromotionType::FixedAmountOff => {
                promotion.fixed_amount_off.unwrap_or(Decimal::ZERO).min(subtotal)
            }
            _ => Decimal::ZERO, // Other types not fully implemented
        };

        let discount_description = promotion.name;

        // Update the cart with the coupon + computed discount.
        sqlx::query(
            "UPDATE carts SET coupon_code = $1, discount_amount = $2, discount_description = $3,
             updated_at = $4 WHERE id = $5",
        )
        .bind(coupon_code)
        .bind(discount_amount)
        .bind(&discount_description)
        .bind(Utc::now())
        .bind(id)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        // Recalculate totals (grand_total reflects the new discount) and return.
        self.recalculate_async(id).await
    }

    pub async fn remove_discount_async(&self, id: Uuid) -> Result<Cart> {
        sqlx::query(
            r#"UPDATE carts SET
                coupon_code = NULL, discount_amount = 0, discount_description = NULL,
                updated_at = $1
            WHERE id = $2"#,
        )
        .bind(Utc::now())
        .bind(id)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        self.recalculate_async(id).await
    }

    pub async fn mark_ready_for_payment_async(&self, id: Uuid) -> Result<Cart> {
        let cart = self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)?;

        if !cart.is_ready_for_checkout() {
            return Err(CommerceError::ValidationError(
                "Cart is not ready for checkout".to_string(),
            ));
        }

        sqlx::query("UPDATE carts SET status = 'ready_for_payment', updated_at = $1 WHERE id = $2")
            .bind(Utc::now())
            .bind(id)
            .execute(&self.pool)
            .await
            .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn begin_checkout_async(&self, id: Uuid) -> Result<Cart> {
        sqlx::query("UPDATE carts SET status = 'payment_pending', updated_at = $1 WHERE id = $2")
            .bind(Utc::now())
            .bind(id)
            .execute(&self.pool)
            .await
            .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn complete_async(&self, id: Uuid) -> Result<CheckoutResult> {
        self.complete_checkout_async(id, false).await
    }

    /// See [`CartRepository::complete_settled_externally`]: explicit opt-in to
    /// mint a `Paid` order with no engine-side payment record.
    pub async fn complete_settled_externally_async(&self, id: Uuid) -> Result<CheckoutResult> {
        self.complete_checkout_async(id, true).await
    }

    async fn complete_checkout_async(&self, id: Uuid, mark_paid: bool) -> Result<CheckoutResult> {
        // Lock the cart row so only one checkout can run at a time.
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;

        // Use NO KEY UPDATE so a checkout can insert an order referencing `carts(id)` via a
        // foreign key (`orders.cart_id`) without deadlocking.
        let row: Option<CartRow> =
            sqlx::query_as("SELECT * FROM carts WHERE id = $1 FOR NO KEY UPDATE")
                .bind(id)
                .fetch_optional(tx.as_mut())
                .await
                .map_err(map_db_error)?;

        let row = match row {
            Some(row) => row,
            None => {
                tx.commit().await.map_err(map_db_error)?;
                return Err(CommerceError::NotFound);
            }
        };

        let item_rows: Vec<CartItemRow> =
            sqlx::query_as("SELECT * FROM cart_items WHERE cart_id = $1 ORDER BY created_at")
                .bind(id)
                .fetch_all(tx.as_mut())
                .await
                .map_err(map_db_error)?;

        let items: Vec<CartItem> = item_rows.into_iter().map(Into::into).collect();
        let cart = row.into_cart(items)?;

        // Idempotent checkout: if already completed, return the existing order reference.
        if cart.status == CartStatus::Completed {
            if let (Some(order_id), Some(order_number)) = (cart.order_id, cart.order_number.clone())
            {
                tx.commit().await.map_err(map_db_error)?;
                return Ok(CheckoutResult {
                    cart_id: id.into(),
                    order_id,
                    order_number,
                    payment_id: None,
                    total_charged: cart.grand_total,
                    currency: cart.currency,
                });
            }
        }

        // A cancelled/abandoned/expired cart must never be minted into an order.
        if !cart.is_checkoutable_status() {
            tx.commit().await.map_err(map_db_error)?;
            return Err(CommerceError::Conflict(format!(
                "Cart cannot be checked out in status: {}",
                cart.status
            )));
        }

        if !cart.is_ready_for_checkout() {
            tx.commit().await.map_err(map_db_error)?;
            return Err(CommerceError::ValidationError(
                "Cart is not ready for checkout - ensure items, customer info, and shipping address are set".to_string(),
            ));
        }

        let customer_id = self.resolve_customer_id_async(&cart).await?;
        let order_items = Self::order_items_from_cart(&cart);

        let shipping_address = cart.shipping_address.clone().map(Into::into);
        let billing_address = Self::billing_address_for_cart(&cart);

        let order_repo = PgOrderRepository::new(self.pool.clone());
        let order = order_repo
            .create_from_cart_async(
                id,
                CreateOrder {
                    customer_id: customer_id.into(),
                    items: order_items,
                    currency: Some(cart.currency),
                    shipping_address,
                    billing_address,
                    notes: cart.notes.clone(),
                    payment_method: cart.payment_method.clone(),
                    shipping_method: cart.shipping_method.clone(),
                },
            )
            .await?;

        // Promote the order inside the same transaction that completes the
        // cart: a confirmed (and, with `mark_paid`, revenue-recognized) order
        // must never become visible unless the cart atomically completes with
        // it. Order *creation* above intentionally commits separately — it is
        // idempotent by cart_id, so a crash before this transaction commits is
        // converged by checkout replay.
        sqlx::query(
            r#"UPDATE orders SET
                status = $2,
                payment_status = CASE WHEN $3 THEN $4 ELSE payment_status END,
                updated_at = $5, version = version + 1
            WHERE id = $1"#,
        )
        .bind(order.id)
        .bind(OrderStatus::Confirmed.to_string())
        .bind(mark_paid)
        .bind(PaymentStatus::Paid.to_string())
        .bind(Utc::now())
        .execute(tx.as_mut())
        .await
        .map_err(map_db_error)?;

        let now = Utc::now();
        let cart_update = if mark_paid {
            r#"UPDATE carts SET
                status = 'completed', order_id = $1, order_number = $2,
                payment_status = 'captured', completed_at = $3, updated_at = $4, customer_id = $5
            WHERE id = $6"#
        } else {
            r#"UPDATE carts SET
                status = 'completed', order_id = $1, order_number = $2,
                completed_at = $3, updated_at = $4, customer_id = $5
            WHERE id = $6"#
        };
        sqlx::query(cart_update)
            .bind(order.id)
            .bind(&order.order_number)
            .bind(now)
            .bind(now)
            .bind(customer_id)
            .bind(id)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        tx.commit().await.map_err(map_db_error)?;

        Ok(CheckoutResult {
            cart_id: id.into(),
            order_id: order.id,
            order_number: order.order_number,
            payment_id: None,
            total_charged: cart.grand_total,
            currency: cart.currency,
        })
    }

    pub async fn cancel_async(&self, id: Uuid) -> Result<Cart> {
        sqlx::query("UPDATE carts SET status = 'cancelled', updated_at = $1 WHERE id = $2")
            .bind(Utc::now())
            .bind(id)
            .execute(&self.pool)
            .await
            .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn abandon_async(&self, id: Uuid) -> Result<Cart> {
        sqlx::query("UPDATE carts SET status = 'abandoned', updated_at = $1 WHERE id = $2")
            .bind(Utc::now())
            .bind(id)
            .execute(&self.pool)
            .await
            .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn expire_async(&self, id: Uuid) -> Result<Cart> {
        sqlx::query("UPDATE carts SET status = 'expired', updated_at = $1 WHERE id = $2")
            .bind(Utc::now())
            .bind(id)
            .execute(&self.pool)
            .await
            .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn reserve_inventory_async(&self, id: Uuid) -> Result<Cart> {
        let reservation_expires = Utc::now() + Duration::minutes(15);

        sqlx::query(
            "UPDATE carts SET inventory_reserved = true, reservation_expires_at = $1, updated_at = $2 WHERE id = $3",
        )
        .bind(reservation_expires)
        .bind(Utc::now())
        .bind(id)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn release_inventory_async(&self, id: Uuid) -> Result<Cart> {
        sqlx::query(
            "UPDATE carts SET inventory_reserved = false, reservation_expires_at = NULL, updated_at = $1 WHERE id = $2",
        )
        .bind(Utc::now())
        .bind(id)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn recalculate_async(&self, id: Uuid) -> Result<Cart> {
        self.update_cart_totals_async(id).await?;
        self.get_cart_with_items(id).await?.ok_or(CommerceError::NotFound)
    }

    pub async fn set_tax_async(&self, id: Uuid, tax_amount: Decimal) -> Result<Cart> {
        sqlx::query("UPDATE carts SET tax_amount = $1, updated_at = $2 WHERE id = $3")
            .bind(tax_amount)
            .bind(Utc::now())
            .bind(id)
            .execute(&self.pool)
            .await
            .map_err(map_db_error)?;

        self.recalculate_async(id).await
    }

    pub async fn get_abandoned_async(&self) -> Result<Vec<Cart>> {
        self.list_async(CartFilter { status: Some(CartStatus::Abandoned), ..Default::default() })
            .await
    }

    pub async fn get_expired_async(&self) -> Result<Vec<Cart>> {
        let now = Utc::now();

        // Mark expired carts
        sqlx::query(
            "UPDATE carts SET status = 'expired' WHERE status = 'active' AND expires_at IS NOT NULL AND expires_at < $1",
        )
        .bind(now)
        .execute(&self.pool)
        .await
        .map_err(map_db_error)?;

        self.list_async(CartFilter { status: Some(CartStatus::Expired), ..Default::default() })
            .await
    }

    pub async fn count_async(&self, filter: CartFilter) -> Result<u64> {
        let mut sql = "SELECT COUNT(*) FROM carts WHERE 1=1".to_string();
        let mut param_count = 0;

        if filter.customer_id.is_some() {
            param_count += 1;
            sql.push_str(&format!(" AND customer_id = ${}", param_count));
        }
        if filter.status.is_some() {
            param_count += 1;
            sql.push_str(&format!(" AND status = ${}", param_count));
        }

        let mut query = sqlx::query_scalar::<_, i64>(&sql);

        if let Some(customer_id) = filter.customer_id {
            query = query.bind(customer_id);
        }
        if let Some(status) = filter.status {
            query = query.bind(status.to_string());
        }

        let count = query.fetch_one(&self.pool).await.map_err(map_db_error)?;

        Ok(count as u64)
    }

    // === Batch Operations ===

    /// Create multiple carts in a batch (async, non-atomic - partial success allowed)
    pub async fn create_batch_async(&self, inputs: Vec<CreateCart>) -> Result<BatchResult<Cart>> {
        validate_batch_size(&inputs)?;
        let mut result = BatchResult::with_capacity(inputs.len());

        for (index, input) in inputs.into_iter().enumerate() {
            match self.create_async(input).await {
                Ok(cart) => result.record_success(cart),
                Err(e) => result.record_failure(index, None, &e),
            }
        }

        Ok(result)
    }

    /// Create multiple carts in a batch atomically (async - all-or-nothing)
    pub async fn create_batch_atomic_async(&self, inputs: Vec<CreateCart>) -> Result<Vec<Cart>> {
        validate_batch_size(&inputs)?;
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;
        let mut carts = Vec::with_capacity(inputs.len());

        for input in inputs {
            let id = Uuid::new_v4();
            let cart_number = Self::generate_cart_number();
            let now = Utc::now();
            let currency = input.currency.unwrap_or(CurrencyCode::USD);
            let expires_at = input.expires_in_minutes.map(|mins| now + Duration::minutes(mins));

            let shipping_address_json = input
                .shipping_address
                .as_ref()
                .map(|a| serde_json::to_value(a).unwrap_or_default());
            let billing_address_json =
                input.billing_address.as_ref().map(|a| serde_json::to_value(a).unwrap_or_default());
            let metadata_json = input.metadata.clone();

            sqlx::query(
                r#"INSERT INTO carts (
                    id, cart_number, customer_id, status, currency,
                    subtotal, tax_amount, shipping_amount, discount_amount, grand_total,
                    customer_email, customer_name, shipping_address, billing_address,
                    notes, metadata, expires_at, created_at, updated_at
                ) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19)"#,
            )
            .bind(id)
            .bind(&cart_number)
            .bind(input.customer_id)
            .bind("active")
            .bind(currency)
            .bind(Decimal::ZERO)
            .bind(Decimal::ZERO)
            .bind(Decimal::ZERO)
            .bind(Decimal::ZERO)
            .bind(Decimal::ZERO)
            .bind(&input.customer_email)
            .bind(&input.customer_name)
            .bind(&shipping_address_json)
            .bind(&billing_address_json)
            .bind(&input.notes)
            .bind(&metadata_json)
            .bind(expires_at)
            .bind(now)
            .bind(now)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

            // Add initial items if provided
            let mut items = vec![];
            if let Some(input_items) = &input.items {
                for item_input in input_items {
                    let item_id = Uuid::new_v4();
                    let requires_shipping = item_input.requires_shipping.unwrap_or(true);
                    let total = CartItem::calculate_total(
                        item_input.quantity,
                        item_input.unit_price,
                        Decimal::ZERO,
                        Decimal::ZERO,
                    );
                    let item_metadata_json = item_input.metadata.clone();

                    sqlx::query(
                        r#"INSERT INTO cart_items (
                            id, cart_id, product_id, variant_id, sku, name, description,
                            image_url, quantity, unit_price, original_price, discount_amount,
                            tax_amount, total, weight, requires_shipping, metadata,
                            created_at, updated_at
                        ) VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18, $19)"#,
                    )
                    .bind(item_id)
                    .bind(id)
                    .bind(item_input.product_id)
                    .bind(item_input.variant_id)
                    .bind(&item_input.sku)
                    .bind(&item_input.name)
                    .bind(&item_input.description)
                    .bind(&item_input.image_url)
                    .bind(item_input.quantity)
                    .bind(item_input.unit_price)
                    .bind(item_input.original_price)
                    .bind(Decimal::ZERO)
                    .bind(Decimal::ZERO)
                    .bind(total)
                    .bind(item_input.weight)
                    .bind(requires_shipping)
                    .bind(&item_metadata_json)
                    .bind(now)
                    .bind(now)
                    .execute(tx.as_mut())
                    .await
                    .map_err(map_db_error)?;

                    items.push(CartItem {
                        id: item_id,
                        cart_id: id.into(),
                        product_id: item_input.product_id,
                        variant_id: item_input.variant_id,
                        sku: item_input.sku.clone(),
                        name: item_input.name.clone(),
                        description: item_input.description.clone(),
                        image_url: item_input.image_url.clone(),
                        quantity: item_input.quantity,
                        unit_price: item_input.unit_price,
                        original_price: item_input.original_price,
                        discount_amount: Decimal::ZERO,
                        tax_amount: Decimal::ZERO,
                        total,
                        weight: item_input.weight,
                        requires_shipping,
                        metadata: item_input.metadata.clone(),
                        created_at: now,
                        updated_at: now,
                    });
                }
            }

            // Calculate subtotal
            let subtotal: Decimal = items.iter().map(|i| i.total).sum();

            sqlx::query("UPDATE carts SET subtotal = $1, grand_total = $2 WHERE id = $3")
                .bind(subtotal)
                .bind(subtotal)
                .bind(id)
                .execute(tx.as_mut())
                .await
                .map_err(map_db_error)?;

            carts.push(Cart {
                id: id.into(),
                cart_number,
                customer_id: input.customer_id,
                status: CartStatus::Active,
                currency,
                items,
                subtotal,
                tax_amount: Decimal::ZERO,
                shipping_amount: Decimal::ZERO,
                discount_amount: Decimal::ZERO,
                grand_total: subtotal,
                customer_email: input.customer_email,
                customer_phone: None,
                customer_name: input.customer_name,
                shipping_address: input.shipping_address,
                billing_address: input.billing_address,
                billing_same_as_shipping: false,
                fulfillment_type: None,
                shipping_method: None,
                shipping_carrier: None,
                estimated_delivery: None,
                payment_method: None,
                payment_token: None,
                payment_status: CartPaymentStatus::None,
                coupon_code: None,
                discount_description: None,
                order_id: None,
                order_number: None,
                notes: input.notes,
                metadata: input.metadata,
                inventory_reserved: false,
                reservation_expires_at: None,
                x402_payment: None,
                expires_at,
                completed_at: None,
                created_at: now,
                updated_at: now,
            });
        }

        tx.commit().await.map_err(map_db_error)?;
        Ok(carts)
    }

    /// Update multiple carts in a batch (async, non-atomic - partial success allowed)
    pub async fn update_batch_async(
        &self,
        updates: Vec<(Uuid, UpdateCart)>,
    ) -> Result<BatchResult<Cart>> {
        validate_batch_size(&updates)?;
        let mut result = BatchResult::with_capacity(updates.len());

        for (index, (id, input)) in updates.into_iter().enumerate() {
            match self.update_async(id, input).await {
                Ok(cart) => result.record_success(cart),
                Err(e) => result.record_failure(index, Some(id.to_string()), &e),
            }
        }

        Ok(result)
    }

    /// Update multiple carts in a batch atomically (async - all-or-nothing)
    pub async fn update_batch_atomic_async(
        &self,
        updates: Vec<(Uuid, UpdateCart)>,
    ) -> Result<Vec<Cart>> {
        validate_batch_size(&updates)?;
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;
        let mut cart_ids = Vec::with_capacity(updates.len());
        let now = Utc::now();

        for (id, input) in updates {
            sqlx::query(
                r#"UPDATE carts SET
                    customer_id = COALESCE($1, customer_id),
                    customer_email = COALESCE($2, customer_email),
                    customer_phone = COALESCE($3, customer_phone),
                    customer_name = COALESCE($4, customer_name),
                    shipping_address = COALESCE($5, shipping_address),
                    billing_address = COALESCE($6, billing_address),
                    billing_same_as_shipping = COALESCE($7, billing_same_as_shipping),
                    fulfillment_type = COALESCE($8, fulfillment_type),
                    shipping_method = COALESCE($9, shipping_method),
                    shipping_carrier = COALESCE($10, shipping_carrier),
                    coupon_code = COALESCE($11, coupon_code),
                    notes = COALESCE($12, notes),
                    metadata = COALESCE($13, metadata),
                    updated_at = $14
                WHERE id = $15"#,
            )
            .bind(input.customer_id)
            .bind(&input.customer_email)
            .bind(&input.customer_phone)
            .bind(&input.customer_name)
            .bind(
                input
                    .shipping_address
                    .as_ref()
                    .map(|a| serde_json::to_value(a).unwrap_or_default()),
            )
            .bind(
                input.billing_address.as_ref().map(|a| serde_json::to_value(a).unwrap_or_default()),
            )
            .bind(input.billing_same_as_shipping)
            .bind(input.fulfillment_type.map(|f| f.to_string()))
            .bind(&input.shipping_method)
            .bind(&input.shipping_carrier)
            .bind(&input.coupon_code)
            .bind(&input.notes)
            .bind(&input.metadata)
            .bind(now)
            .bind(id)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

            cart_ids.push(id);
        }

        tx.commit().await.map_err(map_db_error)?;

        // Fetch updated carts
        let mut carts = Vec::with_capacity(cart_ids.len());
        for id in cart_ids {
            if let Some(cart) = self.get_cart_with_items(id).await? {
                carts.push(cart);
            }
        }

        Ok(carts)
    }

    /// Delete multiple carts in a batch (async, non-atomic - partial success allowed)
    pub async fn delete_batch_async(&self, ids: Vec<Uuid>) -> Result<BatchResult<Uuid>> {
        validate_batch_size(&ids)?;
        let mut result = BatchResult::with_capacity(ids.len());

        for (index, id) in ids.into_iter().enumerate() {
            match self.delete_async(id).await {
                Ok(()) => result.record_success(id),
                Err(e) => result.record_failure(index, Some(id.to_string()), &e),
            }
        }

        Ok(result)
    }

    /// Delete multiple carts in a batch atomically (async - all-or-nothing)
    pub async fn delete_batch_atomic_async(&self, ids: Vec<Uuid>) -> Result<()> {
        validate_batch_size(&ids)?;
        let mut tx = self.pool.begin().await.map_err(map_db_error)?;

        // Delete cart items first (foreign key constraint)
        sqlx::query("DELETE FROM cart_items WHERE cart_id = ANY($1)")
            .bind(&ids)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        // Delete carts
        sqlx::query("DELETE FROM carts WHERE id = ANY($1)")
            .bind(&ids)
            .execute(tx.as_mut())
            .await
            .map_err(map_db_error)?;

        tx.commit().await.map_err(map_db_error)?;
        Ok(())
    }

    /// Get multiple carts by IDs (async)
    pub async fn get_batch_async(&self, ids: Vec<Uuid>) -> Result<Vec<Cart>> {
        validate_batch_size(&ids)?;

        let rows = sqlx::query_as::<_, CartRow>("SELECT * FROM carts WHERE id = ANY($1)")
            .bind(&ids)
            .fetch_all(&self.pool)
            .await
            .map_err(map_db_error)?;

        let row_ids: Vec<Uuid> = rows.iter().map(|r| r.id).collect();
        let mut items_by_id = self.get_cart_items_batch_async(&row_ids).await?;
        let mut carts = Vec::with_capacity(rows.len());
        for row in rows {
            let items = items_by_id.remove(&row.id).unwrap_or_default();
            carts.push(row.into_cart(items)?);
        }

        Ok(carts)
    }
}

impl CartRepository for PgCartRepository {
    fn create(&self, input: CreateCart) -> Result<Cart> {
        super::block_on(self.create_async(input))
    }

    fn get(&self, id: CartId) -> Result<Option<Cart>> {
        super::block_on(self.get_async(id.into_uuid()))
    }

    fn get_by_number(&self, cart_number: &str) -> Result<Option<Cart>> {
        super::block_on(self.get_by_number_async(cart_number))
    }

    fn update(&self, id: CartId, input: UpdateCart) -> Result<Cart> {
        super::block_on(self.update_async(id.into_uuid(), input))
    }

    fn list(&self, filter: CartFilter) -> Result<Vec<Cart>> {
        super::block_on(self.list_async(filter))
    }

    fn for_customer(&self, customer_id: CustomerId) -> Result<Vec<Cart>> {
        super::block_on(self.for_customer_async(customer_id.into_uuid()))
    }

    fn delete(&self, id: CartId) -> Result<()> {
        super::block_on(self.delete_async(id.into_uuid()))
    }

    fn add_item(&self, cart_id: CartId, item: AddCartItem) -> Result<CartItem> {
        super::block_on(self.add_item_async(cart_id.into_uuid(), item))
    }

    fn update_item(&self, item_id: Uuid, input: UpdateCartItem) -> Result<CartItem> {
        super::block_on(self.update_item_async(item_id, input))
    }

    fn remove_item(&self, item_id: Uuid) -> Result<()> {
        super::block_on(self.remove_item_async(item_id))
    }

    fn get_items(&self, cart_id: CartId) -> Result<Vec<CartItem>> {
        super::block_on(self.get_items_async(cart_id.into_uuid()))
    }

    fn clear_items(&self, cart_id: CartId) -> Result<()> {
        super::block_on(self.clear_items_async(cart_id.into_uuid()))
    }

    fn set_shipping_address(&self, id: CartId, address: CartAddress) -> Result<Cart> {
        super::block_on(self.set_shipping_address_async(id.into_uuid(), address))
    }

    fn set_billing_address(&self, id: CartId, address: CartAddress) -> Result<Cart> {
        super::block_on(self.set_billing_address_async(id.into_uuid(), address))
    }

    fn set_shipping(&self, id: CartId, shipping: SetCartShipping) -> Result<Cart> {
        super::block_on(self.set_shipping_async(id.into_uuid(), shipping))
    }

    fn get_shipping_rates(&self, id: CartId) -> Result<Vec<ShippingRate>> {
        super::block_on(self.get_shipping_rates_async(id.into_uuid()))
    }

    fn set_payment(&self, id: CartId, payment: SetCartPayment) -> Result<Cart> {
        super::block_on(self.set_payment_async(id.into_uuid(), payment))
    }

    fn set_x402_payment(&self, id: CartId, payment: SetCartX402Payment) -> Result<Cart> {
        super::block_on(self.set_x402_payment_async(id.into_uuid(), payment))
    }

    fn complete_with_x402(&self, id: CartId, payee_address: &str) -> Result<X402CheckoutResult> {
        super::block_on(self.complete_with_x402_async(id.into_uuid(), payee_address))
    }

    fn apply_discount(&self, id: CartId, coupon_code: &str) -> Result<Cart> {
        super::block_on(self.apply_discount_async(id.into_uuid(), coupon_code))
    }

    fn remove_discount(&self, id: CartId) -> Result<Cart> {
        super::block_on(self.remove_discount_async(id.into_uuid()))
    }

    fn mark_ready_for_payment(&self, id: CartId) -> Result<Cart> {
        super::block_on(self.mark_ready_for_payment_async(id.into_uuid()))
    }

    fn begin_checkout(&self, id: CartId) -> Result<Cart> {
        super::block_on(self.begin_checkout_async(id.into_uuid()))
    }

    fn complete(&self, id: CartId) -> Result<CheckoutResult> {
        super::block_on(self.complete_async(id.into_uuid()))
    }

    fn complete_settled_externally(&self, id: CartId) -> Result<CheckoutResult> {
        super::block_on(self.complete_settled_externally_async(id.into_uuid()))
    }

    fn cancel(&self, id: CartId) -> Result<Cart> {
        super::block_on(self.cancel_async(id.into_uuid()))
    }

    fn abandon(&self, id: CartId) -> Result<Cart> {
        super::block_on(self.abandon_async(id.into_uuid()))
    }

    fn expire(&self, id: CartId) -> Result<Cart> {
        super::block_on(self.expire_async(id.into_uuid()))
    }

    fn reserve_inventory(&self, id: CartId) -> Result<Cart> {
        super::block_on(self.reserve_inventory_async(id.into_uuid()))
    }

    fn release_inventory(&self, id: CartId) -> Result<Cart> {
        super::block_on(self.release_inventory_async(id.into_uuid()))
    }

    fn recalculate(&self, id: CartId) -> Result<Cart> {
        super::block_on(self.recalculate_async(id.into_uuid()))
    }

    fn set_tax(&self, id: CartId, tax_amount: Decimal) -> Result<Cart> {
        super::block_on(self.set_tax_async(id.into_uuid(), tax_amount))
    }

    fn get_abandoned(&self) -> Result<Vec<Cart>> {
        super::block_on(self.get_abandoned_async())
    }

    fn get_expired(&self) -> Result<Vec<Cart>> {
        super::block_on(self.get_expired_async())
    }

    fn count(&self, filter: CartFilter) -> Result<u64> {
        super::block_on(self.count_async(filter))
    }

    // === Batch Operations ===

    fn create_batch(&self, inputs: Vec<CreateCart>) -> Result<BatchResult<Cart>> {
        super::block_on(self.create_batch_async(inputs))
    }

    fn create_batch_atomic(&self, inputs: Vec<CreateCart>) -> Result<Vec<Cart>> {
        super::block_on(self.create_batch_atomic_async(inputs))
    }

    fn update_batch(&self, updates: Vec<(CartId, UpdateCart)>) -> Result<BatchResult<Cart>> {
        let raw_updates: Vec<(Uuid, UpdateCart)> =
            updates.into_iter().map(|(id, input)| (id.into_uuid(), input)).collect();
        super::block_on(self.update_batch_async(raw_updates))
    }

    fn update_batch_atomic(&self, updates: Vec<(CartId, UpdateCart)>) -> Result<Vec<Cart>> {
        let raw_updates: Vec<(Uuid, UpdateCart)> =
            updates.into_iter().map(|(id, input)| (id.into_uuid(), input)).collect();
        super::block_on(self.update_batch_atomic_async(raw_updates))
    }

    fn delete_batch(&self, ids: Vec<CartId>) -> Result<BatchResult<CartId>> {
        let raw_ids: Vec<Uuid> = ids.into_iter().map(|id| id.into_uuid()).collect();
        let result = super::block_on(self.delete_batch_async(raw_ids))?;
        Ok(BatchResult {
            succeeded: result.succeeded.into_iter().map(CartId::from_uuid).collect(),
            failed: result.failed,
            total_attempted: result.total_attempted,
            success_count: result.success_count,
            failure_count: result.failure_count,
        })
    }

    fn delete_batch_atomic(&self, ids: Vec<CartId>) -> Result<()> {
        let raw_ids: Vec<Uuid> = ids.into_iter().map(|id| id.into_uuid()).collect();
        super::block_on(self.delete_batch_atomic_async(raw_ids))
    }

    fn get_batch(&self, ids: Vec<CartId>) -> Result<Vec<Cart>> {
        let raw_ids: Vec<Uuid> = ids.into_iter().map(|id| id.into_uuid()).collect();
        super::block_on(self.get_batch_async(raw_ids))
    }
}