.mcl-product-card {
	--mcl-border: #e2e5e9;
	--mcl-text: #1f2937;
	display: grid;
	grid-template-columns: 160px minmax(0, 1fr);
	gap: 24px;
	box-sizing: border-box;
	margin: 24px 0;
	padding: 24px;
	border: 1px solid var(--mcl-border);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 5px 18px rgba(18, 24, 33, 0.07);
	color: var(--mcl-text);
	font-family: inherit;
}

.mcl-product-card *,
.mcl-product-card *::before,
.mcl-product-card *::after {
	box-sizing: border-box;
}

.mcl-product-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 160px;
	min-width: 0;
}

.mcl-product-card__body:only-child {
	grid-column: 1 / -1;
}

.mcl-product-card__image {
	display: block;
	width: 160px;
	max-width: 100%;
	height: 160px;
	max-height: 100%;
	object-fit: contain;
}

.mcl-product-card .mcl-product-card__title {
	display: block;
	width: 100%;
	margin: 0 0 14px !important;
	padding: 0 !important;
	border: 0 !important;
	background: none !important;
	color: #c62828 !important;
	font-size: 1.25rem;
	font-weight: 700 !important;
	letter-spacing: 0.01em;
	line-height: 1.45;
	text-align: center !important;
	text-indent: 0 !important;
	text-shadow: 0 1px 1px rgba(198, 40, 40, 0.08);
	white-space: nowrap;
}

.mcl-product-card .mcl-product-card__title::before,
.mcl-product-card .mcl-product-card__title::after {
	display: none !important;
	content: none !important;
}

.mcl-product-card__price {
	margin: 0 0 12px;
	color: #c62828;
	font-size: 1.05rem;
	font-weight: 700;
}

.mcl-product-card__description {
	margin-bottom: 18px;
	color: #4b5563;
	font-size: 0.95rem;
	line-height: 1.75;
}

.mcl-product-card__description > :first-child {
	margin-top: 0;
}

.mcl-product-card__description > :last-child {
	margin-bottom: 0;
}

.mcl-product-card__links {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.mcl-product-card__button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 11px 14px;
	border-radius: 7px;
	background: #374151;
	border: 1px solid transparent;
	color: #fff !important;
	font-size: 0.96rem;
	font-weight: 700;
	line-height: 1.3;
	text-align: center;
	text-shadow: 0 1px 1px rgba(0, 0, 0, 0.28);
	text-decoration: none !important;
	transition: filter 0.15s ease, transform 0.15s ease;
	box-shadow: 0 2px 5px rgba(15, 23, 42, 0.12);
}

.mcl-product-card__links--single {
	grid-template-columns: minmax(0, 1fr);
}

.mcl-product-card__links--single .mcl-product-card__button,
.mcl-product-card__button:only-child {
	display: flex;
	width: 100% !important;
	max-width: none !important;
	grid-column: 1 / -1;
}

.mcl-product-card__button:hover,
.mcl-product-card__button:focus-visible {
	filter: brightness(0.9);
	transform: translateY(-1px);
}

.mcl-product-card__button:focus-visible {
	outline: 3px solid rgba(34, 113, 177, 0.35);
	outline-offset: 2px;
}

.mcl-product-card__button--amazon {
	border-color: #c96e00;
	background: #e47911;
	color: #fff !important;
}

.mcl-product-card__button--rakuten-market {
	border-color: #8f0000;
	background: #b00000;
	color: #fff !important;
}

.mcl-product-card__button--rakuten-mobile {
	border-color: #a50058;
	background: #d41473;
	color: #fff !important;
}

.mcl-product-card__button--yahoo {
	border-color: #b50024;
	background: #d9002b;
	color: #fff !important;
}

.mcl-product-card__button--official {
	border-color: #075985;
	background: #087ca7;
	color: #fff !important;
}

.mcl-product-card__button--docomo {
	border-color: #8f0024;
	background: #b9002e;
	color: #fff !important;
}

.mcl-product-card__button--au {
	border-color: #a63700;
	background: #c94700;
	color: #fff !important;
}

.mcl-product-card__button--softbank {
	border-color: #4b5563;
	background: #6b7280;
	color: #fff !important;
}

.mcl-product-card__button--custom {
	border-color: rgba(0, 0, 0, 0.28);
	background: var(--mcl-custom-color, #475569);
	color: #fff !important;
}

@media (max-width: 767px) {
	.mcl-product-card {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 18px;
	}

	.mcl-product-card__image {
		width: 160px;
		max-width: 100%;
		height: 160px;
		max-height: 100%;
	}

	.mcl-product-card__media {
		width: 160px;
		height: 160px;
		margin: 0 auto;
	}

	.mcl-product-card .mcl-product-card__title {
		font-size: 1.25rem;
	}

	.mcl-product-card__links {
		grid-template-columns: 1fr;
	}
}
