| 1 |
.ka-woo-checkout-summary { |
| 2 |
width: 100%; |
| 3 |
background: #fff; |
| 4 |
border: 1px solid #e5e7eb; |
| 5 |
border-radius: 12px; |
| 6 |
padding: 16px; |
| 7 |
box-shadow: 0 10px 20px rgba(17, 24, 39, 0.08); |
| 8 |
} |
| 9 |
|
| 10 |
.ka-woo-checkout-summary__items { |
| 11 |
display: grid; |
| 12 |
gap: 12px; |
| 13 |
margin-bottom: 14px; |
| 14 |
} |
| 15 |
|
| 16 |
.ka-woo-checkout-summary__item { |
| 17 |
display: grid; |
| 18 |
grid-template-columns: auto 1fr auto; |
| 19 |
gap: 10px; |
| 20 |
align-items: center; |
| 21 |
} |
| 22 |
|
| 23 |
.ka-woo-checkout-summary__thumb img { |
| 24 |
width: 64px; |
| 25 |
height: 64px; |
| 26 |
object-fit: cover; |
| 27 |
border-radius: 8px; |
| 28 |
border: 1px solid #e5e7eb; |
| 29 |
} |
| 30 |
|
| 31 |
.ka-woo-checkout-summary__body { |
| 32 |
display: grid; |
| 33 |
gap: 4px; |
| 34 |
} |
| 35 |
|
| 36 |
.ka-woo-checkout-summary__title { |
| 37 |
font-weight: 700; |
| 38 |
margin: 0; |
| 39 |
} |
| 40 |
|
| 41 |
.ka-woo-checkout-summary__meta { |
| 42 |
font-size: 12px; |
| 43 |
color: #6b7280; |
| 44 |
} |
| 45 |
|
| 46 |
.ka-woo-checkout-summary__qty { |
| 47 |
font-size: 13px; |
| 48 |
color: #374151; |
| 49 |
} |
| 50 |
|
| 51 |
.ka-woo-checkout-summary__price { |
| 52 |
font-weight: 700; |
| 53 |
text-align: right; |
| 54 |
} |
| 55 |
|
| 56 |
.ka-woo-checkout-summary__totals { |
| 57 |
border-top: 1px solid #e5e7eb; |
| 58 |
padding-top: 12px; |
| 59 |
display: grid; |
| 60 |
gap: 8px; |
| 61 |
} |
| 62 |
|
| 63 |
.ka-woo-checkout-summary__totals-row { |
| 64 |
display: flex; |
| 65 |
align-items: center; |
| 66 |
justify-content: space-between; |
| 67 |
font-size: 14px; |
| 68 |
color: #1f2937; |
| 69 |
} |
| 70 |
|
| 71 |
.ka-woo-checkout-summary__totals-row--total { |
| 72 |
font-weight: 700; |
| 73 |
font-size: 16px; |
| 74 |
margin-top: 4px; |
| 75 |
} |
| 76 |
|
| 77 |
@media (max-width: 767px) { |
| 78 |
.ka-woo-checkout-summary__item { |
| 79 |
grid-template-columns: 64px 1fr; |
| 80 |
} |
| 81 |
.ka-woo-checkout-summary__price { |
| 82 |
grid-column: 2 / -1; |
| 83 |
} |
| 84 |
} |
| 85 |
|
| 86 |
|
| 87 |
|
| 88 |
|
| 89 |
|
| 90 |
|