.ndlm-product,
.ndlm-sales-list {
	--ndlm-blue: #1672c4;
	--ndlm-red: #d83b3b;
	--ndlm-text: #272b30;
	--ndlm-muted: #687078;
	box-sizing: border-box;
}

.ndlm-product *,
.ndlm-sales-list * {
	box-sizing: border-box;
}

.ndlm-product {
	position: relative;
	margin: 1.5em 0;
	padding: 22px;
	color: var(--ndlm-text);
	background: #fff;
	border: 1px solid #dfe3e8;
	border-radius: 10px;
	box-shadow: 0 4px 18px rgba(27, 39, 51, .07);
	overflow: hidden;
}

.ndlm-product.is-sale {
	border-color: #efaaaa;
}

.ndlm-sale-badge {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 60%;
	padding: 7px 16px;
	color: #fff;
	background: var(--ndlm-red);
	border-radius: 0 0 0 9px;
	font-size: .82em;
	font-weight: 700;
	line-height: 1.3;
}

.ndlm-product-body.has-image {
	display: grid;
	grid-template-columns: minmax(120px, 28%) 1fr;
	gap: 22px;
	align-items: center;
}

.ndlm-product-image img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	border-radius: 6px;
}

.ndlm-brand {
	margin-bottom: 3px;
	color: var(--ndlm-muted);
	font-size: .78em;
	font-weight: 700;
	letter-spacing: .04em;
}

.ndlm-product-title {
	margin: 0 0 8px;
	padding: 0;
	border: 0;
	font-size: 1.25em;
	line-height: 1.45;
}

.ndlm-product-description p {
	margin: .45em 0;
}

.ndlm-prices {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px 10px;
	margin-top: 10px;
}

.ndlm-normal-price {
	color: var(--ndlm-muted);
	font-size: .92em;
}

.ndlm-sale-price {
	color: var(--ndlm-red);
	font-size: 1.28em;
}

.ndlm-current-price {
	font-size: 1.12em;
}

.ndlm-sale-note {
	margin: 8px 0 0;
	font-size: .92em;
}

.ndlm-sale-period {
	margin: 5px 0 0;
	color: var(--ndlm-muted);
	font-size: .78em;
}

.ndlm-buttons {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
	gap: 10px;
	margin-top: 18px;
}

.ndlm-button {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 10px 14px;
	color: #fff !important;
	border-radius: 6px;
	box-shadow: 0 3px 0 rgba(0, 0, 0, .16);
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
	text-decoration: none !important;
	transition: transform .15s, filter .15s;
}

.ndlm-button:hover {
	color: #fff !important;
	filter: brightness(1.08);
	transform: translateY(1px);
}

.ndlm-button-blue { background: #1672c4; }
.ndlm-button-green { background: #238b57; }
.ndlm-button-orange { background: #d76b15; }
.ndlm-button-red { background: #c93d3d; }
.ndlm-button-black { background: #25292e; }
.ndlm-button-gray { background: #687078; }

.ndlm-notice {
	padding: 10px;
	background: #fff8e5;
	border-left: 4px solid #dba617;
}

.ndlm-sales-list {
	display: grid;
	gap: 10px;
}

.ndlm-sale-item {
	display: flex;
	gap: 10px;
	padding: 10px;
	color: var(--ndlm-text);
	background: #fff;
	border: 1px solid #e1e4e8;
	border-left: 4px solid var(--ndlm-red);
	border-radius: 6px;
}

.ndlm-sale-thumb {
	flex: 0 0 68px;
}

.ndlm-sale-thumb img {
	display: block;
	width: 68px;
	height: 68px;
	margin: 0;
	object-fit: cover;
	border-radius: 4px;
}

.ndlm-sale-item-main {
	min-width: 0;
}

.ndlm-sale-brand {
	color: var(--ndlm-muted);
	font-size: 10px;
	font-weight: 700;
}

.ndlm-sale-title {
	display: block;
	color: inherit;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.45;
	text-decoration: none;
}

.ndlm-sale-mini-badge {
	display: inline-block;
	margin-top: 4px;
	padding: 2px 6px;
	color: #fff;
	background: var(--ndlm-red);
	border-radius: 3px;
	font-size: 10px;
	font-weight: 700;
}

.ndlm-prices-compact {
	gap: 3px 5px;
	margin-top: 4px;
	font-size: 11px;
}

.ndlm-prices-compact .ndlm-sale-price {
	font-size: 13px;
}

.ndlm-sale-end {
	margin-top: 3px;
	color: var(--ndlm-muted);
	font-size: 10px;
}

@media (max-width: 600px) {
	.ndlm-product {
		padding: 18px 15px;
	}
	.ndlm-product-body.has-image {
		grid-template-columns: 90px 1fr;
		gap: 13px;
	}
	.ndlm-buttons {
		grid-template-columns: 1fr;
	}
}

