.product-container {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 24px;
	margin: 20px 0;
}

.product-image {
	overflow: hidden;
	max-height: 370px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,.1);
	display: flex;
	align-items: center;
	justify-content: center;
	background: url("../asset/bg.png") center/cover no-repeat, #f1f5f9;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.product-info {
	background: #fff;
	max-height: 370px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,.08);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.product-info p {
	margin: 0px;
}

.product-name {
	font-size: 28px;
	font-weight: bold;
	color: #333;
}

.product-price {
	font-size: 26px;
	color: #e53935;
	font-weight: bold;
	text-align: right;
}
.product-action{

}

.btn-cart {
	padding: 6px 10px;
	background: linear-gradient(45deg, #ff6f61, #d32f2f);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background .3s ease, transform .2s ease;
}

.btn-cart:hover {
	background: linear-gradient(45deg, #d32f2f, #ff6f61);
	transform: translateY(-2px);
}
.product-description {
	margin-top: 30px;
	padding: 20px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0,0,0,.04);
	font-size: 15px;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
	.product-container {
		grid-template-columns: 1fr; /* スマホでは縦並び */
	}
	.product-price,
	.product-stock {
		text-align: left;
	}
}