/* 商品カード */
.often-products {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.often-product {
flex: 0 0 260px; 
width: 260px;
background: #fff;
border-radius: 6px;
box-shadow: 0 2px 6px rgba(0,0,0,.15);
overflow: hidden;
display: flex;
flex-direction: column;
}

@media (max-width: 450px) {
.often-product {
  flex: 0 0 170px;
  width: 170px;
}
}

.often-product__thumb-wrap {
position: relative;
width: 100%;
aspect-ratio: 4 / 3;
overflow: hidden;
}

.often-product__thumb {
width: 100%;
height: 100%;
object-fit: cover;
}

.often-product__body {
padding: 12px 14px 18px;
flex: 1;
display: flex;
flex-direction: column;
}

.often-product__title {
color: #000;
font-size: 1.2rem;
font-weight: 700;
margin-bottom: 0.5em;
line-height: 1.3;
overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

.often-product__meta {
font-size: .8rem;
color: #555;
list-style: none;
padding: 0;
margin: 0 0 10px;
}

.often-product__meta li {
line-height: 1.4;
}

.often-product__price {
margin-top: auto;
font-size: 1.3rem;
font-weight: bold;
color: #f51850;
}