@akropolys/kiku 1.6.5 → 1.6.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +91 -233
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +91 -233
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +68 -1388
- package/dist/styles.css.map +1 -1
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -17,10 +17,7 @@
|
|
|
17
17
|
.hsk-action-pill,
|
|
18
18
|
.hsk-chat-send,
|
|
19
19
|
.hsk-chat-reset,
|
|
20
|
-
.hsk-cart-trigger,
|
|
21
|
-
.hsk-checkout-btn,
|
|
22
20
|
.hsk-close-btn,
|
|
23
|
-
.hsk-cart-backdrop,
|
|
24
21
|
.hsk-cb-overlay {
|
|
25
22
|
touch-action: manipulation;
|
|
26
23
|
-webkit-tap-highlight-color: transparent;
|
|
@@ -2267,395 +2264,6 @@
|
|
|
2267
2264
|
border-color: #202124;
|
|
2268
2265
|
}
|
|
2269
2266
|
}
|
|
2270
|
-
.hsk-cart-backdrop {
|
|
2271
|
-
position: fixed;
|
|
2272
|
-
inset: 0;
|
|
2273
|
-
background: rgba(0, 0, 0, 0.4);
|
|
2274
|
-
backdrop-filter: blur(4px);
|
|
2275
|
-
-webkit-backdrop-filter: blur(4px);
|
|
2276
|
-
z-index: 99999;
|
|
2277
|
-
display: flex;
|
|
2278
|
-
align-items: flex-end;
|
|
2279
|
-
justify-content: center;
|
|
2280
|
-
animation: hskFadeIn 0.3s ease forwards;
|
|
2281
|
-
}
|
|
2282
|
-
.hsk-cart-bottom-sheet {
|
|
2283
|
-
--hsk-bg: var(--bg, var(--background, #ffffff));
|
|
2284
|
-
--hsk-text: var(--text-primary, var(--foreground, #18181b));
|
|
2285
|
-
--hsk-border: var(--border, var(--borders, #f4f4f5));
|
|
2286
|
-
--hsk-primary: var(--chat-primary-color, #ff6a33);
|
|
2287
|
-
--hsk-primary-color: var(--hsk-primary);
|
|
2288
|
-
--hsk-hover: var(--surface, var(--hsk-border, #f4f4f5));
|
|
2289
|
-
--hsk-muted: var(--text-muted, var(--accent, #71717a));
|
|
2290
|
-
width: 100%;
|
|
2291
|
-
max-width: 600px;
|
|
2292
|
-
background: var(--hsk-bg);
|
|
2293
|
-
color: var(--hsk-text);
|
|
2294
|
-
border-radius: 24px 24px 0 0;
|
|
2295
|
-
padding: 24px;
|
|
2296
|
-
box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
|
|
2297
|
-
transform: translateY(100%);
|
|
2298
|
-
animation: hskSlideUp 0.4s cubic-bezier(0.32, 0.72, 0, 1) forwards;
|
|
2299
|
-
display: flex;
|
|
2300
|
-
flex-direction: column;
|
|
2301
|
-
max-height: 85vh;
|
|
2302
|
-
z-index: 100000;
|
|
2303
|
-
border-top: 1px solid var(--hsk-border);
|
|
2304
|
-
}
|
|
2305
|
-
@keyframes hskSlideUp {
|
|
2306
|
-
from {
|
|
2307
|
-
transform: translateY(100%);
|
|
2308
|
-
}
|
|
2309
|
-
to {
|
|
2310
|
-
transform: translateY(0);
|
|
2311
|
-
}
|
|
2312
|
-
}
|
|
2313
|
-
@keyframes hskFadeIn {
|
|
2314
|
-
from {
|
|
2315
|
-
opacity: 0;
|
|
2316
|
-
}
|
|
2317
|
-
to {
|
|
2318
|
-
opacity: 1;
|
|
2319
|
-
}
|
|
2320
|
-
}
|
|
2321
|
-
@keyframes hskSlideUpCenter {
|
|
2322
|
-
to {
|
|
2323
|
-
transform: translateY(0) scale(1);
|
|
2324
|
-
opacity: 1;
|
|
2325
|
-
}
|
|
2326
|
-
}
|
|
2327
|
-
.hsk-cart-sheet-handle {
|
|
2328
|
-
display: none;
|
|
2329
|
-
}
|
|
2330
|
-
[data-hsk-theme=dark] .hsk-cart-sheet-handle {
|
|
2331
|
-
display: none;
|
|
2332
|
-
}
|
|
2333
|
-
.hsk-cart-sheet-header {
|
|
2334
|
-
display: flex;
|
|
2335
|
-
justify-content: space-between;
|
|
2336
|
-
align-items: center;
|
|
2337
|
-
margin-bottom: 20px;
|
|
2338
|
-
}
|
|
2339
|
-
.hsk-cart-sheet-header h2 {
|
|
2340
|
-
margin: 0;
|
|
2341
|
-
font-size: 20px;
|
|
2342
|
-
font-weight: 600;
|
|
2343
|
-
}
|
|
2344
|
-
.hsk-close-btn {
|
|
2345
|
-
background: none;
|
|
2346
|
-
border: none;
|
|
2347
|
-
font-size: 24px;
|
|
2348
|
-
cursor: pointer;
|
|
2349
|
-
color: var(--hsk-muted);
|
|
2350
|
-
padding: 0;
|
|
2351
|
-
line-height: 1;
|
|
2352
|
-
}
|
|
2353
|
-
.hsk-cart-sheet-content {
|
|
2354
|
-
flex: 1;
|
|
2355
|
-
overflow-y: auto;
|
|
2356
|
-
margin-bottom: 20px;
|
|
2357
|
-
}
|
|
2358
|
-
.hsk-cart-empty,
|
|
2359
|
-
.hsk-cart-loading {
|
|
2360
|
-
text-align: center;
|
|
2361
|
-
padding: 40px 0;
|
|
2362
|
-
color: #71717a;
|
|
2363
|
-
}
|
|
2364
|
-
.hsk-cart-items {
|
|
2365
|
-
list-style: none;
|
|
2366
|
-
padding: 0;
|
|
2367
|
-
margin: 0;
|
|
2368
|
-
display: flex;
|
|
2369
|
-
flex-direction: column;
|
|
2370
|
-
gap: 16px;
|
|
2371
|
-
}
|
|
2372
|
-
.hsk-cart-item {
|
|
2373
|
-
display: flex;
|
|
2374
|
-
align-items: center;
|
|
2375
|
-
gap: 12px;
|
|
2376
|
-
padding-bottom: 16px;
|
|
2377
|
-
border-bottom: 1px solid var(--hsk-border, #f4f4f5);
|
|
2378
|
-
}
|
|
2379
|
-
.hsk-cart-item-img {
|
|
2380
|
-
width: 56px;
|
|
2381
|
-
height: 56px;
|
|
2382
|
-
border-radius: 8px;
|
|
2383
|
-
object-fit: cover;
|
|
2384
|
-
background: var(--hsk-border, #f4f4f5);
|
|
2385
|
-
}
|
|
2386
|
-
.hsk-cart-item-info {
|
|
2387
|
-
flex: 1;
|
|
2388
|
-
display: flex;
|
|
2389
|
-
flex-direction: column;
|
|
2390
|
-
gap: 4px;
|
|
2391
|
-
}
|
|
2392
|
-
.hsk-cart-item-name {
|
|
2393
|
-
font-weight: 500;
|
|
2394
|
-
font-size: 14px;
|
|
2395
|
-
color: var(--hsk-text, #18181b);
|
|
2396
|
-
}
|
|
2397
|
-
.hsk-cart-item-price {
|
|
2398
|
-
color: var(--hsk-muted, #71717a);
|
|
2399
|
-
font-size: 14px;
|
|
2400
|
-
}
|
|
2401
|
-
.hsk-cart-item-qty {
|
|
2402
|
-
font-weight: 600;
|
|
2403
|
-
font-size: 14px;
|
|
2404
|
-
background: var(--hsk-hover, #f4f4f5);
|
|
2405
|
-
color: var(--hsk-text, #18181b);
|
|
2406
|
-
padding: 4px 10px;
|
|
2407
|
-
border-radius: 12px;
|
|
2408
|
-
}
|
|
2409
|
-
.hsk-cart-sheet-footer {
|
|
2410
|
-
padding-top: 16px;
|
|
2411
|
-
border-top: 1px solid var(--hsk-border, #f4f4f5);
|
|
2412
|
-
display: flex;
|
|
2413
|
-
flex-direction: column;
|
|
2414
|
-
gap: 16px;
|
|
2415
|
-
}
|
|
2416
|
-
.hsk-cart-total {
|
|
2417
|
-
display: flex;
|
|
2418
|
-
justify-content: space-between;
|
|
2419
|
-
align-items: center;
|
|
2420
|
-
font-weight: 700;
|
|
2421
|
-
font-size: 18px;
|
|
2422
|
-
color: var(--hsk-text, #18181b);
|
|
2423
|
-
}
|
|
2424
|
-
.hsk-checkout-btn {
|
|
2425
|
-
background: var(--hsk-primary-color, #ff6a33);
|
|
2426
|
-
color: white;
|
|
2427
|
-
border: none;
|
|
2428
|
-
padding: 16px;
|
|
2429
|
-
border-radius: 12px;
|
|
2430
|
-
font-size: 16px;
|
|
2431
|
-
font-weight: 600;
|
|
2432
|
-
cursor: pointer;
|
|
2433
|
-
transition: opacity 0.2s;
|
|
2434
|
-
width: 100%;
|
|
2435
|
-
}
|
|
2436
|
-
.hsk-checkout-btn:hover {
|
|
2437
|
-
opacity: 0.9;
|
|
2438
|
-
}
|
|
2439
|
-
.hsk-cart-trigger {
|
|
2440
|
-
--hsk-bg: var(--bg, var(--background, #ffffff));
|
|
2441
|
-
--hsk-text: var(--text-primary, var(--foreground, #18181b));
|
|
2442
|
-
--hsk-border: var(--border, var(--borders, #e4e4e7));
|
|
2443
|
-
--hsk-primary: var(--chat-primary-color, #ff6a33);
|
|
2444
|
-
--hsk-primary-color: var(--hsk-primary);
|
|
2445
|
-
--hsk-hover: var(--surface, var(--hsk-border, #f4f4f5));
|
|
2446
|
-
background: transparent;
|
|
2447
|
-
border: 1px solid var(--hsk-border);
|
|
2448
|
-
color: var(--hsk-text);
|
|
2449
|
-
border-radius: 20px;
|
|
2450
|
-
font-weight: 500;
|
|
2451
|
-
cursor: pointer;
|
|
2452
|
-
display: inline-flex;
|
|
2453
|
-
align-items: center;
|
|
2454
|
-
justify-content: center;
|
|
2455
|
-
position: relative;
|
|
2456
|
-
}
|
|
2457
|
-
.hsk-cart-trigger-badge {
|
|
2458
|
-
position: absolute;
|
|
2459
|
-
top: -4px;
|
|
2460
|
-
right: -4px;
|
|
2461
|
-
background: var(--hsk-primary-color, #ff6a33);
|
|
2462
|
-
color: white;
|
|
2463
|
-
font-size: 10px;
|
|
2464
|
-
width: 18px;
|
|
2465
|
-
height: 18px;
|
|
2466
|
-
display: flex;
|
|
2467
|
-
align-items: center;
|
|
2468
|
-
justify-content: center;
|
|
2469
|
-
border-radius: 9px;
|
|
2470
|
-
font-weight: bold;
|
|
2471
|
-
}
|
|
2472
|
-
.hsk-cart-badge {
|
|
2473
|
-
display: inline-flex;
|
|
2474
|
-
align-items: center;
|
|
2475
|
-
justify-content: center;
|
|
2476
|
-
background: var(--hsk-primary-color, #ff6a33);
|
|
2477
|
-
color: white;
|
|
2478
|
-
font-size: 12px;
|
|
2479
|
-
min-width: 18px;
|
|
2480
|
-
height: 18px;
|
|
2481
|
-
padding: 0 4px;
|
|
2482
|
-
border-radius: 9px;
|
|
2483
|
-
font-weight: 600;
|
|
2484
|
-
}
|
|
2485
|
-
[data-hsk-theme=dark] .hsk-cart-bottom-sheet {
|
|
2486
|
-
--hsk-bg: #0a0a0a;
|
|
2487
|
-
--hsk-text: #fafafa;
|
|
2488
|
-
--hsk-border: rgba(255, 255, 255, 0.07);
|
|
2489
|
-
--hsk-muted: #888;
|
|
2490
|
-
--hsk-hover: rgba(255, 255, 255, 0.07);
|
|
2491
|
-
}
|
|
2492
|
-
[data-hsk-theme=dark] .hsk-cart-trigger {
|
|
2493
|
-
--hsk-bg: #0a0a0a;
|
|
2494
|
-
--hsk-text: white;
|
|
2495
|
-
--hsk-border: rgba(255, 255, 255, 0.07);
|
|
2496
|
-
--hsk-hover: rgba(255, 255, 255, 0.07);
|
|
2497
|
-
}
|
|
2498
|
-
@media (prefers-color-scheme: dark) {
|
|
2499
|
-
.hsk-cart-bottom-sheet {
|
|
2500
|
-
--hsk-bg: #0a0a0a;
|
|
2501
|
-
--hsk-text: #e8eaed;
|
|
2502
|
-
--hsk-border: rgba(255, 255, 255, 0.07);
|
|
2503
|
-
--hsk-muted: #888;
|
|
2504
|
-
--hsk-hover: rgba(255, 255, 255, 0.07);
|
|
2505
|
-
}
|
|
2506
|
-
.hsk-cart-trigger {
|
|
2507
|
-
--hsk-bg: #0a0a0a;
|
|
2508
|
-
--hsk-text: white;
|
|
2509
|
-
--hsk-border: rgba(255, 255, 255, 0.07);
|
|
2510
|
-
--hsk-hover: rgba(255, 255, 255, 0.07);
|
|
2511
|
-
}
|
|
2512
|
-
}
|
|
2513
|
-
@media (prefers-color-scheme: light) {
|
|
2514
|
-
.hsk-cart-bottom-sheet {
|
|
2515
|
-
--hsk-bg: #ffffff;
|
|
2516
|
-
--hsk-text: #18181b;
|
|
2517
|
-
--hsk-border: #f4f4f5;
|
|
2518
|
-
--hsk-muted: #71717a;
|
|
2519
|
-
--hsk-hover: #f4f4f5;
|
|
2520
|
-
}
|
|
2521
|
-
.hsk-cart-trigger {
|
|
2522
|
-
--hsk-bg: #ffffff;
|
|
2523
|
-
--hsk-text: #18181b;
|
|
2524
|
-
--hsk-border: #e4e4e7;
|
|
2525
|
-
--hsk-hover: #f4f4f5;
|
|
2526
|
-
}
|
|
2527
|
-
.hsk-cart-backdrop {
|
|
2528
|
-
background: rgba(255, 255, 255, 0.6);
|
|
2529
|
-
}
|
|
2530
|
-
}
|
|
2531
|
-
.hsk-checkout-modal {
|
|
2532
|
-
position: relative;
|
|
2533
|
-
width: 90%;
|
|
2534
|
-
max-width: 800px;
|
|
2535
|
-
max-height: 90vh;
|
|
2536
|
-
background: var(--hsk-bg, #ffffff);
|
|
2537
|
-
color: var(--hsk-text, #18181b);
|
|
2538
|
-
border: 1px solid var(--hsk-border, #e4e4e7);
|
|
2539
|
-
border-radius: 12px;
|
|
2540
|
-
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
|
|
2541
|
-
display: flex;
|
|
2542
|
-
flex-direction: column;
|
|
2543
|
-
overflow: hidden;
|
|
2544
|
-
animation: hskScaleIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
2545
|
-
}
|
|
2546
|
-
.hsk-checkout-header {
|
|
2547
|
-
padding: 16px 20px;
|
|
2548
|
-
border-bottom: 1px solid var(--hsk-border, #e4e4e7);
|
|
2549
|
-
display: flex;
|
|
2550
|
-
justify-content: space-between;
|
|
2551
|
-
align-items: center;
|
|
2552
|
-
}
|
|
2553
|
-
.hsk-checkout-header h2 {
|
|
2554
|
-
margin: 0;
|
|
2555
|
-
font-size: 1.1em;
|
|
2556
|
-
}
|
|
2557
|
-
.hsk-checkout-content {
|
|
2558
|
-
padding: 20px;
|
|
2559
|
-
overflow-y: auto;
|
|
2560
|
-
}
|
|
2561
|
-
.hsk-checkout-split {
|
|
2562
|
-
display: flex;
|
|
2563
|
-
gap: 30px;
|
|
2564
|
-
}
|
|
2565
|
-
@media (max-width: 600px) {
|
|
2566
|
-
.hsk-checkout-split {
|
|
2567
|
-
flex-direction: column;
|
|
2568
|
-
}
|
|
2569
|
-
}
|
|
2570
|
-
.hsk-checkout-summary,
|
|
2571
|
-
.hsk-checkout-payment {
|
|
2572
|
-
flex: 1;
|
|
2573
|
-
}
|
|
2574
|
-
.hsk-checkout-summary h3,
|
|
2575
|
-
.hsk-checkout-payment h3 {
|
|
2576
|
-
font-size: 1em;
|
|
2577
|
-
margin-top: 0;
|
|
2578
|
-
margin-bottom: 15px;
|
|
2579
|
-
border-bottom: 1px solid var(--hsk-border, #e4e4e7);
|
|
2580
|
-
padding-bottom: 8px;
|
|
2581
|
-
}
|
|
2582
|
-
.hsk-checkout-items {
|
|
2583
|
-
list-style: none;
|
|
2584
|
-
margin: 0;
|
|
2585
|
-
padding: 0;
|
|
2586
|
-
}
|
|
2587
|
-
.hsk-checkout-items li {
|
|
2588
|
-
display: flex;
|
|
2589
|
-
justify-content: space-between;
|
|
2590
|
-
font-size: 0.9em;
|
|
2591
|
-
margin-bottom: 8px;
|
|
2592
|
-
}
|
|
2593
|
-
.hsk-checkout-total {
|
|
2594
|
-
display: flex;
|
|
2595
|
-
justify-content: space-between;
|
|
2596
|
-
font-weight: bold;
|
|
2597
|
-
margin-top: 15px;
|
|
2598
|
-
padding-top: 15px;
|
|
2599
|
-
border-top: 1px solid var(--hsk-border, #e4e4e7);
|
|
2600
|
-
}
|
|
2601
|
-
.hsk-payment-options {
|
|
2602
|
-
display: flex;
|
|
2603
|
-
flex-direction: column;
|
|
2604
|
-
gap: 10px;
|
|
2605
|
-
}
|
|
2606
|
-
.hsk-pay-btn {
|
|
2607
|
-
width: 100%;
|
|
2608
|
-
padding: 12px;
|
|
2609
|
-
border-radius: 8px;
|
|
2610
|
-
font-weight: bold;
|
|
2611
|
-
cursor: pointer;
|
|
2612
|
-
border: none;
|
|
2613
|
-
transition: opacity 0.2s;
|
|
2614
|
-
color: white;
|
|
2615
|
-
}
|
|
2616
|
-
.hsk-pay-btn:disabled {
|
|
2617
|
-
opacity: 0.5;
|
|
2618
|
-
cursor: not-allowed;
|
|
2619
|
-
}
|
|
2620
|
-
.hsk-pay-mpesa {
|
|
2621
|
-
background: #4caf50;
|
|
2622
|
-
}
|
|
2623
|
-
.hsk-pay-equity {
|
|
2624
|
-
background: #8b4513;
|
|
2625
|
-
}
|
|
2626
|
-
.hsk-pay-stripe {
|
|
2627
|
-
background: #6772e5;
|
|
2628
|
-
}
|
|
2629
|
-
.hsk-pay-paypal {
|
|
2630
|
-
background: #003087;
|
|
2631
|
-
}
|
|
2632
|
-
.hsk-checkout-success {
|
|
2633
|
-
text-align: center;
|
|
2634
|
-
padding: 40px 20px;
|
|
2635
|
-
}
|
|
2636
|
-
.hsk-success-icon {
|
|
2637
|
-
width: 64px;
|
|
2638
|
-
height: 64px;
|
|
2639
|
-
color: #4caf50;
|
|
2640
|
-
margin-bottom: 16px;
|
|
2641
|
-
}
|
|
2642
|
-
@keyframes hskScaleIn {
|
|
2643
|
-
0% {
|
|
2644
|
-
transform: scale(0.95);
|
|
2645
|
-
opacity: 0;
|
|
2646
|
-
}
|
|
2647
|
-
100% {
|
|
2648
|
-
transform: scale(1);
|
|
2649
|
-
opacity: 1;
|
|
2650
|
-
}
|
|
2651
|
-
}
|
|
2652
|
-
@media (prefers-color-scheme: dark) {
|
|
2653
|
-
.hsk-checkout-modal {
|
|
2654
|
-
--hsk-bg: #1a1a1b;
|
|
2655
|
-
--hsk-text: #e8eaed;
|
|
2656
|
-
--hsk-border: #202124;
|
|
2657
|
-
}
|
|
2658
|
-
}
|
|
2659
2267
|
.hsk-cb-phone-form {
|
|
2660
2268
|
display: flex;
|
|
2661
2269
|
flex-direction: column;
|
|
@@ -2664,793 +2272,38 @@
|
|
|
2664
2272
|
}
|
|
2665
2273
|
.hsk-cb-phone-label {
|
|
2666
2274
|
font-size: 0.875rem;
|
|
2667
|
-
color: var(--hsk-text, inherit);
|
|
2668
|
-
margin: 0;
|
|
2669
|
-
}
|
|
2670
|
-
.hsk-cb-phone-input {
|
|
2671
|
-
width: 100%;
|
|
2672
|
-
box-sizing: border-box;
|
|
2673
|
-
padding: 8px 12px;
|
|
2674
|
-
border: 1px solid var(--hsk-border, #e4e4e7);
|
|
2675
|
-
border-radius: var(--hsk-radius, 8px);
|
|
2676
|
-
background: var(--hsk-bg, #fff);
|
|
2677
|
-
color: var(--hsk-text, inherit);
|
|
2678
|
-
font-size: 0.9rem;
|
|
2679
|
-
outline: none;
|
|
2680
|
-
transition: border-color 0.15s;
|
|
2681
|
-
}
|
|
2682
|
-
.hsk-cb-phone-input:focus {
|
|
2683
|
-
border-color: var(--hsk-primary, #6366f1);
|
|
2684
|
-
}
|
|
2685
|
-
.hsk-cb-phone-submit {
|
|
2686
|
-
align-self: flex-start;
|
|
2687
|
-
padding: 8px 16px;
|
|
2688
|
-
border: 1px solid var(--hsk-border, #e4e4e7);
|
|
2689
|
-
border-radius: var(--hsk-radius, 8px);
|
|
2690
|
-
background: var(--hsk-bg, #fff);
|
|
2691
|
-
color: var(--hsk-text, inherit);
|
|
2692
|
-
font-size: 0.875rem;
|
|
2693
|
-
font-weight: 500;
|
|
2694
|
-
cursor: pointer;
|
|
2695
|
-
transition: background 0.15s, border-color 0.15s;
|
|
2696
|
-
}
|
|
2697
|
-
.hsk-cb-phone-submit:hover {
|
|
2698
|
-
border-color: var(--hsk-primary, #6366f1);
|
|
2699
|
-
}
|
|
2700
|
-
.hsk-checkout-backdrop-full {
|
|
2701
|
-
position: fixed;
|
|
2702
|
-
inset: 0;
|
|
2703
|
-
width: 100vw;
|
|
2704
|
-
height: 100vh;
|
|
2705
|
-
background: var(--hsk-bg-overlay, rgba(0, 0, 0, 0.5));
|
|
2706
|
-
z-index: 999999;
|
|
2707
|
-
display: flex;
|
|
2708
|
-
align-items: center;
|
|
2709
|
-
justify-content: center;
|
|
2710
|
-
overflow: hidden;
|
|
2711
|
-
animation: hskFadeIn 0.25s ease-out forwards;
|
|
2712
|
-
}
|
|
2713
|
-
.hsk-checkout-modal-full {
|
|
2714
|
-
width: 100vw;
|
|
2715
|
-
height: 100vh;
|
|
2716
|
-
display: grid;
|
|
2717
|
-
grid-template-columns: 9fr 11fr;
|
|
2718
|
-
background: var(--hsk-checkout-right-bg, #ffffff);
|
|
2719
|
-
color: var(--hsk-checkout-text, #1e293b);
|
|
2720
|
-
overflow: hidden;
|
|
2721
|
-
position: relative;
|
|
2722
|
-
font-family:
|
|
2723
|
-
-apple-system,
|
|
2724
|
-
BlinkMacSystemFont,
|
|
2725
|
-
"Segoe UI",
|
|
2726
|
-
Roboto,
|
|
2727
|
-
Helvetica,
|
|
2728
|
-
Arial,
|
|
2729
|
-
sans-serif;
|
|
2730
|
-
}
|
|
2731
|
-
.hsk-checkout-panel-left {
|
|
2732
|
-
background: var(--hsk-checkout-left-bg, #f8fafc);
|
|
2733
|
-
border-right: 1px solid var(--hsk-checkout-divide, #e2e8f0);
|
|
2734
|
-
display: flex;
|
|
2735
|
-
flex-direction: column;
|
|
2736
|
-
align-items: flex-end;
|
|
2737
|
-
overflow-y: auto;
|
|
2738
|
-
padding: 4rem 2.5rem 2rem 2.5rem;
|
|
2739
|
-
box-sizing: border-box;
|
|
2740
|
-
}
|
|
2741
|
-
.hsk-checkout-left-content {
|
|
2742
|
-
width: 100%;
|
|
2743
|
-
max-width: 440px;
|
|
2744
|
-
display: flex;
|
|
2745
|
-
flex-direction: column;
|
|
2746
|
-
gap: 2rem;
|
|
2747
|
-
}
|
|
2748
|
-
.hsk-checkout-back-btn {
|
|
2749
|
-
align-self: flex-start;
|
|
2750
|
-
display: flex;
|
|
2751
|
-
align-items: center;
|
|
2752
|
-
gap: 0.5rem;
|
|
2753
|
-
background: none;
|
|
2754
|
-
border: none;
|
|
2755
|
-
color: var(--hsk-checkout-muted, #64748b);
|
|
2756
|
-
font-size: 0.875rem;
|
|
2757
|
-
font-weight: 500;
|
|
2758
|
-
cursor: pointer;
|
|
2759
|
-
padding: 0;
|
|
2760
|
-
transition: color 0.15s ease;
|
|
2761
|
-
position: relative;
|
|
2762
|
-
z-index: 100;
|
|
2763
|
-
pointer-events: auto;
|
|
2764
|
-
}
|
|
2765
|
-
.hsk-checkout-back-btn:hover {
|
|
2766
|
-
color: var(--hsk-primary, #ff6a33);
|
|
2767
|
-
}
|
|
2768
|
-
.hsk-checkout-store-info h2 {
|
|
2769
|
-
margin: 0;
|
|
2770
|
-
font-size: 1.25rem;
|
|
2771
|
-
font-weight: 600;
|
|
2772
|
-
color: var(--hsk-checkout-text, #0f172a);
|
|
2773
|
-
}
|
|
2774
|
-
.hsk-checkout-amount-due {
|
|
2775
|
-
display: flex;
|
|
2776
|
-
flex-direction: column;
|
|
2777
|
-
gap: 0.25rem;
|
|
2778
|
-
}
|
|
2779
|
-
.hsk-checkout-label-muted {
|
|
2780
|
-
font-size: 0.8125rem;
|
|
2781
|
-
font-weight: 500;
|
|
2782
|
-
color: var(--hsk-checkout-muted, #64748b);
|
|
2783
|
-
text-transform: uppercase;
|
|
2784
|
-
letter-spacing: 0.05em;
|
|
2785
|
-
}
|
|
2786
|
-
.hsk-checkout-grand-total {
|
|
2787
|
-
font-size: 2.25rem;
|
|
2788
|
-
font-weight: 700;
|
|
2789
|
-
color: var(--hsk-checkout-text, #0f172a);
|
|
2790
|
-
letter-spacing: -0.02em;
|
|
2791
|
-
}
|
|
2792
|
-
.hsk-checkout-items-list-wrap {
|
|
2793
|
-
margin-top: 1rem;
|
|
2794
|
-
border-top: 1px solid var(--hsk-checkout-divide, #e2e8f0);
|
|
2795
|
-
padding-top: 1.5rem;
|
|
2796
|
-
}
|
|
2797
|
-
.hsk-checkout-items-list {
|
|
2798
|
-
list-style: none;
|
|
2799
|
-
padding: 0;
|
|
2800
|
-
margin: 0;
|
|
2801
|
-
display: flex;
|
|
2802
|
-
flex-direction: column;
|
|
2803
|
-
gap: 1.25rem;
|
|
2804
|
-
}
|
|
2805
|
-
.hsk-checkout-item-row {
|
|
2806
|
-
display: flex;
|
|
2807
|
-
align-items: center;
|
|
2808
|
-
gap: 1rem;
|
|
2809
|
-
font-size: 0.875rem;
|
|
2810
|
-
}
|
|
2811
|
-
.hsk-checkout-item-img-container {
|
|
2812
|
-
position: relative;
|
|
2813
|
-
width: 56px;
|
|
2814
|
-
height: 56px;
|
|
2815
|
-
border-radius: 4px;
|
|
2816
|
-
border: 1px solid var(--hsk-checkout-divide, #e2e8f0);
|
|
2817
|
-
background: #ffffff;
|
|
2818
|
-
display: flex;
|
|
2819
|
-
align-items: center;
|
|
2820
|
-
justify-content: center;
|
|
2821
|
-
flex-shrink: 0;
|
|
2822
|
-
}
|
|
2823
|
-
.hsk-checkout-item-img {
|
|
2824
|
-
width: 100%;
|
|
2825
|
-
height: 100%;
|
|
2826
|
-
object-fit: contain;
|
|
2827
|
-
border-radius: 4px;
|
|
2828
|
-
}
|
|
2829
|
-
.hsk-checkout-item-img-placeholder {
|
|
2830
|
-
font-size: 1.25rem;
|
|
2831
|
-
}
|
|
2832
|
-
.hsk-checkout-item-qty-badge {
|
|
2833
|
-
position: absolute;
|
|
2834
|
-
top: -6px;
|
|
2835
|
-
right: -6px;
|
|
2836
|
-
background: var(--hsk-checkout-muted, #64748b);
|
|
2837
|
-
color: #ffffff;
|
|
2838
|
-
font-size: 0.7rem;
|
|
2839
|
-
font-weight: 700;
|
|
2840
|
-
min-width: 18px;
|
|
2841
|
-
height: 18px;
|
|
2842
|
-
padding: 0 4px;
|
|
2843
|
-
border-radius: 4px;
|
|
2844
|
-
display: flex;
|
|
2845
|
-
align-items: center;
|
|
2846
|
-
justify-content: center;
|
|
2847
|
-
box-sizing: border-box;
|
|
2848
|
-
}
|
|
2849
|
-
.hsk-checkout-item-details {
|
|
2850
|
-
flex: 1;
|
|
2851
|
-
}
|
|
2852
|
-
.hsk-checkout-item-name {
|
|
2853
|
-
font-weight: 500;
|
|
2854
|
-
color: var(--hsk-checkout-text, #0f172a);
|
|
2855
|
-
display: -webkit-box;
|
|
2856
|
-
-webkit-line-clamp: 2;
|
|
2857
|
-
-webkit-box-orient: vertical;
|
|
2858
|
-
overflow: hidden;
|
|
2859
|
-
}
|
|
2860
|
-
.hsk-checkout-item-price {
|
|
2861
|
-
font-weight: 600;
|
|
2862
|
-
color: var(--hsk-checkout-text, #0f172a);
|
|
2863
|
-
}
|
|
2864
|
-
.hsk-checkout-panel-right {
|
|
2865
|
-
background: var(--hsk-checkout-right-bg, #ffffff);
|
|
2866
|
-
display: flex;
|
|
2867
|
-
flex-direction: column;
|
|
2868
|
-
align-items: flex-start;
|
|
2869
|
-
overflow-y: auto;
|
|
2870
|
-
padding: 4rem 2.5rem 2rem 2.5rem;
|
|
2871
|
-
box-sizing: border-box;
|
|
2872
|
-
}
|
|
2873
|
-
.hsk-checkout-right-content {
|
|
2874
|
-
width: 100%;
|
|
2875
|
-
max-width: 440px;
|
|
2876
|
-
display: flex;
|
|
2877
|
-
flex-direction: column;
|
|
2878
|
-
}
|
|
2879
|
-
.hsk-checkout-payment-form-wrap {
|
|
2880
|
-
width: 100%;
|
|
2881
|
-
}
|
|
2882
|
-
.hsk-checkout-section-title {
|
|
2883
|
-
margin: 0 0 2rem 0;
|
|
2884
|
-
font-size: 1.125rem;
|
|
2885
|
-
font-weight: 600;
|
|
2886
|
-
color: var(--hsk-checkout-text, #0f172a);
|
|
2887
|
-
}
|
|
2888
|
-
.hsk-stripe-checkout-form {
|
|
2889
|
-
display: flex;
|
|
2890
|
-
flex-direction: column;
|
|
2891
|
-
gap: 1.5rem;
|
|
2892
|
-
}
|
|
2893
|
-
.hsk-form-group {
|
|
2894
|
-
display: flex;
|
|
2895
|
-
flex-direction: column;
|
|
2896
|
-
gap: 0.5rem;
|
|
2897
|
-
}
|
|
2898
|
-
.hsk-form-row {
|
|
2899
|
-
display: grid;
|
|
2900
|
-
grid-template-columns: 1fr 1fr;
|
|
2901
|
-
gap: 1rem;
|
|
2902
|
-
}
|
|
2903
|
-
.hsk-form-label {
|
|
2904
|
-
font-size: 0.8125rem;
|
|
2905
|
-
font-weight: 600;
|
|
2906
|
-
color: var(--hsk-checkout-text, #334155);
|
|
2907
|
-
}
|
|
2908
|
-
.hsk-form-input {
|
|
2909
|
-
width: 100%;
|
|
2910
|
-
box-sizing: border-box;
|
|
2911
|
-
padding: 0.75rem 1rem;
|
|
2912
|
-
font-size: 0.9375rem;
|
|
2913
|
-
background: #ffffff;
|
|
2914
|
-
color: var(--hsk-checkout-text, #1e293b);
|
|
2915
|
-
border: 1px solid var(--hsk-checkout-divide, #cbd5e1);
|
|
2916
|
-
border-radius: 4px;
|
|
2917
|
-
outline: none;
|
|
2918
|
-
transition: border-color 0.15s ease;
|
|
2919
|
-
}
|
|
2920
|
-
.hsk-form-input:focus {
|
|
2921
|
-
border-color: var(--hsk-primary, #ff6a33);
|
|
2922
|
-
box-shadow: none;
|
|
2923
|
-
}
|
|
2924
|
-
.hsk-phone-input-container {
|
|
2925
|
-
display: flex;
|
|
2926
|
-
align-items: center;
|
|
2927
|
-
border: 1px solid var(--hsk-checkout-divide, #cbd5e1);
|
|
2928
|
-
border-radius: 4px;
|
|
2929
|
-
overflow: hidden;
|
|
2930
|
-
background: #ffffff;
|
|
2931
|
-
transition: border-color 0.15s ease;
|
|
2932
|
-
}
|
|
2933
|
-
.hsk-phone-input-container:focus-within {
|
|
2934
|
-
border-color: var(--hsk-primary, #ff6a33);
|
|
2935
|
-
box-shadow: none;
|
|
2936
|
-
}
|
|
2937
|
-
.hsk-phone-prefix {
|
|
2938
|
-
padding: 0.75rem 1rem;
|
|
2939
|
-
font-weight: 700;
|
|
2940
|
-
font-size: 0.9375rem;
|
|
2941
|
-
background: var(--hsk-checkout-left-bg, #f1f5f9);
|
|
2942
|
-
color: var(--hsk-checkout-muted, #64748b);
|
|
2943
|
-
border-right: 1px solid var(--hsk-checkout-divide, #cbd5e1);
|
|
2944
|
-
user-select: none;
|
|
2945
|
-
}
|
|
2946
|
-
.hsk-phone-input-field {
|
|
2947
|
-
flex: 1;
|
|
2948
|
-
padding: 0.75rem 1rem;
|
|
2949
|
-
font-size: 0.9375rem;
|
|
2950
|
-
font-weight: 600;
|
|
2951
|
-
background: transparent;
|
|
2952
|
-
color: var(--hsk-checkout-text, #1e293b);
|
|
2953
|
-
border: none;
|
|
2954
|
-
outline: none;
|
|
2955
|
-
letter-spacing: 0.05em;
|
|
2956
|
-
}
|
|
2957
|
-
.hsk-form-hint {
|
|
2958
|
-
font-size: 0.75rem;
|
|
2959
|
-
color: var(--hsk-checkout-muted, #64748b);
|
|
2960
|
-
}
|
|
2961
|
-
.hsk-form-error-banner {
|
|
2962
|
-
padding: 0.75rem 1rem;
|
|
2963
|
-
background: #fef2f2;
|
|
2964
|
-
border: 1px solid #fee2e2;
|
|
2965
|
-
border-radius: 4px;
|
|
2966
|
-
font-size: 0.8125rem;
|
|
2967
|
-
color: #ef4444;
|
|
2968
|
-
font-weight: 500;
|
|
2969
|
-
}
|
|
2970
|
-
.hsk-checkout-submit-btn {
|
|
2971
|
-
width: 100%;
|
|
2972
|
-
padding: 0.875rem;
|
|
2973
|
-
font-size: 0.9375rem;
|
|
2974
|
-
font-weight: 600;
|
|
2975
|
-
background: var(--hsk-primary, #ff6a33);
|
|
2976
|
-
color: #ffffff;
|
|
2977
|
-
border: none;
|
|
2978
|
-
border-radius: 4px;
|
|
2979
|
-
cursor: pointer;
|
|
2980
|
-
transition: opacity 0.15s ease, transform 0.1s active;
|
|
2981
|
-
box-shadow: 0 4px 12px rgba(255, 106, 51, 0.25);
|
|
2982
|
-
}
|
|
2983
|
-
.hsk-checkout-submit-btn:hover {
|
|
2984
|
-
opacity: 0.95;
|
|
2985
|
-
}
|
|
2986
|
-
.hsk-checkout-submit-btn:active {
|
|
2987
|
-
transform: scale(0.98);
|
|
2988
|
-
}
|
|
2989
|
-
.hsk-checkout-footer-brand {
|
|
2990
|
-
margin-top: 2rem;
|
|
2991
|
-
display: flex;
|
|
2992
|
-
align-items: center;
|
|
2993
|
-
justify-content: center;
|
|
2994
|
-
font-size: 0.75rem;
|
|
2995
|
-
color: var(--hsk-checkout-muted, #94a3b8);
|
|
2996
|
-
}
|
|
2997
|
-
.hsk-checkout-status-card {
|
|
2998
|
-
display: flex;
|
|
2999
|
-
flex-direction: column;
|
|
3000
|
-
align-items: center;
|
|
3001
|
-
text-align: center;
|
|
3002
|
-
padding: 3.5rem 2rem;
|
|
3003
|
-
border-radius: 16px;
|
|
3004
|
-
background: var(--hsk-checkout-left-bg, #f8fafc);
|
|
3005
|
-
border: 1.5px solid var(--hsk-checkout-divide, #e2e8f0);
|
|
3006
|
-
transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
|
|
3007
|
-
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
|
|
3008
|
-
width: 100%;
|
|
3009
|
-
box-sizing: border-box;
|
|
3010
|
-
}
|
|
3011
|
-
.hsk-checkout-status-card.success {
|
|
3012
|
-
border-color: rgba(16, 185, 129, 0.35);
|
|
3013
|
-
background:
|
|
3014
|
-
linear-gradient(
|
|
3015
|
-
135deg,
|
|
3016
|
-
rgba(16, 185, 129, 0.02),
|
|
3017
|
-
rgba(16, 185, 129, 0.08));
|
|
3018
|
-
box-shadow: 0 12px 40px rgba(16, 185, 129, 0.08);
|
|
3019
|
-
}
|
|
3020
|
-
.hsk-checkout-status-card.failed {
|
|
3021
|
-
border-color: rgba(239, 68, 68, 0.35);
|
|
3022
|
-
background:
|
|
3023
|
-
linear-gradient(
|
|
3024
|
-
135deg,
|
|
3025
|
-
rgba(239, 68, 68, 0.02),
|
|
3026
|
-
rgba(239, 68, 68, 0.08));
|
|
3027
|
-
box-shadow: 0 12px 40px rgba(239, 68, 68, 0.08);
|
|
3028
|
-
animation: hsk-shake-bounce 0.5s ease-in-out;
|
|
3029
|
-
}
|
|
3030
|
-
.hsk-checkout-status-card.cancelled {
|
|
3031
|
-
border-color: rgba(245, 158, 11, 0.35);
|
|
3032
|
-
background:
|
|
3033
|
-
linear-gradient(
|
|
3034
|
-
135deg,
|
|
3035
|
-
rgba(245, 158, 11, 0.02),
|
|
3036
|
-
rgba(245, 158, 11, 0.08));
|
|
3037
|
-
box-shadow: 0 12px 40px rgba(245, 158, 11, 0.08);
|
|
3038
|
-
}
|
|
3039
|
-
@keyframes hsk-shake-bounce {
|
|
3040
|
-
0%, 100% {
|
|
3041
|
-
transform: translateX(0);
|
|
3042
|
-
}
|
|
3043
|
-
20%, 60% {
|
|
3044
|
-
transform: translateX(-4px);
|
|
3045
|
-
}
|
|
3046
|
-
40%, 80% {
|
|
3047
|
-
transform: translateX(4px);
|
|
3048
|
-
}
|
|
3049
|
-
}
|
|
3050
|
-
.hsk-status-icon-wrap {
|
|
3051
|
-
width: 64px;
|
|
3052
|
-
height: 64px;
|
|
3053
|
-
border-radius: 50%;
|
|
3054
|
-
display: flex;
|
|
3055
|
-
align-items: center;
|
|
3056
|
-
justify-content: center;
|
|
3057
|
-
margin-bottom: 1.5rem;
|
|
3058
|
-
position: relative;
|
|
3059
|
-
transition: transform 0.2s ease;
|
|
3060
|
-
}
|
|
3061
|
-
.hsk-status-icon-wrap:hover {
|
|
3062
|
-
transform: scale(1.05);
|
|
3063
|
-
}
|
|
3064
|
-
.hsk-status-icon-wrap::after {
|
|
3065
|
-
content: "";
|
|
3066
|
-
position: absolute;
|
|
3067
|
-
inset: -6px;
|
|
3068
|
-
border-radius: 50%;
|
|
3069
|
-
border: 2px solid currentColor;
|
|
3070
|
-
opacity: 0.15;
|
|
3071
|
-
animation: hskPulse 2s infinite;
|
|
3072
|
-
}
|
|
3073
|
-
@keyframes hskPulse {
|
|
3074
|
-
0% {
|
|
3075
|
-
transform: scale(1);
|
|
3076
|
-
opacity: 0.25;
|
|
3077
|
-
}
|
|
3078
|
-
70% {
|
|
3079
|
-
transform: scale(1.15);
|
|
3080
|
-
opacity: 0;
|
|
3081
|
-
}
|
|
3082
|
-
100% {
|
|
3083
|
-
transform: scale(1.15);
|
|
3084
|
-
opacity: 0;
|
|
3085
|
-
}
|
|
3086
|
-
}
|
|
3087
|
-
.hsk-status-icon-wrap.success {
|
|
3088
|
-
background: #ecfdf5;
|
|
3089
|
-
color: #10b981;
|
|
3090
|
-
}
|
|
3091
|
-
.hsk-status-icon-wrap.failed {
|
|
3092
|
-
background: #fef2f2;
|
|
3093
|
-
color: #ef4444;
|
|
3094
|
-
}
|
|
3095
|
-
.hsk-status-icon-wrap.cancelled {
|
|
3096
|
-
background: #fffbeb;
|
|
3097
|
-
color: #d97706;
|
|
3098
|
-
}
|
|
3099
|
-
.hsk-checkout-status-card h3 {
|
|
3100
|
-
font-size: 1.25rem;
|
|
3101
|
-
font-weight: 600;
|
|
3102
|
-
margin: 0 0 0.75rem 0;
|
|
3103
|
-
color: var(--hsk-checkout-text, #0f172a);
|
|
3104
|
-
}
|
|
3105
|
-
.hsk-checkout-status-card p {
|
|
3106
|
-
font-size: 0.9375rem;
|
|
3107
|
-
line-height: 1.5;
|
|
3108
|
-
margin: 0 0 1.5rem 0;
|
|
3109
|
-
color: var(--hsk-checkout-muted, #475569);
|
|
3110
|
-
max-width: 340px;
|
|
3111
|
-
}
|
|
3112
|
-
.hsk-checkout-error-text {
|
|
3113
|
-
color: #ef4444 !important;
|
|
3114
|
-
font-weight: 500;
|
|
3115
|
-
}
|
|
3116
|
-
.hsk-status-spinner-wrap {
|
|
3117
|
-
margin-bottom: 1.5rem;
|
|
3118
|
-
position: relative;
|
|
3119
|
-
}
|
|
3120
|
-
.hsk-status-spinner {
|
|
3121
|
-
width: 48px;
|
|
3122
|
-
height: 48px;
|
|
3123
|
-
border: 4px solid var(--hsk-checkout-divide, #e2e8f0);
|
|
3124
|
-
border-top: 4px solid var(--hsk-primary, #ff6a33);
|
|
3125
|
-
border-radius: 50%;
|
|
3126
|
-
animation: hskSpin 1s linear infinite;
|
|
2275
|
+
color: var(--hsk-text, inherit);
|
|
2276
|
+
margin: 0;
|
|
3127
2277
|
}
|
|
3128
|
-
.hsk-
|
|
3129
|
-
background: #ffffff;
|
|
3130
|
-
border: 1px solid var(--hsk-checkout-divide, #e2e8f0);
|
|
3131
|
-
border-radius: 6px;
|
|
3132
|
-
padding: 1.25rem;
|
|
3133
|
-
margin-bottom: 1.5rem;
|
|
2278
|
+
.hsk-cb-phone-input {
|
|
3134
2279
|
width: 100%;
|
|
3135
2280
|
box-sizing: border-box;
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
font-
|
|
3142
|
-
|
|
2281
|
+
padding: 8px 12px;
|
|
2282
|
+
border: 1px solid var(--hsk-border, #e4e4e7);
|
|
2283
|
+
border-radius: var(--hsk-radius, 8px);
|
|
2284
|
+
background: var(--hsk-bg, #fff);
|
|
2285
|
+
color: var(--hsk-text, inherit);
|
|
2286
|
+
font-size: 0.9rem;
|
|
2287
|
+
outline: none;
|
|
2288
|
+
transition: border-color 0.15s;
|
|
3143
2289
|
}
|
|
3144
|
-
.hsk-
|
|
3145
|
-
|
|
2290
|
+
.hsk-cb-phone-input:focus {
|
|
2291
|
+
border-color: var(--hsk-primary, #6366f1);
|
|
3146
2292
|
}
|
|
3147
|
-
.hsk-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
2293
|
+
.hsk-cb-phone-submit {
|
|
2294
|
+
align-self: flex-start;
|
|
2295
|
+
padding: 8px 16px;
|
|
2296
|
+
border: 1px solid var(--hsk-border, #e4e4e7);
|
|
2297
|
+
border-radius: var(--hsk-radius, 8px);
|
|
2298
|
+
background: var(--hsk-bg, #fff);
|
|
2299
|
+
color: var(--hsk-text, inherit);
|
|
2300
|
+
font-size: 0.875rem;
|
|
3152
2301
|
font-weight: 500;
|
|
3153
|
-
text-decoration: underline;
|
|
3154
|
-
cursor: pointer;
|
|
3155
|
-
padding: 0;
|
|
3156
|
-
transition: color 0.15s ease;
|
|
3157
|
-
}
|
|
3158
|
-
.hsk-checkout-cancel-btn:hover {
|
|
3159
|
-
color: var(--hsk-primary, #ff6a33);
|
|
3160
|
-
}
|
|
3161
|
-
.hsk-checkout-status-actions {
|
|
3162
|
-
display: flex;
|
|
3163
|
-
gap: 0.75rem;
|
|
3164
|
-
margin-top: 1.5rem;
|
|
3165
|
-
flex-wrap: wrap;
|
|
3166
|
-
justify-content: center;
|
|
3167
|
-
width: 100%;
|
|
3168
|
-
}
|
|
3169
|
-
.hsk-checkout-close-x {
|
|
3170
|
-
position: absolute;
|
|
3171
|
-
top: 1.5rem;
|
|
3172
|
-
right: 1.5rem;
|
|
3173
|
-
background: none;
|
|
3174
|
-
border: none;
|
|
3175
|
-
color: var(--hsk-checkout-muted, #64748b);
|
|
3176
2302
|
cursor: pointer;
|
|
3177
|
-
|
|
3178
|
-
display: flex;
|
|
3179
|
-
align-items: center;
|
|
3180
|
-
justify-content: center;
|
|
3181
|
-
border-radius: 50%;
|
|
3182
|
-
transition: background-color 0.15s, color 0.15s;
|
|
3183
|
-
z-index: 1000;
|
|
3184
|
-
}
|
|
3185
|
-
.hsk-checkout-close-x:hover {
|
|
3186
|
-
background-color: var(--hsk-checkout-divide, #e2e8f0);
|
|
3187
|
-
color: var(--hsk-checkout-text, #0f172a);
|
|
3188
|
-
}
|
|
3189
|
-
@keyframes hskSpin {
|
|
3190
|
-
0% {
|
|
3191
|
-
transform: rotate(0deg);
|
|
3192
|
-
}
|
|
3193
|
-
100% {
|
|
3194
|
-
transform: rotate(360deg);
|
|
3195
|
-
}
|
|
3196
|
-
}
|
|
3197
|
-
[data-hsk-theme=dark] .hsk-checkout-modal-full,
|
|
3198
|
-
[data-hsk-theme=dark] .hsk-checkout-panel-right {
|
|
3199
|
-
--hsk-checkout-right-bg: #090d16;
|
|
3200
|
-
--hsk-checkout-text: #f8fafc;
|
|
3201
|
-
--hsk-checkout-divide: #1e293b;
|
|
3202
|
-
}
|
|
3203
|
-
[data-hsk-theme=dark] .hsk-checkout-panel-left {
|
|
3204
|
-
--hsk-checkout-left-bg: #0d1321;
|
|
3205
|
-
--hsk-checkout-text: #f8fafc;
|
|
3206
|
-
--hsk-checkout-divide: #1e293b;
|
|
3207
|
-
--hsk-checkout-muted: #94a3b8;
|
|
3208
|
-
}
|
|
3209
|
-
[data-hsk-theme=dark] .hsk-form-input,
|
|
3210
|
-
[data-hsk-theme=dark] .hsk-phone-input-container,
|
|
3211
|
-
[data-hsk-theme=dark] .hsk-checkout-item-img-container {
|
|
3212
|
-
background: #0d1321;
|
|
3213
|
-
border-color: #1e293b;
|
|
3214
|
-
}
|
|
3215
|
-
[data-hsk-theme=dark] .hsk-phone-prefix {
|
|
3216
|
-
background: #090d16;
|
|
3217
|
-
border-color: #1e293b;
|
|
3218
|
-
}
|
|
3219
|
-
[data-hsk-theme=dark] .hsk-checkout-status-card {
|
|
3220
|
-
background: #0d1321;
|
|
3221
|
-
border-color: #1e293b;
|
|
3222
|
-
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
|
|
3223
|
-
}
|
|
3224
|
-
[data-hsk-theme=dark] .hsk-checkout-stk-instructions {
|
|
3225
|
-
background: #090d16;
|
|
3226
|
-
border-color: #1e293b;
|
|
3227
|
-
}
|
|
3228
|
-
[data-hsk-theme=dark] .hsk-form-label {
|
|
3229
|
-
color: #94a3b8;
|
|
3230
|
-
}
|
|
3231
|
-
[data-hsk-theme=dark] .hsk-checkout-close-x:hover {
|
|
3232
|
-
background-color: #1e293b;
|
|
3233
|
-
color: #f8fafc;
|
|
3234
|
-
}
|
|
3235
|
-
[data-hsk-theme=dark] .hsk-status-icon-wrap.success {
|
|
3236
|
-
background: rgba(16, 185, 129, 0.15);
|
|
3237
|
-
color: #34d399;
|
|
3238
|
-
}
|
|
3239
|
-
[data-hsk-theme=dark] .hsk-status-icon-wrap.failed {
|
|
3240
|
-
background: rgba(239, 68, 68, 0.15);
|
|
3241
|
-
color: #f87171;
|
|
3242
|
-
}
|
|
3243
|
-
[data-hsk-theme=dark] .hsk-status-icon-wrap.cancelled {
|
|
3244
|
-
background: rgba(245, 158, 11, 0.15);
|
|
3245
|
-
color: #fbbf24;
|
|
3246
|
-
}
|
|
3247
|
-
[data-hsk-theme=dark] .hsk-checkout-status-card.success {
|
|
3248
|
-
border-color: rgba(52, 211, 153, 0.3);
|
|
3249
|
-
background:
|
|
3250
|
-
linear-gradient(
|
|
3251
|
-
135deg,
|
|
3252
|
-
rgba(52, 211, 153, 0.01),
|
|
3253
|
-
rgba(52, 211, 153, 0.08));
|
|
3254
|
-
box-shadow: 0 12px 40px rgba(52, 211, 153, 0.06);
|
|
3255
|
-
}
|
|
3256
|
-
[data-hsk-theme=dark] .hsk-checkout-status-card.failed {
|
|
3257
|
-
border-color: rgba(248, 113, 113, 0.3);
|
|
3258
|
-
background:
|
|
3259
|
-
linear-gradient(
|
|
3260
|
-
135deg,
|
|
3261
|
-
rgba(248, 113, 113, 0.01),
|
|
3262
|
-
rgba(248, 113, 113, 0.08));
|
|
3263
|
-
box-shadow: 0 12px 40px rgba(248, 113, 113, 0.06);
|
|
3264
|
-
}
|
|
3265
|
-
[data-hsk-theme=dark] .hsk-checkout-status-card.cancelled {
|
|
3266
|
-
border-color: rgba(251, 191, 36, 0.3);
|
|
3267
|
-
background:
|
|
3268
|
-
linear-gradient(
|
|
3269
|
-
135deg,
|
|
3270
|
-
rgba(251, 191, 36, 0.01),
|
|
3271
|
-
rgba(251, 191, 36, 0.08));
|
|
3272
|
-
box-shadow: 0 12px 40px rgba(251, 191, 36, 0.06);
|
|
3273
|
-
}
|
|
3274
|
-
[data-hsk-theme=dark] .hsk-cb-overlay {
|
|
3275
|
-
--hsk-chat-bg: #0a0a0a;
|
|
3276
|
-
--hsk-chat-text: #f0efed;
|
|
3277
|
-
--hsk-chat-muted: #888;
|
|
3278
|
-
--hsk-chat-divide: rgba(255,255,255,.07);
|
|
3279
|
-
--hsk-chat-input-bg: rgba(255,255,255,.05);
|
|
3280
|
-
--hsk-chat-source-bg: rgba(255,255,255,.04);
|
|
3281
|
-
--hsk-fade-bg: #0a0a0a;
|
|
3282
|
-
background: #000000 !important;
|
|
3283
|
-
}
|
|
3284
|
-
[data-hsk-theme=dark] .hsk-cb-topbar-title {
|
|
3285
|
-
color: #f0efed;
|
|
3286
|
-
}
|
|
3287
|
-
[data-hsk-theme=dark] .hsk-cb-topbar-sub {
|
|
3288
|
-
color: #888;
|
|
3289
|
-
}
|
|
3290
|
-
[data-hsk-theme=dark] .hsk-cb-topbar-btn {
|
|
3291
|
-
border-color: rgba(255, 255, 255, .07);
|
|
3292
|
-
color: #888;
|
|
3293
|
-
}
|
|
3294
|
-
[data-hsk-theme=dark] .hsk-cb-close {
|
|
3295
|
-
border-color: rgba(255, 255, 255, .07);
|
|
3296
|
-
color: #888;
|
|
3297
|
-
}
|
|
3298
|
-
[data-hsk-theme=dark] .hsk-cb-empty-title {
|
|
3299
|
-
color: #f0efed;
|
|
3300
|
-
}
|
|
3301
|
-
[data-hsk-theme=dark] .hsk-cb-empty-sub {
|
|
3302
|
-
color: #888;
|
|
3303
|
-
}
|
|
3304
|
-
[data-hsk-theme=dark] .hsk-cb-chip {
|
|
3305
|
-
border-color: rgba(255, 255, 255, .07);
|
|
3306
|
-
background: rgba(255, 255, 255, .04);
|
|
3307
|
-
color: #f0efed;
|
|
3308
|
-
}
|
|
3309
|
-
[data-hsk-theme=dark] .hsk-cb-chip:hover {
|
|
3310
|
-
background: rgba(255, 106, 51, .06);
|
|
3311
|
-
}
|
|
3312
|
-
[data-hsk-theme=dark] .hsk-cb-msg-group {
|
|
3313
|
-
border-bottom-color: rgba(255, 255, 255, .05);
|
|
3314
|
-
}
|
|
3315
|
-
[data-hsk-theme=dark] .hsk-cb-user-bubble {
|
|
3316
|
-
color: #fff;
|
|
3317
|
-
}
|
|
3318
|
-
[data-hsk-theme=dark] .hsk-cb-ai-icon {
|
|
3319
|
-
background: rgba(255, 106, 51, .12);
|
|
3320
|
-
border-color: rgba(255, 106, 51, .25);
|
|
3321
|
-
}
|
|
3322
|
-
[data-hsk-theme=dark] .hsk-cb-ai-text {
|
|
3323
|
-
color: #f0efed;
|
|
3324
|
-
}
|
|
3325
|
-
[data-hsk-theme=dark] .hsk-cb-sources-next {
|
|
3326
|
-
border-color: rgba(255, 255, 255, .12);
|
|
3327
|
-
background: #0a0a0a;
|
|
3328
|
-
color: #f0efed;
|
|
3329
|
-
}
|
|
3330
|
-
[data-hsk-theme=dark] .hsk-cb-src-imgwrap-empty {
|
|
3331
|
-
background: rgba(255, 255, 255, .06);
|
|
3332
|
-
color: #555;
|
|
3333
|
-
}
|
|
3334
|
-
[data-hsk-theme=dark] .hsk-cb-src-name {
|
|
3335
|
-
color: #f0efed;
|
|
3336
|
-
}
|
|
3337
|
-
[data-hsk-theme=dark] .hsk-cb-selected-product {
|
|
3338
|
-
border-color: rgba(255, 255, 255, .08);
|
|
3339
|
-
background: rgba(255, 255, 255, .03);
|
|
3340
|
-
}
|
|
3341
|
-
[data-hsk-theme=dark] .hsk-cb-selected-name {
|
|
3342
|
-
color: #f0efed;
|
|
3343
|
-
}
|
|
3344
|
-
[data-hsk-theme=dark] .hsk-cb-dot {
|
|
3345
|
-
background: #555;
|
|
3346
|
-
}
|
|
3347
|
-
[data-hsk-theme=dark] .hsk-cb-input-box {
|
|
3348
|
-
background: rgba(255, 255, 255, .05);
|
|
3349
|
-
border-color: rgba(255, 255, 255, .07);
|
|
3350
|
-
}
|
|
3351
|
-
[data-hsk-theme=dark] .hsk-cb-textarea {
|
|
3352
|
-
color: #f0efed;
|
|
3353
|
-
}
|
|
3354
|
-
[data-hsk-theme=dark] .hsk-cb-textarea::placeholder {
|
|
3355
|
-
color: #555;
|
|
3356
|
-
}
|
|
3357
|
-
[data-hsk-theme=dark] .hsk-cb-send:disabled {
|
|
3358
|
-
background: #555;
|
|
3359
|
-
}
|
|
3360
|
-
[data-hsk-theme=dark] .hsk-cb-hint {
|
|
3361
|
-
color: #555;
|
|
3362
|
-
}
|
|
3363
|
-
@media (prefers-color-scheme: dark) {
|
|
3364
|
-
.hsk-checkout-modal-full,
|
|
3365
|
-
.hsk-checkout-panel-right {
|
|
3366
|
-
--hsk-checkout-right-bg: #090d16;
|
|
3367
|
-
--hsk-checkout-text: #f8fafc;
|
|
3368
|
-
--hsk-checkout-divide: #1e293b;
|
|
3369
|
-
}
|
|
3370
|
-
.hsk-checkout-panel-left {
|
|
3371
|
-
--hsk-checkout-left-bg: #0d1321;
|
|
3372
|
-
--hsk-checkout-text: #f8fafc;
|
|
3373
|
-
--hsk-checkout-divide: #1e293b;
|
|
3374
|
-
--hsk-checkout-muted: #94a3b8;
|
|
3375
|
-
}
|
|
3376
|
-
.hsk-form-input,
|
|
3377
|
-
.hsk-phone-input-container,
|
|
3378
|
-
.hsk-checkout-item-img-container {
|
|
3379
|
-
background: #0d1321;
|
|
3380
|
-
border-color: #1e293b;
|
|
3381
|
-
}
|
|
3382
|
-
.hsk-phone-prefix {
|
|
3383
|
-
background: #090d16;
|
|
3384
|
-
border-color: #1e293b;
|
|
3385
|
-
}
|
|
3386
|
-
.hsk-checkout-status-card {
|
|
3387
|
-
background: #0d1321;
|
|
3388
|
-
border-color: #1e293b;
|
|
3389
|
-
}
|
|
3390
|
-
.hsk-checkout-stk-instructions {
|
|
3391
|
-
background: #090d16;
|
|
3392
|
-
border-color: #1e293b;
|
|
3393
|
-
}
|
|
3394
|
-
.hsk-form-label {
|
|
3395
|
-
color: #94a3b8;
|
|
3396
|
-
}
|
|
3397
|
-
.hsk-checkout-close-x:hover {
|
|
3398
|
-
background-color: #1e293b;
|
|
3399
|
-
color: #f8fafc;
|
|
3400
|
-
}
|
|
3401
|
-
.hsk-status-icon-wrap.success {
|
|
3402
|
-
background: rgba(16, 185, 129, 0.15);
|
|
3403
|
-
color: #34d399;
|
|
3404
|
-
}
|
|
3405
|
-
.hsk-status-icon-wrap.failed {
|
|
3406
|
-
background: rgba(239, 68, 68, 0.15);
|
|
3407
|
-
color: #f87171;
|
|
3408
|
-
}
|
|
3409
|
-
.hsk-status-icon-wrap.cancelled {
|
|
3410
|
-
background: rgba(245, 158, 11, 0.15);
|
|
3411
|
-
color: #fbbf24;
|
|
3412
|
-
}
|
|
3413
|
-
.hsk-checkout-status-card.success {
|
|
3414
|
-
background:
|
|
3415
|
-
linear-gradient(
|
|
3416
|
-
135deg,
|
|
3417
|
-
rgba(16, 185, 129, 0.02),
|
|
3418
|
-
rgba(16, 185, 129, 0.08));
|
|
3419
|
-
}
|
|
3420
|
-
.hsk-checkout-status-card.failed {
|
|
3421
|
-
background:
|
|
3422
|
-
linear-gradient(
|
|
3423
|
-
135deg,
|
|
3424
|
-
rgba(239, 68, 68, 0.02),
|
|
3425
|
-
rgba(239, 68, 68, 0.08));
|
|
3426
|
-
}
|
|
3427
|
-
.hsk-checkout-status-card.cancelled {
|
|
3428
|
-
background:
|
|
3429
|
-
linear-gradient(
|
|
3430
|
-
135deg,
|
|
3431
|
-
rgba(245, 158, 11, 0.02),
|
|
3432
|
-
rgba(245, 158, 11, 0.08));
|
|
3433
|
-
}
|
|
2303
|
+
transition: background 0.15s, border-color 0.15s;
|
|
3434
2304
|
}
|
|
3435
|
-
|
|
3436
|
-
|
|
3437
|
-
grid-template-columns: 1fr;
|
|
3438
|
-
overflow-y: auto;
|
|
3439
|
-
}
|
|
3440
|
-
.hsk-checkout-panel-left {
|
|
3441
|
-
padding: 2rem 1.5rem 1.5rem 1.5rem;
|
|
3442
|
-
align-items: center;
|
|
3443
|
-
border-right: none;
|
|
3444
|
-
border-bottom: 1px solid var(--hsk-checkout-divide, #cbd5e1);
|
|
3445
|
-
}
|
|
3446
|
-
.hsk-checkout-panel-right {
|
|
3447
|
-
padding: 1.5rem 1.5rem 2rem 1.5rem;
|
|
3448
|
-
align-items: center;
|
|
3449
|
-
}
|
|
3450
|
-
.hsk-checkout-left-content,
|
|
3451
|
-
.hsk-checkout-right-content {
|
|
3452
|
-
max-width: 100%;
|
|
3453
|
-
}
|
|
2305
|
+
.hsk-cb-phone-submit:hover {
|
|
2306
|
+
border-color: var(--hsk-primary, #6366f1);
|
|
3454
2307
|
}
|
|
3455
2308
|
.hsk-cb-panel--with-sidebar {
|
|
3456
2309
|
display: flex;
|
|
@@ -3637,14 +2490,6 @@
|
|
|
3637
2490
|
.hsk-cb-replay-banner button:hover {
|
|
3638
2491
|
text-decoration: underline;
|
|
3639
2492
|
}
|
|
3640
|
-
.hsk-cart-card {
|
|
3641
|
-
margin-top: 10px;
|
|
3642
|
-
border-radius: 12px;
|
|
3643
|
-
border: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.1));
|
|
3644
|
-
background: var(--hsk-cart-card-bg, rgba(248,248,247,0.9));
|
|
3645
|
-
overflow: hidden;
|
|
3646
|
-
animation: hsk-fade-in-up 0.3s ease both;
|
|
3647
|
-
}
|
|
3648
2493
|
@keyframes hsk-fade-in-up {
|
|
3649
2494
|
from {
|
|
3650
2495
|
opacity: 0;
|
|
@@ -3655,107 +2500,6 @@
|
|
|
3655
2500
|
transform: translateY(0);
|
|
3656
2501
|
}
|
|
3657
2502
|
}
|
|
3658
|
-
.hsk-cart-card-header {
|
|
3659
|
-
display: flex;
|
|
3660
|
-
align-items: center;
|
|
3661
|
-
gap: 6px;
|
|
3662
|
-
padding: 8px 12px;
|
|
3663
|
-
background: color-mix(in srgb, var(--hsk-primary, #ff6a33) 6%, transparent);
|
|
3664
|
-
border-bottom: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.07));
|
|
3665
|
-
font-size: 11.5px;
|
|
3666
|
-
font-weight: 600;
|
|
3667
|
-
color: var(--hsk-primary, #ff6a33);
|
|
3668
|
-
letter-spacing: .02em;
|
|
3669
|
-
text-transform: uppercase;
|
|
3670
|
-
}
|
|
3671
|
-
.hsk-cart-items {
|
|
3672
|
-
padding: 6px 0;
|
|
3673
|
-
display: flex;
|
|
3674
|
-
flex-direction: column;
|
|
3675
|
-
}
|
|
3676
|
-
.hsk-cart-item {
|
|
3677
|
-
display: flex;
|
|
3678
|
-
align-items: center;
|
|
3679
|
-
gap: 10px;
|
|
3680
|
-
padding: 8px 12px;
|
|
3681
|
-
transition: background .12s;
|
|
3682
|
-
}
|
|
3683
|
-
.hsk-cart-item:hover {
|
|
3684
|
-
background: rgba(0, 0, 0, .03);
|
|
3685
|
-
}
|
|
3686
|
-
.hsk-cart-item-img-wrap {
|
|
3687
|
-
position: relative;
|
|
3688
|
-
flex-shrink: 0;
|
|
3689
|
-
}
|
|
3690
|
-
.hsk-cart-item-img {
|
|
3691
|
-
width: 44px;
|
|
3692
|
-
height: 44px;
|
|
3693
|
-
object-fit: cover;
|
|
3694
|
-
border-radius: 8px;
|
|
3695
|
-
border: 1px solid rgba(0, 0, 0, .07);
|
|
3696
|
-
background: #f0f0ef;
|
|
3697
|
-
}
|
|
3698
|
-
.hsk-cart-item-img-placeholder {
|
|
3699
|
-
width: 44px;
|
|
3700
|
-
height: 44px;
|
|
3701
|
-
border-radius: 8px;
|
|
3702
|
-
background: color-mix(in srgb, var(--hsk-primary, #ff6a33) 10%, transparent);
|
|
3703
|
-
display: flex;
|
|
3704
|
-
align-items: center;
|
|
3705
|
-
justify-content: center;
|
|
3706
|
-
color: var(--hsk-primary, #ff6a33);
|
|
3707
|
-
}
|
|
3708
|
-
.hsk-cart-item-qty {
|
|
3709
|
-
position: absolute;
|
|
3710
|
-
top: -5px;
|
|
3711
|
-
right: -5px;
|
|
3712
|
-
width: 18px;
|
|
3713
|
-
height: 18px;
|
|
3714
|
-
border-radius: 50%;
|
|
3715
|
-
background: var(--hsk-primary, #ff6a33);
|
|
3716
|
-
color: #fff;
|
|
3717
|
-
font-size: 10px;
|
|
3718
|
-
font-weight: 700;
|
|
3719
|
-
display: flex;
|
|
3720
|
-
align-items: center;
|
|
3721
|
-
justify-content: center;
|
|
3722
|
-
line-height: 1;
|
|
3723
|
-
}
|
|
3724
|
-
.hsk-cart-item-info {
|
|
3725
|
-
flex: 1;
|
|
3726
|
-
min-width: 0;
|
|
3727
|
-
}
|
|
3728
|
-
.hsk-cart-item-name {
|
|
3729
|
-
font-size: 12.5px;
|
|
3730
|
-
font-weight: 500;
|
|
3731
|
-
color: var(--hsk-chat-text, #1f1f1f);
|
|
3732
|
-
white-space: nowrap;
|
|
3733
|
-
overflow: hidden;
|
|
3734
|
-
text-overflow: ellipsis;
|
|
3735
|
-
}
|
|
3736
|
-
.hsk-cart-item-price {
|
|
3737
|
-
font-size: 12px;
|
|
3738
|
-
color: var(--hsk-chat-muted, #5f6368);
|
|
3739
|
-
margin-top: 2px;
|
|
3740
|
-
}
|
|
3741
|
-
.hsk-cart-item-qty-label {
|
|
3742
|
-
opacity: 0.7;
|
|
3743
|
-
}
|
|
3744
|
-
.hsk-cart-total {
|
|
3745
|
-
display: flex;
|
|
3746
|
-
align-items: center;
|
|
3747
|
-
justify-content: space-between;
|
|
3748
|
-
padding: 8px 12px;
|
|
3749
|
-
border-top: 1px solid var(--hsk-chat-divide, rgba(0,0,0,.07));
|
|
3750
|
-
background: color-mix(in srgb, var(--hsk-primary, #ff6a33) 4%, transparent);
|
|
3751
|
-
font-size: 12.5px;
|
|
3752
|
-
color: var(--hsk-chat-muted, #5f6368);
|
|
3753
|
-
}
|
|
3754
|
-
.hsk-cart-total-amount {
|
|
3755
|
-
font-weight: 700;
|
|
3756
|
-
color: var(--hsk-primary, #ff6a33);
|
|
3757
|
-
font-size: 13px;
|
|
3758
|
-
}
|
|
3759
2503
|
.hsk-action-pills {
|
|
3760
2504
|
display: flex;
|
|
3761
2505
|
flex-wrap: wrap;
|
|
@@ -3924,9 +2668,6 @@
|
|
|
3924
2668
|
.hsk-cb-sidebar {
|
|
3925
2669
|
--hsk-sidebar-bg: #18181a;
|
|
3926
2670
|
}
|
|
3927
|
-
.hsk-cart-card {
|
|
3928
|
-
--hsk-cart-card-bg: rgba(30,30,32,0.9);
|
|
3929
|
-
}
|
|
3930
2671
|
.hsk-action-pill {
|
|
3931
2672
|
--hsk-pill-bg: rgba(40,40,42,0.85);
|
|
3932
2673
|
border-color: rgba(255, 255, 255, .1);
|
|
@@ -3936,9 +2677,6 @@
|
|
|
3936
2677
|
[data-hsk-theme=dark] .hsk-cb-sidebar {
|
|
3937
2678
|
--hsk-sidebar-bg: #18181a;
|
|
3938
2679
|
}
|
|
3939
|
-
[data-hsk-theme=dark] .hsk-cart-card {
|
|
3940
|
-
--hsk-cart-card-bg: rgba(30,30,32,0.9);
|
|
3941
|
-
}
|
|
3942
2680
|
[data-hsk-theme=dark] .hsk-action-pill {
|
|
3943
2681
|
--hsk-pill-bg: rgba(40,40,42,0.85);
|
|
3944
2682
|
border-color: rgba(255, 255, 255, .1);
|
|
@@ -3947,12 +2685,6 @@
|
|
|
3947
2685
|
[data-hsk-theme=dark] .hsk-cb-sidebar-session-title {
|
|
3948
2686
|
color: #e8eaed;
|
|
3949
2687
|
}
|
|
3950
|
-
[data-hsk-theme=dark] .hsk-cart-item-name {
|
|
3951
|
-
color: #e8eaed;
|
|
3952
|
-
}
|
|
3953
|
-
[data-hsk-theme=dark] .hsk-cart-total {
|
|
3954
|
-
color: #9aa0a6;
|
|
3955
|
-
}
|
|
3956
2688
|
@media (max-width: 600px) {
|
|
3957
2689
|
.hsk-cb-panel--with-sidebar {
|
|
3958
2690
|
position: relative;
|
|
@@ -4638,12 +3370,14 @@
|
|
|
4638
3370
|
position: absolute;
|
|
4639
3371
|
bottom: calc(100% + 8px);
|
|
4640
3372
|
left: 0;
|
|
4641
|
-
|
|
4642
|
-
|
|
4643
|
-
|
|
4644
|
-
border
|
|
4645
|
-
|
|
3373
|
+
min-width: 260px;
|
|
3374
|
+
max-width: 340px;
|
|
3375
|
+
background: var(--hsk-surface, #232427);
|
|
3376
|
+
border: 1px solid var(--hsk-border, rgba(255,255,255,0.08));
|
|
3377
|
+
border-radius: 16px;
|
|
3378
|
+
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.14);
|
|
4646
3379
|
overflow: hidden;
|
|
3380
|
+
padding: 6px;
|
|
4647
3381
|
z-index: 120;
|
|
4648
3382
|
animation: hsk-picker-in 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
|
|
4649
3383
|
}
|
|
@@ -4657,58 +3391,6 @@
|
|
|
4657
3391
|
transform: translateY(0) scale(1);
|
|
4658
3392
|
}
|
|
4659
3393
|
}
|
|
4660
|
-
.hsk-kiku-picker-header {
|
|
4661
|
-
display: flex;
|
|
4662
|
-
align-items: center;
|
|
4663
|
-
gap: 8px;
|
|
4664
|
-
padding: 10px 14px 8px;
|
|
4665
|
-
border-bottom: 1px solid var(--hsk-border, rgba(255,255,255,0.08));
|
|
4666
|
-
}
|
|
4667
|
-
.hsk-kiku-picker-at {
|
|
4668
|
-
font-size: 12px;
|
|
4669
|
-
font-weight: 700;
|
|
4670
|
-
letter-spacing: 0.02em;
|
|
4671
|
-
color: var(--hsk-primary, #7c5cfc);
|
|
4672
|
-
background: color-mix(in srgb, var(--hsk-primary, #7c5cfc) 14%, transparent);
|
|
4673
|
-
padding: 2px 7px;
|
|
4674
|
-
border-radius: 20px;
|
|
4675
|
-
flex-shrink: 0;
|
|
4676
|
-
}
|
|
4677
|
-
.hsk-kiku-picker-hint {
|
|
4678
|
-
font-size: 12px;
|
|
4679
|
-
color: var(--hsk-text-muted, #888);
|
|
4680
|
-
flex: 1;
|
|
4681
|
-
}
|
|
4682
|
-
.hsk-kiku-picker-close {
|
|
4683
|
-
background: none;
|
|
4684
|
-
border: none;
|
|
4685
|
-
cursor: pointer;
|
|
4686
|
-
color: var(--hsk-text-muted, #888);
|
|
4687
|
-
display: flex;
|
|
4688
|
-
align-items: center;
|
|
4689
|
-
justify-content: center;
|
|
4690
|
-
width: 22px;
|
|
4691
|
-
height: 22px;
|
|
4692
|
-
border-radius: 50%;
|
|
4693
|
-
transition: background 0.15s;
|
|
4694
|
-
padding: 0;
|
|
4695
|
-
}
|
|
4696
|
-
.hsk-kiku-picker-close:hover {
|
|
4697
|
-
background: rgba(255, 255, 255, 0.08);
|
|
4698
|
-
}
|
|
4699
|
-
.hsk-kiku-picker-section {
|
|
4700
|
-
font-size: 10px;
|
|
4701
|
-
font-weight: 600;
|
|
4702
|
-
letter-spacing: 0.06em;
|
|
4703
|
-
text-transform: uppercase;
|
|
4704
|
-
color: var(--hsk-text-muted, #666);
|
|
4705
|
-
padding: 8px 14px 4px;
|
|
4706
|
-
}
|
|
4707
|
-
.hsk-kiku-picker-divider {
|
|
4708
|
-
height: 1px;
|
|
4709
|
-
background: var(--hsk-border, rgba(255,255,255,0.07));
|
|
4710
|
-
margin: 4px 0;
|
|
4711
|
-
}
|
|
4712
3394
|
.hsk-kiku-picker-item {
|
|
4713
3395
|
display: flex;
|
|
4714
3396
|
align-items: center;
|
|
@@ -4717,57 +3399,53 @@
|
|
|
4717
3399
|
text-align: left;
|
|
4718
3400
|
background: none;
|
|
4719
3401
|
border: none;
|
|
3402
|
+
border-radius: 10px;
|
|
4720
3403
|
cursor: pointer;
|
|
4721
|
-
padding: 9px
|
|
3404
|
+
padding: 9px 10px;
|
|
4722
3405
|
transition: background 0.12s;
|
|
4723
|
-
color: var(--hsk-text, #
|
|
3406
|
+
color: var(--hsk-text, #e8e8ea);
|
|
3407
|
+
font-family: inherit;
|
|
4724
3408
|
}
|
|
4725
3409
|
.hsk-kiku-picker-item:hover {
|
|
4726
|
-
background: rgba(255, 255, 255, 0.
|
|
3410
|
+
background: rgba(255, 255, 255, 0.07);
|
|
4727
3411
|
}
|
|
4728
3412
|
.hsk-kiku-picker-item:active {
|
|
4729
|
-
background: rgba(255, 255, 255, 0.
|
|
4730
|
-
}
|
|
4731
|
-
.hsk-kiku-picker-item--all {
|
|
4732
|
-
border-top: 1px solid var(--hsk-border, rgba(255,255,255,0.07));
|
|
4733
|
-
margin-top: 2px;
|
|
4734
|
-
}
|
|
4735
|
-
.hsk-kiku-picker-img {
|
|
4736
|
-
width: 36px;
|
|
4737
|
-
height: 36px;
|
|
4738
|
-
border-radius: 8px;
|
|
4739
|
-
object-fit: cover;
|
|
4740
|
-
flex-shrink: 0;
|
|
4741
|
-
background: rgba(255, 255, 255, 0.05);
|
|
3413
|
+
background: rgba(255, 255, 255, 0.11);
|
|
4742
3414
|
}
|
|
4743
|
-
.hsk-kiku-picker-
|
|
4744
|
-
width:
|
|
4745
|
-
height:
|
|
4746
|
-
border-radius:
|
|
4747
|
-
background: rgba(255, 255, 255, 0.
|
|
3415
|
+
.hsk-kiku-picker-icon {
|
|
3416
|
+
width: 22px;
|
|
3417
|
+
height: 22px;
|
|
3418
|
+
border-radius: 50%;
|
|
3419
|
+
background: rgba(255, 255, 255, 0.06);
|
|
4748
3420
|
display: flex;
|
|
4749
3421
|
align-items: center;
|
|
4750
3422
|
justify-content: center;
|
|
4751
3423
|
flex-shrink: 0;
|
|
4752
|
-
color: var(--hsk-text-muted, #
|
|
3424
|
+
color: var(--hsk-text-muted, #9a9a9e);
|
|
3425
|
+
overflow: hidden;
|
|
4753
3426
|
}
|
|
4754
|
-
.hsk-kiku-picker-
|
|
4755
|
-
|
|
4756
|
-
|
|
4757
|
-
|
|
4758
|
-
|
|
3427
|
+
.hsk-kiku-picker-icon img {
|
|
3428
|
+
width: 100%;
|
|
3429
|
+
height: 100%;
|
|
3430
|
+
object-fit: cover;
|
|
3431
|
+
}
|
|
3432
|
+
.hsk-kiku-picker-icon--accent {
|
|
3433
|
+
color: var(--hsk-primary, #7c5cfc);
|
|
4759
3434
|
}
|
|
4760
3435
|
.hsk-kiku-picker-item-name {
|
|
4761
|
-
font-size:
|
|
4762
|
-
font-weight:
|
|
3436
|
+
font-size: 13.5px;
|
|
3437
|
+
font-weight: 400;
|
|
4763
3438
|
white-space: nowrap;
|
|
4764
3439
|
overflow: hidden;
|
|
4765
3440
|
text-overflow: ellipsis;
|
|
4766
|
-
color: var(--hsk-text, #
|
|
3441
|
+
color: var(--hsk-text, #e8e8ea);
|
|
3442
|
+
flex: 1;
|
|
3443
|
+
min-width: 0;
|
|
4767
3444
|
}
|
|
4768
3445
|
.hsk-kiku-picker-item-price {
|
|
4769
|
-
font-size:
|
|
4770
|
-
color: var(--hsk-text-muted, #
|
|
3446
|
+
font-size: 12px;
|
|
3447
|
+
color: var(--hsk-text-muted, #9a9a9e);
|
|
3448
|
+
flex-shrink: 0;
|
|
4771
3449
|
}
|
|
4772
3450
|
.hsk-kiku-badge {
|
|
4773
3451
|
display: inline-flex;
|
|
@@ -4787,14 +3465,14 @@
|
|
|
4787
3465
|
}
|
|
4788
3466
|
.hsk-light .hsk-kiku-picker {
|
|
4789
3467
|
background: #ffffff;
|
|
4790
|
-
border-color: rgba(0, 0, 0, 0.
|
|
4791
|
-
box-shadow: 0 8px
|
|
3468
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
3469
|
+
box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
|
|
4792
3470
|
}
|
|
4793
3471
|
.hsk-light .hsk-kiku-picker-item {
|
|
4794
3472
|
color: #1a1a1a;
|
|
4795
3473
|
}
|
|
4796
3474
|
.hsk-light .hsk-kiku-picker-item:hover {
|
|
4797
|
-
background: rgba(0, 0, 0, 0.
|
|
3475
|
+
background: rgba(0, 0, 0, 0.045);
|
|
4798
3476
|
}
|
|
4799
3477
|
.hsk-light .hsk-kiku-picker-item:active {
|
|
4800
3478
|
background: rgba(0, 0, 0, 0.08);
|
|
@@ -4802,10 +3480,12 @@
|
|
|
4802
3480
|
.hsk-light .hsk-kiku-picker-item-name {
|
|
4803
3481
|
color: #1a1a1a;
|
|
4804
3482
|
}
|
|
4805
|
-
.hsk-light .hsk-kiku-picker-
|
|
4806
|
-
background: rgba(0, 0, 0, 0.
|
|
3483
|
+
.hsk-light .hsk-kiku-picker-icon {
|
|
3484
|
+
background: rgba(0, 0, 0, 0.045);
|
|
3485
|
+
color: #6b6b70;
|
|
4807
3486
|
}
|
|
4808
|
-
.hsk-light .hsk-kiku-picker-
|
|
4809
|
-
background:
|
|
3487
|
+
.hsk-light .hsk-kiku-picker-icon--accent {
|
|
3488
|
+
background: color-mix(in srgb, var(--hsk-primary, #7c5cfc) 12%, transparent);
|
|
3489
|
+
color: var(--hsk-primary, #7c5cfc);
|
|
4810
3490
|
}
|
|
4811
3491
|
/*# sourceMappingURL=styles.css.map */
|