.mini-checkout-wrapper {
	background: #f4f6f8;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	max-width: 500px;
	margin: 0 auto;
	font-family: inherit;
}

.mc-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 25px;
}

.mc-icon {
	background: #000;
	color: #fff;
	border-radius: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mc-header-text h2 {
	margin: 0 0 5px;
	font-size: 20px;
	font-weight: 700;
	color: #111;
}

.mc-header-text p {
	margin: 0;
	font-size: 14px;
	color: #666;
}

.mc-product-selection {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 25px;
}

.mc-product-option {
	display: block;
	cursor: pointer;
	position: relative;
}

.mc-product-option input[type="radio"] {
	position: absolute;
	opacity: 0;
}

.mc-option-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
	background: #fff;
	border: 2px solid #eaeaea;
	border-radius: 10px;
	transition: all 0.3s;
	position: relative;
}

.mc-product-option.selected .mc-option-content {
	border-color: #000;
}

.mc-badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: #000;
	color: #fff;
	font-size: 12px;
	padding: 4px 12px;
	border-radius: 4px;
	font-weight: 600;
}

.mc-badge::after {
	content: '';
	position: absolute;
	bottom: -4px;
	right: 5px;
	border-width: 4px 4px 0;
	border-style: solid;
	border-color: #000 transparent transparent transparent;
}

.mc-title {
	font-size: 18px;
	font-weight: 700;
	color: #000;
}

.mc-radio-circle {
	width: 20px;
	height: 20px;
	border: 2px solid #ccc;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.mc-product-option.selected .mc-radio-circle {
	border-color: #000;
}

.mc-product-option.selected .mc-radio-circle::after {
	content: '';
	width: 10px;
	height: 10px;
	background: #000;
	border-radius: 50%;
}

.mini-checkout-form .form-group {
	margin-bottom: 15px;
}

.mini-checkout-form label {
	display: block;
	margin-bottom: 6px;
	font-weight: 500;
	color: #555;
}

.mini-checkout-form input:not([type="radio"]),
.mini-checkout-form select,
.mini-checkout-form textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fdfdfd;
	transition: all 0.3s ease;
}

.mini-checkout-form input:focus,
.mini-checkout-form select:focus,
.mini-checkout-form textarea:focus {
	border-color: #007cba;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0,124,186,0.1);
}

.mini-checkout-order-summary {
	background: #fff;
	border: 1px solid #eaeaea;
	border-radius: 8px;
	padding: 15px;
	margin: 20px 0;
}

.mini-checkout-order-summary .summary-title {
	font-size: 16px;
	font-weight: 600;
	margin-top: 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #eee;
	padding-bottom: 5px;
}

.mini-checkout-order-summary .summary-row {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	font-size: 14px;
	color: #555;
}

.mini-checkout-order-summary .total-row {
	font-weight: 700;
	font-size: 16px;
	color: #000;
	border-top: 1px solid #eee;
	padding-top: 8px;
	margin-top: 8px;
}

.mc-shipping-cost, .mc-total-cost {
	transition: opacity 0.3s;
}

.mini-checkout-submit {
	width: 100%;
	padding: 15px;
	background: #000;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
	cursor: pointer;
	margin-top: 10px;
	transition: background 0.3s;
}

.mini-checkout-submit:hover {
	background: #333;
}

.mini-checkout-messages {
	margin: 10px 0;
	padding: 10px;
	border-radius: 4px;
	display: empty;
}

.mini-checkout-messages.error {
	background: #fde8e8;
	color: #c53030;
	border: 1px solid #fbd5d5;
}

.mini-checkout-messages.success {
	background: #def7ec;
	color: #03543f;
	border: 1px solid #bcdec2;
}

@media (max-width: 768px) {
	.mini-checkout-submit {
		position: sticky;
		bottom: 10px;
		z-index: 99;
		box-shadow: 0 4px 10px rgba(0,0,0,0.2);
	}
}