/* セクション共通 */
.section-title {
  font-size: 20px;
  margin: 24px 0 12px;
  padding: 0 16px;
}

.gift-slider {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding: 8px 16px;
}

.gift-item {
  flex: 0 0 auto;
  width: 150px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  font-family: sans-serif;
}

.gift-item a {
  text-decoration: none;
  color: inherit; /* リンクカラーも通常の文字と揃える場合 */
}

.gift-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 12px 12px 0 0;
}

.gift-title {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 8px 0;
  padding: 0 5px;
}

.gift-price {
  color: red;
  font-weight: bold;
  padding: 0 5px;
}

.rating {
  display: flex;
  font-size: 10px;
  align-items: center;
  padding: 0 5px 10px;

}

.rating-value {
  font-weight: bold;
  color: #ffb906;
}

.review-count {
  color: #666666;
  font-size: 10px;
}

.star {
  font-size: 10px;
  color: #c4c4c4;
  margin-right: -2px;
  letter-spacing: -1px;
}

.star.full {
  color: #ffb906;
}

.star.half {
  background: linear-gradient(to right, #ffb906 50%, #c4c4c4 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.star.empty {
  color: #c4c4c4;
}

