/* お気に入りボタン・マイページ用スタイル */

.fav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid #d8b400;
  border-radius: 999px;
  background: #fff;
  color: #8a7400;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.fav-btn:hover {
  background: #fffbe6;
}

.fav-btn .fav-btn-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.fav-btn.is-fav {
  background: #f5c518;
  border-color: #f5c518;
  color: #3a2f00;
}

.fav-btn.is-fav:hover {
  background: #e6b800;
}

.fav-btn[data-busy="1"] {
  opacity: 0.6;
  pointer-events: none;
}

/* 詳細ページのヘッダ内に置くお気に入りボタンの余白 */
.detail-header .fav-btn {
  margin-top: 1rem;
}

/* マイページのお気に入りカードのサムネイル */
.fav-card-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}

.fav-card-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
