.m2t-cart-widget {
	border: 1px solid #f0d9c8;
	background: #fff8f3;
	border-radius: 12px;
	padding: 16px;
	margin: 16px 0;
	font-family: inherit;
}
.m2t-widget-title {
	font-weight: 700;
	font-size: 1.05em;
	margin-bottom: 12px;
	color: #1a1a2e;
}
.m2t-field {
	display: block;
	font-size: 0.85em;
	font-weight: 600;
	color: #444;
	margin-bottom: 12px;
}
.m2t-field select,
.m2t-field textarea {
	display: block;
	width: 100%;
	margin-top: 6px;
	padding: 8px 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 0.95em;
	box-sizing: border-box;
	font-family: inherit;
}
.m2t-qty-stepper {
	display: inline-flex;
	align-items: center;
	margin-top: 6px;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	width: fit-content;
}
.m2t-qty-stepper button {
	width: 34px;
	height: 34px;
	border: none;
	background: #f3f3f3;
	font-size: 1.1em;
	cursor: pointer;
}
.m2t-qty-stepper button:hover { background: #e8e8e8; }
.m2t-qty-input {
	width: 48px;
	height: 34px;
	border: none;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	text-align: center;
	font-size: 0.95em;
}
.m2t-widget-actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 6px;
}
.m2t-btn {
	display: inline-block;
	padding: 12px 18px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.95em;
	cursor: pointer;
	border: 2px solid #ea580c;
	text-decoration: none;
	text-align: center;
}
.m2t-btn-solid {
	background: #ea580c;
	color: #fff;
}
.m2t-btn-solid:hover { background: #d24f0a; }
.m2t-btn-outline {
	background: #fff;
	color: #ea580c;
}
.m2t-btn-outline:hover { background: #fff1e6; }
.m2t-toast {
	margin-top: 10px;
	padding: 8px 12px;
	background: #16a34a;
	color: #fff;
	border-radius: 6px;
	font-size: 0.9em;
}

/* Floating cart badge */
#m2t-cart-badge {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 9999;
	background: #ea580c;
	color: #fff;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	font-size: 1.1em;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(0,0,0,0.25);
	gap: 4px;
}
#m2t-cart-badge .m2t-badge-count {
	font-weight: 700;
}

/* Checkout page */
#m2t-checkout-root {
	max-width: 640px;
	margin: 0 auto;
}
.m2t-cart-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 12px;
}
.m2t-cart-table th, .m2t-cart-table td {
	text-align: left;
	padding: 10px 8px;
	border-bottom: 1px solid #eee;
	font-size: 0.9em;
	vertical-align: middle;
}
.m2t-item-note { color: #888; }
.m2t-qty-stepper-sm button {
	width: 26px;
	height: 26px;
	font-size: 0.9em;
}
.m2t-qty-stepper-sm span {
	display: inline-block;
	width: 28px;
	text-align: center;
}
.m2t-item-remove {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1em;
}
.m2t-total-row {
	text-align: right;
	font-size: 1.1em;
	margin-bottom: 20px;
}
.m2t-bank-info {
	background: #fff8f3;
	border: 1px solid #f0d9c8;
	border-radius: 10px;
	padding: 14px;
	margin: 16px 0;
}
.m2t-bank-info h4 { margin: 0 0 8px; }
.m2t-bank-note { color: #888; font-size: 0.85em; margin-top: 6px; }
.m2t-error { color: #c0392b; font-weight: 600; }
.m2t-success-box {
	background: #f0fdf4;
	border: 1px solid #bbf7d0;
	border-radius: 12px;
	padding: 20px;
	text-align: center;
}
#m2t-checkout-form input[type=text],
#m2t-checkout-form input[type=tel],
#m2t-checkout-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 8px;
	box-sizing: border-box;
	font-family: inherit;
	margin-top: 4px;
}
#m2t-submit-btn {
	width: 100%;
	background: #ea580c;
	color: #fff;
	border: none;
	padding: 14px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 1em;
	cursor: pointer;
	margin-top: 8px;
}
#m2t-submit-btn:hover { background: #d24f0a; }
#m2t-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
