/* =========================================
   truetagg-recommendations.css v4.0
   ─────────────────────────────────────────
   relatedProducts フラット配列用スタイル
   ========================================= */

/* ── セクション ── */
.tt-rec-section {
  border-top: 6px solid #f6f7f8;
  padding: 16px 0 0;
}

/* ── ヘッダー ── */
.tt-rec-header {
  padding: 0 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.tt-rec-header__title {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #1a1d2e;
  margin: 0;
  line-height: 1.4;
}

.tt-rec-header__count {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  color: #888;
  flex-shrink: 0;
}

/* ── スクロールトラック ── */
.tt-rec-scroll-track {
  position: relative;
  padding-bottom: 16px;
}

.tt-rec-card-row {
  display: flex;
  gap: 10px;
  padding: 0 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.tt-rec-card-row::-webkit-scrollbar {
  display: none;
}

/* ── スクロールボタン ── */
.tt-rec-scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  z-index: 2;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a3f52;
  transition: opacity 0.2s, box-shadow 0.2s;
}
.tt-rec-scroll-btn:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.tt-rec-scroll-btn--left {
  left: 4px;
  opacity: 0;
}
.tt-rec-scroll-btn--right {
  right: 4px;
}

/* モバイルではスクロールボタン非表示 */
@media (max-width: 768px) {
  .tt-rec-scroll-btn {
    display: none;
  }
}

/* ── カード ── */
.tt-rec-card {
  flex: 0 0 148px;
  background: #fff;
  border-radius: 8px;
  border: 0.5px solid #eef0f4;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s;
}
.tt-rec-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ── カード画像 ── */
.tt-rec-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #f6f7f8;
  overflow: hidden;
}
.tt-rec-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── カード本文 ── */
.tt-rec-card__body {
  padding: 8px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tt-rec-card__merchant {
  font-family: "Manrope", sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #136dec;
  margin: 0 0 3px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-rec-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 10px;
  color: #3a3f52;
  margin: 0;
  line-height: 1.35;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── カードフッター ── */
.tt-rec-card__footer {
  border-top: 1px dashed #e2e5ea;
  margin-top: 6px;
  padding-top: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tt-rec-card__price {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #1a1d2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tt-rec-card__arrow {
  width: 18px;
  height: 18px;
  background: #136dec;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}