.product {
    padding: 6% 5%;
}

/* 横並び */
.product__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px; /* 横長になるので余白広め */
}

/* カード */
/* カード全体に余白を持たせる */
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    padding: 24px;   /* ← 外側に余白を作る */
}

/* 画像背景エリアを縮小 */
.product-card__image-wrap {
    width: 85%;                 /* ← 背景エリアを小さく */
    margin: 0 auto;             /* 中央配置 */
    aspect-ratio: 4 / 3;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

/* 画像はそのまま */
.product-card__image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

/* テキスト余白を増やしバランス調整 */
.product-card__title {
    font-size: 16px;
    line-height: 1.7;
    padding: 22px 24px 10px;
}

.product-card__price {
    font-size: 20px;
    font-weight: 600;
    color: #b93f2d;
    padding: 0 24px 26px;
}
