.cart-btn { background: none; border: none; cursor: pointer; font-size: 1.2rem; position: relative; display: flex; align-items: center; gap: .3rem; color: var(--green); padding: .3rem .6rem; }
.cart-count { background: var(--gold, #C4922A); color: #fff; border-radius: 50%; width: 20px; height: 20px; font-size: .7rem; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: sans-serif; }
.cart-count.hidden { display: none; }

.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .3s; }
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-panel { position: fixed; top: 0; right: -420px; width: 100%; max-width: 420px; height: 100vh; background: #F5EFE6; z-index: 1001; display: flex; flex-direction: column; transition: right .35s cubic-bezier(.2,.8,.3,1); box-shadow: -8px 0 40px rgba(0,0,0,.15); }
.cart-panel.open { right: 0; }

.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 1.75rem; border-bottom: 1px solid rgba(23,44,10,.1); }
.cart-header h3 { font-family: Georgia, serif; font-size: 1.3rem; color: #172C0A; }
.cart-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: #172C0A; line-height: 1; padding: .2rem; }

.cart-items { flex: 1; overflow-y: auto; padding: 1.25rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { text-align: center; color: #6B6560; font-size: .9rem; margin-top: 3rem; }
.cart-empty span { font-size: 2.5rem; display: block; margin-bottom: .75rem; }

.cart-item { display: flex; align-items: center; gap: 1rem; background: #fff; border-radius: 1rem; padding: .9rem 1rem; }
.cart-item-img { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: .88rem; color: #172C0A; }
.cart-item-size { font-size: .75rem; color: #6B6560; }
.cart-item-price { font-family: Georgia, serif; font-weight: 700; font-size: 1rem; color: #172C0A; margin-top: .15rem; }
.cart-item-qty { display: flex; align-items: center; gap: .4rem; margin-top: .4rem; }
.qty-btn { background: rgba(23,44,10,.08); border: none; width: 24px; height: 24px; border-radius: 50%; cursor: pointer; font-size: .9rem; font-weight: 700; color: #172C0A; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.qty-btn:hover { background: rgba(23,44,10,.18); }
.qty-num { font-size: .85rem; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: #bbb; font-size: 1rem; padding: .2rem; transition: color .2s; flex-shrink: 0; }
.cart-item-remove:hover { color: #e53; }

.cart-footer { padding: 1.25rem 1.75rem; border-top: 1px solid rgba(23,44,10,.1); background: #F5EFE6; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1.25rem; }
.cart-total-label { font-size: .9rem; color: #6B6560; }
.cart-total-price { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 700; color: #172C0A; }
.cart-checkout-wa { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; background: #25D366; color: #fff; border: none; padding: .9rem 1.5rem; border-radius: 3rem; font-size: .95rem; font-weight: 700; cursor: pointer; text-decoration: none; margin-bottom: .6rem; transition: background .2s; font-family: sans-serif; }
.cart-checkout-wa:hover { background: #1da851; }
.cart-checkout-pp { display: flex; align-items: center; justify-content: center; gap: .5rem; width: 100%; background: #FFC439; color: #003087; border: none; padding: .9rem 1.5rem; border-radius: 3rem; font-size: .95rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: background .2s; font-family: sans-serif; }
.cart-checkout-pp:hover { background: #f0b429; }
.cart-checkout-pp img { height: 18px; }
