
:root {
	--cmz-me-primary: #f5006a;
	--cmz-me-text: #1f1f1f;
	--cmz-me-bg: #fff5f9;
	--cmz-me-border: #f7a8c8;
	--cmz-me-button-bg: #f5006a;
	--cmz-me-button-hover: #d8005e;
	--cmz-me-button-text: #ffffff;
	--cmz-me-font: "Reddit Sans", sans-serif;
}

.cmz-me-slot,
.cmz-me-slot * {
	box-sizing: border-box;
}

.cmz-me-slot {
	width: 100%;
	margin: 20px 0 24px;
	clear: both;
}

.cmz-me-slot:empty {
	display: none;
}

.single-product .cmz-me-slot--single {
	margin: 20px 0 28px;
}

.cmz-me-notice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	padding: 22px 20px;
	margin: 0;
	border: 1px solid var(--cmz-me-border) !important;
	border-radius: 16px;
	background: var(--cmz-me-bg) !important;
	color: var(--cmz-me-text) !important;
	font-family: var(--cmz-me-font);
	box-shadow: none;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.cmz-me-notice::before,
.cmz-me-notice::after {
	content: none !important;
	display: none !important;
}

.cmz-me-left {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	flex: 1 1 auto;
}

.cmz-me-icon {
	width: 26px;
	height: 26px;
	flex: 0 0 26px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--cmz-me-primary) !important;
}

.cmz-me-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.cmz-me-copy {
	flex: 1 1 auto;
	min-width: 0;
	word-break: break-word;
}

.cmz-me-copy,
.cmz-me-copy p,
.cmz-me-copy span,
.cmz-me-left,
.cmz-me-left span,
.cmz-me-detail {
	font-family: var(--cmz-me-font);
	font-size: 14px;
	line-height: 1.55;
	font-weight: 600;
	color: var(--cmz-me-text) !important;
}

.cmz-me-copy .cmz-me-emphasis,
.cmz-me-copy .cmz-me-amount,
.cmz-me-copy .cmz-me-highlight,
.cmz-me-detail .cmz-me-emphasis,
.cmz-me-detail .cmz-me-amount,
.cmz-me-detail .cmz-me-highlight,
.cmz-me-success {
	color: var(--cmz-me-primary) !important;
	font-weight: 700;
}

a.cmz-me-button,
button.cmz-me-button,
.cmz-me-button {
	flex: 0 0 auto;
	min-width: 170px;
	max-width: 100%;
	text-align: center;
	padding: 14px 22px;
	border-radius: 10px;
	background: var(--cmz-me-button-bg) !important;
	color: var(--cmz-me-button-text) !important;
	font-family: var(--cmz-me-font) !important;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	text-decoration: none !important;
	transition: background-color .2s ease, transform .2s ease;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0 !important;
	box-shadow: none !important;
	align-self: center;
}

.cmz-me-button:hover,
.cmz-me-button:focus {
	background: var(--cmz-me-button-hover) !important;
	color: var(--cmz-me-button-text) !important;
	text-decoration: none !important;
	transform: translateY(-1px);
}

.cmz-me-disabled-checkout,
.cmz-me-disabled-checkout:hover,
.cmz-me-disabled-checkout:focus {
	opacity: .55 !important;
	pointer-events: none !important;
	cursor: not-allowed !important;
}

.woocommerce-notices-wrapper .cmz-me-notice {
	display: none !important;
}

.cmz-me-checkout-warning-slot {
	margin: 14px 0 20px;
}

.cmz-me-checkout-warning {
	padding: 14px 16px;
	border: 1px solid #f4b0c9;
	border-left: 4px solid var(--cmz-me-primary);
	border-radius: 12px;
	background: #fff7fa;
	color: #2a2a2a;
	font-family: var(--cmz-me-font);
	font-size: 14px;
	line-height: 1.55;
	font-weight: 600;
}

.cmz-me-checkout-warning.is-flash {
	animation: cmzMeFlash .35s ease;
}

@keyframes cmzMeFlash {
	0% { transform: scale(1); }
	50% { transform: scale(1.01); }
	100% { transform: scale(1); }
}

@media (max-width: 1024px) {
	.cmz-me-notice {
		gap: 16px;
		padding: 20px 18px;
	}

	a.cmz-me-button,
	button.cmz-me-button,
	.cmz-me-button {
		min-width: 156px;
	}
}

@media (max-width: 767px) {
	.cmz-me-slot {
		margin: 16px 0 20px;
	}

	.single-product .cmz-me-slot--single {
		margin: 16px 0 22px;
	}

	.cmz-me-notice {
		flex-direction: column;
		align-items: stretch;
		gap: 14px;
		padding: 16px 14px;
		border-radius: 14px;
	}

	.cmz-me-left {
		align-items: flex-start;
		width: 100%;
		gap: 12px;
	}

	.cmz-me-icon {
		width: 22px;
		height: 22px;
		flex-basis: 22px;
	}

	.cmz-me-copy,
	.cmz-me-copy p,
	.cmz-me-copy span,
	.cmz-me-left,
	.cmz-me-left span,
	.cmz-me-detail {
		font-size: 13px;
		line-height: 1.5;
	}

	a.cmz-me-button,
	button.cmz-me-button,
	.cmz-me-button {
		width: 100%;
		min-width: 0;
		padding: 13px 18px;
		align-self: stretch;
	}

	.cmz-me-checkout-warning {
		font-size: 13px;
	}
}
