#jwCart { width:min(1280px, calc(100% - 40px)); margin:70px auto 80px; padding:20px 0 80px; }
#jwCart .cart-title { text-align:center; margin-bottom:48px; }
#jwCart .cart-title h2 { font-size:34px; font-weight:600; }
#jwCart .cart-tabs { display:flex; gap:8px; margin-bottom:48px; }
#jwCart .cart-tabs button { min-width:200px; height:50px; border:1px solid #e5e5e5; background:#fafafa; font-size:16px; color:#888; }
#jwCart .cart-tabs button.on { position:relative; background:#fff; color:#222; font-weight:700; }
#jwCart .cart-tabs button.on::before { content:""; position:absolute; top:8px; left:50%; width:4px; height:4px; margin-left:-2px; border-radius:50%; background:#ff3b30; }
#jwCart .cart-empty { min-height:180px; display:flex; justify-content:center; align-items:center; font-size:22px; color:#444; }
#jwCart .cart-actions { display:flex; justify-content:space-between; align-items:center; margin-bottom:60px; }
#jwCart .cart-actions .left { display:flex; gap:2px; }
#jwCart .cart-actions button { min-width:120px; height:42px; padding:0 18px; border:1px solid #ddd; background:#fff; font-size:14px; }
#jwCart .cart-actions button.primary { background:#222; border-color:#222; color:#fff; }
#jwCart .cart-guide { border:1px solid #ddd; }
#jwCart .cart-guide .guide-head { padding:14px 18px; border-bottom:1px solid #eee; font-size:16px; }
#jwCart .cart-guide .guide-body { padding:18px; }
#jwCart .cart-guide h2 { margin:12px 0 14px; font-size:24px; font-weight:700; }
#jwCart .cart-guide ol { display:grid; gap:10px; margin-bottom:28px; }
#jwCart .cart-guide li { position:relative; padding-left:34px; line-height:1.7; font-size:15px; color:#444; }
#jwCart .cart-guide li::before { content:counter(list-item); position:absolute; left:0; top:2px; width:20px; height:20px; display:flex; justify-content:center; align-items:center; background:#bfbfbf; color:#fff; font-size:12px; }
#jwCart .cart-guide p { line-height:1.7; font-size:15px; color:#444; }
@media (max-width: 1024px) {
	#jwCart .cart-actions {
		flex-direction:column;
		align-items:flex-start;
		gap:14px;
	}
}
@media (max-width: 640px) {
	#jwCart .cart-title h2 {
		font-size:34px;
	}
	#jwCart .cart-tabs {
		flex-direction:column;
	}
	#jwCart .cart-tabs button {
		width:100%;
		min-width:0;
	}
	#jwCart .cart-actions .left {
		width:100%;
		flex-direction:column;
	}
	#jwCart .cart-actions .right {
		width:100%;
	}
	#jwCart .cart-actions button {
		width:100%;
	}
	#jwCart .cart-guide h2 {
		font-size:20px;
	}
}
