/* =============================================================
   fx-price.css — 外貨価格表示スタイル
   配置: /assets/css/fx-price.css
============================================================= */

/* ── ラッパー ── */
.fx-price {
  display: flex;
  margin-top: 12px;
  gap: 12px;
}

/* ── USD / EUR 横並び ── */
.fx-price__currencies {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* ── 1通貨ブロック（アイコン + 金額） ── */
.fx-price__item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

/* ── 丸アイコン ── */
.fx-price__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #e8eaf6;   /* 薄い青紫 */
  color: #3949ab;              /* 濃い青 */
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  flex-shrink: 0;
}

/* ── 出典（目立たず小さく） ── */
.fx-price__source {
  display: block;
  margin-top: 4px;
  font-size: 0.6875rem;  /* 11px */
  color: #aaa;
  line-height: 1.3;
}

.fx-price__source a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fx-price__source a:hover {
  color: #777;
}

/* ── 商品カード内（トップ・カテゴリの一覧）での表示 ──
   詳細ページより小さく、中央寄せで料金の直下に置く用途。 */
.fee-fx {
  margin-top: 0px;
  margin: 4px 0 15px;
}

.fee-fx .fx-price__currencies {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.fee-fx .fx-price__item {
  font-size: 0.8125rem;  /* 13px */
  font-weight: 400;
  color: #666;
}

.fee-fx .fx-price__icon {
  width: 18px;
  height: 18px;
  font-size: 0.75rem;
}
