        * {
        	margin: 0;
        	padding: 0;
        	box-sizing: border-box;
        }

        html,
        body {
        	height: 100%;
        	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        	background: #f5f5f5;
        }

        .container {
        	height: 100%;
        	display: flex;
        	flex-direction: column;
        }

        .header {
        	height: 44px;
        	background: #ff6b6b;
        	color: #fff;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	font-size: 18px;
        	font-weight: bold;
        }

        .content {
        	flex: 1;
        	overflow: hidden;
        	position: relative;
        }

        .footer {
        	height: 50px;
        	background: #fff;
        	border-top: 1px solid #eee;
        	display: flex;
        	align-items: center;
        	justify-content: space-around;
        	padding-bottom: env(safe-area-inset-bottom);
        }

        .footer-btn {
        	display: flex;
        	flex-direction: column;
        	align-items: center;
        	justify-content: center;
        	width: 33.33%;
        	height: 100%;
        	color: #999;
        	font-size: 12px;
        	cursor: pointer;
        }

        .footer-btn.active {
        	color: #ff6b6b;
        }

        .footer-btn img {
        	width: 24px;
        	height: 24px;
        	margin-bottom: 4px;
        	opacity: 0.6;
        	transition: all 0.2s;
        }

        .footer-btn.active img {
        	opacity: 1;
        }

        .home-layout {
        	display: flex;
        	height: 100%;
        }

        .category-sidebar {
        	width: 80px;
        	background: #f8f8f8;
        	overflow-y: auto;
        }

        .category-item {
        	height: 50px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	font-size: 14px;
        	color: #333;
        	cursor: pointer;
        	border-left: 3px solid transparent;
        }

        .category-item.active {
        	background: #fff;
        	border-left-color: #ff6b6b;
        	color: #ff6b6b;
        	font-weight: bold;
        }

        .product-list {
        	flex: 1;
        	overflow-y: auto;
        	padding: 10px;
        }

        .product-item {
        	background: #fff;
        	border-radius: 8px;
        	padding: 10px;
        	margin-bottom: 10px;
        	display: flex;
        	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .product-img {
        	width: 80px;
        	height: 80px;
        	border-radius: 4px;
        	margin-right: 10px;
        	object-fit: cover;
        }

        .product-info {
        	flex: 1;
        	display: flex;
        	flex-direction: column;
        	justify-content: space-between;
        }

        .product-name {
        	font-size: 14px;
        	font-weight: bold;
        	color: #333;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        }

        .product-remark {
        	font-size: 12px;
        	color: #999;
        	overflow: hidden;
        	text-overflow: ellipsis;
        	white-space: nowrap;
        }

        .product-price {
        	font-size: 16px;
        	color: #ff6b6b;
        	font-weight: bold;
        }

        .product-inventory {
        	font-size: 12px;
        	color: #999;
        }

        .product-actions {
        	display: flex;
        	gap: 8px;
			margin-top: 5px;
        }

        .btn {
        	padding: 4px 12px;
        	border-radius: 4px;
        	font-size: 12px;
        	cursor: pointer;
        	border: none;
        }

        .btn-primary {
        	background: #ff6b6b;
        	color: #fff;
        }

        .btn-secondary {
        	background: #f0f0f0;
        	color: #333;
        }

        .modal-overlay {
        	position: fixed;
        	top: 0;
        	left: 0;
        	right: 0;
        	bottom: 0;
        	background: rgba(0, 0, 0, 0.5);
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	z-index: 1000;
        }

        .modal {
        	background: #fff;
        	border-radius: 8px;
        	padding: 20px;
        	width: 80%;
        	max-width: 300px;
        }

        .modal-title {
        	font-size: 16px;
        	font-weight: bold;
        	margin-bottom: 15px;
        	text-align: center;
        }

        .modal-input {
        	width: 100%;
        	padding: 10px;
        	border: 1px solid #ddd;
        	border-radius: 4px;
        	margin-bottom: 15px;
        	font-size: 14px;
        }

        .modal-actions {
        	display: flex;
        	gap: 10px;
        }

        .modal-btn {
        	flex: 1;
        	padding: 10px;
        	border-radius: 4px;
        	font-size: 14px;
        	cursor: pointer;
        	border: none;
        }

        .modal-btn.cancel {
        	background: #f0f0f0;
        	color: #333;
        }

        .modal-btn.confirm {
        	background: #ff6b6b;
        	color: #fff;
        }

        .toast {
        	position: fixed;
        	top: 50%;
        	left: 50%;
        	transform: translate(-50%, -50%);
        	background: rgba(0, 0, 0, 0.7);
        	color: #fff;
        	padding: 10px 20px;
        	border-radius: 4px;
        	font-size: 14px;
        	z-index: 2000;
        	display: none;
        }

        /* car */
        .container {
        	height: 100%;
        	display: flex;
        	flex-direction: column;
        }

        .header {
        	height: 44px;
        	background: #ff6b6b;
        	color: #fff;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	font-size: 18px;
        	font-weight: bold;
        }

        .content {
        	flex: 1;
        	overflow: hidden;
        	position: relative;
        }

        .footer {
        	height: 50px;
        	background: #fff;
        	border-top: 1px solid #eee;
        	display: flex;
        	align-items: center;
        	justify-content: space-around;
        	padding-bottom: env(safe-area-inset-bottom);
        }

        .footer-btn {
        	display: flex;
        	flex-direction: column;
        	align-items: center;
        	justify-content: center;
        	width: 33.33%;
        	height: 100%;
        	color: #999;
        	font-size: 12px;
        	cursor: pointer;
        }

        .footer-btn.active {
        	color: #ff6b6b;
        }

        .footer-btn i {
        	font-size: 20px;
        	margin-bottom: 4px;
        }

        .cart-list {
        	padding: 10px;
        	padding-bottom: 120px;
        	overflow-y: auto;
        	height: 100%;
        }

        .cart-item {
        	background: #fff;
        	border-radius: 12px;
        	padding: 14px;
        	margin-bottom: 10px;
        	display: flex;
        	align-items: center;
        	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.04);
        	transition: box-shadow 0.2s;
        }

        .cart-item:active {
        	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        }

        .cart-img {
        	width: 85px;
        	height: 85px;
        	border-radius: 8px;
        	margin-right: 14px;
        	object-fit: cover;
        	flex-shrink: 0;
        	background: #f8f8f8;
        }

        .cart-info {
        	flex: 1;
        	display: flex;
        	flex-direction: column;
        	justify-content: space-between;
        	min-width: 0;
        }

        .cart-name {
        	font-size: 15px;
        	font-weight: 600;
        	color: #333;
        	line-height: 1.4;
        	display: -webkit-box;
        	-webkit-line-clamp: 2;
        	-webkit-box-orient: vertical;
        	overflow: hidden;
        }

        .cart-price-row {
        	display: flex;
        	align-items: center;
        	gap: 10px;
        	margin-top: 6px;
        }

        .cart-price {
        	font-size: 13px;
        	color: #999;
        }

        .cart-num {
        	font-size: 13px;
        	color: #999;
        	background: #f5f5f5;
        	padding: 2px 8px;
        	border-radius: 6px;
        }

        .cart-time {
        	font-size: 12px;
        	color: #ccc;
        	margin-top: 4px;
        }

        .cart-total {
        	font-size: 18px;
        	color: #ff6b6b;
        	font-weight: 700;
        	margin-top: 8px;
        }

        .cart-action {
        	display: flex;
        	flex-direction: column;
        	align-items: flex-end;
        	gap: 8px;
        	margin-left: 12px;
        }

        .btn {
        	padding: 4px 12px;
        	border-radius: 4px;
        	font-size: 12px;
        	cursor: pointer;
        	border: none;
        }

        .btn-secondary {
        	background: #e30000;
        	color: #fff;
        }

        .empty-cart {
        	display: flex;
        	flex-direction: column;
        	align-items: center;
        	justify-content: center;
        	height: 60%;
        	color: #999;
        }

        .empty-cart i {
        	font-size: 60px;
        	margin-bottom: 10px;
        	opacity: 0.5;
        }

        .toast {
        	position: fixed;
        	top: 50%;
        	left: 50%;
        	transform: translate(-50%, -50%);
        	background: rgba(0, 0, 0, 0.7);
        	color: #fff;
        	padding: 10px 20px;
        	border-radius: 4px;
        	font-size: 14px;
        	z-index: 2000;
        	display: none;
        }

        /* order */
        .header {
        	height: 44px;
        	background: #ff6b6b;
        	color: #fff;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	font-size: 18px;
        	font-weight: bold;
        }

        .content {
        	flex: 1;
        	overflow: hidden;
        	position: relative;
        }

        .footer {
        	height: 50px;
        	background: #fff;
        	border-top: 1px solid #eee;
        	display: flex;
        	align-items: center;
        	justify-content: space-around;
        	padding-bottom: env(safe-area-inset-bottom);
        }

        .footer-btn {
        	display: flex;
        	flex-direction: column;
        	align-items: center;
        	justify-content: center;
        	width: 33.33%;
        	height: 100%;
        	color: #999;
        	font-size: 12px;
        	cursor: pointer;
        }

        .footer-btn.active {
        	color: #ff6b6b;
        }

        .footer-btn i {
        	font-size: 20px;
        	margin-bottom: 4px;
        }

        .order-tabs {
        	display: flex;
        	background: #fff;
        	border-bottom: 1px solid #eee;
        }

        .tab-item {
        	flex: 1;
        	height: 44px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	font-size: 14px;
        	color: #666;
        	cursor: pointer;
        	position: relative;
        }

        .tab-item.active {
        	color: #ff6b6b;
        	font-weight: bold;
        }

        .tab-item.active::after {
        	content: '';
        	position: absolute;
        	bottom: 0;
        	left: 50%;
        	transform: translateX(-50%);
        	width: 20px;
        	height: 2px;
        	background: #ff6b6b;
        }

        .order-list {
        	padding: 10px;
        	padding-bottom: 60px;
        	overflow-y: auto;
        	height: calc(100% - 44px);
        }

        .order-item {
        	background: #fff;
        	border-radius: 8px;
        	padding: 10px;
        	margin-bottom: 10px;
        	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        }

        .order-header {
        	display: flex;
        	justify-content: space-between;
        	align-items: center;
        	margin-bottom: 10px;
        	padding-bottom: 10px;
        	border-bottom: 1px solid #f0f0f0;
        }

        .order-num {
        	font-size: 14px;
        	color: #333;
        }

        .order-status {
        	font-size: 14px;
        	font-weight: bold;
        }

        .order-status.pending {
        	color: #ff9500;
        }

        .order-status.completed {
        	color: #07c160;
        }

        .order-status.cancelled {
        	color: #999;
        }

        .status-pending {
        	color: #ff9500;
        }

        .status-failed {
        	color: #ff4d4f;
        }

        .status-cancelled {
        	color: #999;
        }

        .status-paid {
        	color: #1890ff;
        }

        .status-refunded {
        	color: #722ed1;
        }

        .status-delivering {
        	color: #13c2c2;
        }

        .status-delivered {
        	color: #faad14;
        }

        .status-completed {
        	color: #52c41a;
        }

        .order-info-row {
        	display: flex;
        	justify-content: space-between;
        	align-items: center;
        	padding: 8px 0;
        	border-bottom: 1px solid #f8f8f8;
        }

        .order-info-row:last-of-type {
        	border-bottom: none;
        }

        .order-info-label {
        	font-size: 14px;
        	color: #999;
        	min-width: 80px;
        }

        .order-info-value {
        	font-size: 14px;
        	color: #333;
        	text-align: right;
        	flex: 1;
        	margin-left: 10px;
        }

        .order-info-price {
        	font-size: 16px;
        	font-weight: 600;
        	color: #ff6b6b;
        }

        .order-remark {
        	margin-top: 12px;
        	padding: 12px;
        	background: #fafafa;
        	border-radius: 8px;
        	border-left: 4px solid #ff6b6b;
        }

        .order-remark-label {
        	display: block;
        	font-size: 13px;
        	color: #999;
        	margin-bottom: 4px;
        }

        .order-remark-content {
        	font-size: 14px;
        	color: #666;
        	line-height: 1.5;
        }

        .order-actions {
        	margin-top: 15px;
        	display: flex;
        	justify-content: flex-end;
        	gap: 10px;
        	padding-top: 12px;
        	border-top: 1px solid #f0f0f0;
        }

        .order-actions {
        	display: flex;
        	justify-content: flex-end;
        	gap: 10px;
        	padding: 12px 0;
        	border-top: 1px solid #f0f0f0;
        }

        .order-pay-btn {
        	padding: 6px 16px;
        	font-size: 13px;
        	color: #fff;
			background: #ff9500;
        	border: none;
        	border-radius: 16px;
        	cursor: pointer;
        	transition: all 0.2s;
        }

        .order-pay-btn:active {
        	transform: scale(0.96);
        	opacity: 0.9;
        }

        .order-cancel-btn {
        	padding: 6px 16px;
        	font-size: 13px;
        	color: #fff;
        	background: #b0b0b0;
        	border: none;
        	border-radius: 16px;
        	cursor: pointer;
        	transition: all 0.2s;
        }

        .order-cancel-btn:active {
        	transform: scale(0.96);
        	opacity: 0.9;
        }

        .order-complete-btn {
        	padding: 6px 16px;
        	font-size: 13px;
        	color: #fff;
        	background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
        	border: none;
        	border-radius: 16px;
        	cursor: pointer;
        	transition: all 0.2s;
        }

        .order-complete-btn:active {
        	transform: scale(0.96);
        	opacity: 0.9;
        }

        .order-goods-toggle {
        	display: flex;
        	justify-content: space-between;
        	align-items: center;
        	padding: 10px 0;
        	margin-top: 8px;
        	border-top: 1px dashed #eee;
        	cursor: pointer;
        }

        .order-goods-toggle .toggle-text {
        	font-size: 13px;
        	color: #999;
        }

        .order-goods-toggle .toggle-icon {
        	font-size: 12px;
        	color: #ccc;
        	transition: transform 0.3s;
        }

        .order-goods-list {
        	display: none;
        	padding: 10px 0;
        	background: #fafafa;
        	border-radius: 8px;
        	margin-top: 8px;
        }

        .order-goods-item {
        	display: flex;
        	align-items: center;
        	padding: 10px 12px;
        	border-bottom: 1px solid #f0f0f0;
        }

        .order-goods-item:last-child {
        	border-bottom: none;
        }

        .order-goods-img {
        	width: 50px;
        	height: 50px;
        	flex-shrink: 0;
        	border-radius: 6px;
        	overflow: hidden;
        	background: #fff;
        }

        .order-goods-img img {
        	width: 100%;
        	height: 100%;
        	object-fit: cover;
        }

        .order-goods-img .no-img {
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	width: 100%;
        	height: 100%;
        	font-size: 12px;
        	color: #ccc;
        }

        .order-goods-info {
        	flex: 1;
        	margin-left: 12px;
        	display: flex;
        	flex-direction: column;
        	justify-content: center;
        }

        .order-goods-name {
        	font-size: 14px;
        	color: #333;
        	margin-bottom: 4px;
        }

        .order-goods-price {
        	font-size: 14px;
        	color: #ff6b6b;
        	font-weight: 500;
        }

        .order-goods-num {
        	font-size: 12px;
        	color: #999;
        	margin-top: 2px;
        }

        .login-container {
        	min-height: 100vh;
        	background: linear-gradient(180deg, #fff 0%, #f5f5f5 100%);
        	display: flex;
        	flex-direction: column;
        	align-items: center;
        	padding-top: 80px;
        }

        .login-header {
        	text-align: center;
        	margin-bottom: 50px;
        }

        .login-logo {
        	font-size: 60px;
        	margin-bottom: 16px;
        }

        .login-title {
        	font-size: 26px;
        	font-weight: bold;
        	color: #333;
        	margin-bottom: 8px;
        }

        .login-subtitle {
        	font-size: 14px;
        	color: #999;
        }

        .login-content {
        	width: 100%;
        	padding: 0 40px;
        	display: flex;
        	flex-direction: column;
        	align-items: center;
        }

        .wechat-icon {
        	width: 120px;
        	height: 120px;
        	background: #fff;
        	border-radius: 50%;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        	margin-bottom: 24px;
        }

        .wechat-logo {
        	width: 70px;
        	height: 70px;
        	color: #52c41a;
        }

        .wechat-logo svg {
        	width: 100%;
        	height: 100%;
        }

        .login-desc {
        	font-size: 18px;
        	font-weight: 500;
        	color: #333;
        	margin-bottom: 32px;
        }

        .wechat-login-btn {
        	width: 100%;
        	height: 50px;
        	background: linear-gradient(135deg, #52c41a 0%, #389e0d 100%);
        	color: #fff;
        	font-size: 17px;
        	font-weight: 500;
        	border: none;
        	border-radius: 25px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	gap: 10px;
        	cursor: pointer;
        	transition: all 0.2s;
        	box-shadow: 0 4px 15px rgba(82, 196, 26, 0.3);
        	margin-bottom: 30px;
        }

        .wechat-login-btn:active {
        	transform: scale(0.98);
        	box-shadow: 0 2px 8px rgba(82, 196, 26, 0.2);
        }

        .wechat-login-btn.loading {
        	opacity: 0.7;
        	cursor: not-allowed;
        }

        .wechat-btn-icon {
        	font-size: 20px;
        }

        .login-agree {
        	display: flex;
        	align-items: center;
        	font-size: 12px;
        	color: #999;
        	flex-wrap: wrap;
        	justify-content: center;
        	gap: 4px;
        }

        .login-agree input[type="checkbox"] {
        	margin-right: 4px;
        	transform: scale(0.9);
        }

        .agreement-link {
        	color: #52c41a;
        	text-decoration: none;
        }

        .agreement-link:active {
        	text-decoration: underline;
        }

        .empty-order {
        	display: flex;
        	flex-direction: column;
        	align-items: center;
        	justify-content: center;
        	height: 60%;
        	color: #999;
        }

        .empty-order i {
        	font-size: 60px;
        	margin-bottom: 10px;
        	opacity: 0.5;
        }

        .refresh-tip {
        	position: absolute;
        	top: 44px;
        	left: 0;
        	right: 0;
        	height: 40px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	background: #f0f0f0;
        	color: #666;
        	font-size: 12px;
        	display: none;
        }

        .load-more {
        	text-align: center;
        	padding: 15px;
        	color: #999;
        	font-size: 12px;
        }

        .load-more.loading {
        	color: #ff6b6b;
        }

        .buy-modal-overlay {
        	position: fixed;
        	top: 0;
        	left: 0;
        	right: 0;
        	bottom: 0;
        	background: rgba(0, 0, 0, 0.5);
        	z-index: 1000;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	animation: fadeIn 0.2s ease;
        }

        @keyframes fadeIn {
        	from { opacity: 0; }
        	to { opacity: 1; }
        }

        .buy-modal {
        	width: 90%;
        	max-width: 360px;
        	background: #fff;
        	border-radius: 16px;
        	overflow: hidden;
        	animation: slideUp 0.3s ease;
        	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        @keyframes slideUp {
        	from { transform: translateY(20px); opacity: 0; }
        	to { transform: translateY(0); opacity: 1; }
        }

        .buy-modal-header {
        	padding: 20px 20px 15px;
        	text-align: center;
        	border-bottom: 1px solid #f5f5f5;
        }

        .buy-modal-title {
        	font-size: 18px;
        	font-weight: 600;
        	color: #333;
        }

        .buy-modal-body {
        	padding: 20px;
        }

        .buy-modal-product {
        	display: flex;
        	margin-bottom: 20px;
        	padding-bottom: 20px;
        	border-bottom: 1px solid #f5f5f5;
        }

        .buy-modal-product-img {
        	width: 80px;
        	height: 80px;
        	border-radius: 8px;
        	object-fit: cover;
        	margin-right: 15px;
        }

        .buy-modal-product-info {
        	flex: 1;
        	display: flex;
        	flex-direction: column;
        	justify-content: space-between;
        }

        .buy-modal-product-name {
        	font-size: 15px;
        	font-weight: 500;
        	color: #333;
        	line-height: 1.4;
        	display: -webkit-box;
        	-webkit-line-clamp: 2;
        	-webkit-box-orient: vertical;
        	overflow: hidden;
        }

        .buy-modal-product-price {
        	font-size: 18px;
        	font-weight: 600;
        	color: #ff6b6b;
        }

        .buy-modal-product-stock {
        	font-size: 12px;
        	color: #999;
        }

        .buy-modal-form-group {
        	margin-bottom: 15px;
        }

        .buy-modal-label {
        	display: block;
        	font-size: 14px;
        	color: #333;
        	margin-bottom: 8px;
        	font-weight: 500;
        }

        .buy-modal-input-row {
        	display: flex;
        	align-items: center;
        	background: #f8f8f8;
        	border-radius: 8px;
        	padding: 0 10px;
        }

        .buy-modal-input-btn {
        	width: 36px;
        	height: 36px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	font-size: 20px;
        	color: #666;
        	cursor: pointer;
        	user-select: none;
        	transition: color 0.2s;
        }

        .buy-modal-input-btn:hover {
        	color: #ff6b6b;
        }

        .buy-modal-input-btn:active {
        	opacity: 0.7;
        }

        .buy-modal-input {
        	width: 100%;
        	height: 40px;
        	padding: 0 12px;
        	background: #f8f8f8;
        	border: none;
        	border-radius: 8px;
        	outline: none;
        	font-size: 14px;
        	color: #333;
        }

        .buy-modal-num-input {
        	flex: 1;
        	height: 36px;
        	text-align: center;
        	background: transparent;
        	border: none;
        	outline: none;
        	font-size: 16px;
        	font-weight: 500;
        	color: #333;
        }

        .buy-modal-textarea {
        	width: 100%;
        	height: 80px;
        	padding: 12px;
        	border: 1px solid #e0e0e0;
        	border-radius: 8px;
        	font-size: 14px;
        	color: #333;
        	resize: none;
        	outline: none;
        	transition: border-color 0.2s;
        	background: #fafafa;
        }

        .buy-modal-textarea:focus {
        	border-color: #ff6b6b;
        	background: #fff;
        }

        .buy-modal-textarea::placeholder {
        	color: #ccc;
        }

        .buy-modal-footer {
        	display: flex;
        	border-top: 1px solid #f5f5f5;
        }

        .buy-modal-btn {
        	flex: 1;
        	height: 48px;
        	display: flex;
        	align-items: center;
        	justify-content: center;
        	font-size: 16px;
        	font-weight: 500;
        	cursor: pointer;
        	border: none;
        	outline: none;
        	transition: opacity 0.2s;
        }

        .buy-modal-btn:active {
        	opacity: 0.8;
        }

        .buy-modal-btn.cancel {
        	background: #f5f5f5;
        	color: #666;
        	border-right: 1px solid #e0e0e0;
        }

        .buy-modal-btn.confirm {
        	background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
        	color: #fff;
        }

        .cart-footer {
        	position: fixed;
        	bottom: 50px;
        	left: 0;
        	right: 0;
        	background: #fff;
        	border-top: 1px solid #f0f0f0;
        	padding: 12px 16px;
        	display: flex;
        	align-items: center;
        	justify-content: space-between;
        	z-index: 100;
        	padding-bottom: calc(12px + env(safe-area-inset-bottom));
        	box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.03);
        }

        .cart-footer-left {
        	display: flex;
        	align-items: center;
        	gap: 12px;
        }

        .checkbox-label {
        	display: flex;
        	align-items: center;
        	gap: 6px;
        	cursor: pointer;
        	font-size: 15px;
        	color: #333;
        	font-weight: 500;
        }

        .checkbox-label input[type="checkbox"],
        .cart-item-checkbox {
        	width: 20px;
        	height: 20px;
        	cursor: pointer;
        	accent-color: #ff6b6b;
        	border-radius: 4px;
        }

        .cart-item-checkbox {
        	margin-right: 12px;
        	flex-shrink: 0;
        }

        .cart-selected-count {
        	font-size: 13px;
        	color: #999;
        	background: #f5f5f5;
        	padding: 3px 10px;
        	border-radius: 12px;
        }

        .cart-footer-right {
        	display: flex;
        	align-items: center;
        	gap: 16px;
        }

        .cart-total-wrap {
        	display: flex;
        	flex-direction: column;
        	align-items: flex-end;
        }

        .cart-total-label {
        	font-size: 12px;
        	color: #999;
        	line-height: 1;
        }

        .cart-total-price {
        	font-size: 20px;
        	font-weight: 700;
        	color: #ff6b6b;
        	line-height: 1.2;
        }

        .cart-checkout-btn {
        	padding: 12px 28px;
        	font-size: 16px;
        	font-weight: 600;
        	background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
        	color: #fff;
        	border: none;
        	border-radius: 25px;
        	cursor: pointer;
        	box-shadow: 0 4px 12px rgba(255, 107, 107, 0.35);
        	transition: transform 0.15s, box-shadow 0.15s;
        }

        .cart-checkout-btn:active {
        	transform: scale(0.96);
        	box-shadow: 0 2px 6px rgba(255, 107, 107, 0.25);
        }

        .checkout-selected-list {
        	max-height: 120px;
        	overflow-y: auto;
        	background: #f8f8f8;
        	border-radius: 8px;
        	padding: 10px;
        }

        .checkout-selected-item {
        	display: flex;
        	justify-content: space-between;
        	padding: 5px 0;
        	font-size: 13px;
        	color: #333;
        	border-bottom: 1px solid #eee;
        }

        .checkout-selected-item:last-child {
        	border-bottom: none;
        }
		.text-center {
			text-align: center;
			margin: 10px 0;
		}
