/* ==========================================================================
   Product Card — Amourec V1
   ========================================================================== */

.product-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.product-card__image {
	overflow: hidden;
	border-radius: 2px;
	height: 200px;
}

.product-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: opacity 0.3s ease;
}

.product-card__link:hover .product-card__img {
	opacity: 0.85;
}

.product-card__info {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-top: 12px;
	text-align: left;
}

.product-card__brand {
	font-size: 0.625rem;
	color: var(--color-text-tertiary, #999999);
	letter-spacing: 0.05em;
	line-height: 1.4;
	margin: 0;
}

.product-card__name {
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--color-text-primary, #1a1a1a);
	line-height: 1.5;
	margin: 0;
}

.product-card__price {
	font-size: 0.75rem;
	font-weight: 400;
	color: var(--color-text-primary, #1a1a1a);
	line-height: 1.4;
	margin: 0;
}

.product-card__price bdi {
	font-size: 0.875rem;
	font-weight: 600;
}

.product-card__price .woocommerce-Price-currencySymbol {
	font-size: 0.75rem;
	font-weight: 400;
}

.product-card__price del {
	color: var(--color-text-tertiary, #999999);
	font-weight: 400;
}

.product-card__price ins {
	color: var(--color-red, #C0392B);
	font-weight: 600;
	text-decoration: none;
}

/* セクション */
.featured-products {
	/* 間隔は .top-section で統一 */
}

.featured-products__title {
	/* スタイルは .top-section__title で統一 */
}

/* Grid — SP 2列 / PC 3列 */
.products-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.products-grid > li {
	margin: 0;
	list-style: none;
}

@media (min-width: 768px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}
