/* ===========================
   WANPAKU統一モーダルシステム - テーマCSS
   モーダル別固有スタイル・テーマ実装
   Version: 1.3.0 - Fixed CSS variable scoping, h2 selector specificity, and font unit consistency
=========================== */

/* ===========================
   テーマ共通変数定義
=========================== */
:root {
  /* テーマ別z-index（統一基盤の拡張） */
  --theme-food-detail-z: var(--modal-z-food-detail);
  --theme-logic-z: var(--modal-z-logic);
  --theme-calorie-z: var(--modal-z-base);
  --theme-footer-z: var(--modal-z-overlay);
  
  /* テーマ別高さ（個別管理が必要なもののみ） */
  --theme-logic-height: 95vh;
  --theme-compact-height: 80vh;
  
  /* モック準拠のデザイン変数 */
  --bg-tag: #fff6e6;            /* タグ背景色 */
  --bg-section: #fafafa;        /* セクション背景色 */
  --radius: 18px;               /* 角丸サイズ */
  --divider: #e5e7eb;           /* 区切り線色 */
  
  /* プログレスバー用変数 */
  --progress-height: 8px;       /* プログレスバー高さ */
  --progress-bg: var(--divider); /* プログレスバー背景色 */
  --progress-radius: 4px;       /* プログレスバー角丸 */
  
  /* ===========================
     オリジン風モダンデザイン変数（Logic Modal Modern用）
  =========================== */
  /* オリジン風グラデーション */
  --grad-from: #d6c18d;         /* オリジン金ゴールド（明） */
  --grad-to: #9c7b52;           /* オリジン金ゴールド（暗） */
  
  /* モダン背景色システム（theme-logic-modern専用） */
  --theme-logic-modern-bg-main: #f4f5f7;           /* メイン背景グレー */
  --theme-logic-modern-bg-card: #fff;              /* カード背景白 */
  --theme-logic-modern-bg-soft: #f8f9fa;           /* ソフトグレー */
  
  /* モダンテキスト色（theme-logic-modern専用） */
  --theme-logic-modern-text: #222;                 /* メインテキスト */
  --theme-logic-modern-muted: #6b7280;             /* 薄いテキスト */
  
  /* モダン角丸サイズ */
  --radius-lg: 24px;            /* 大きい角丸 */
  --radius-sm: 14px;            /* 小さい角丸 */
  
  /* モダンシャドウ */
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.05); /* ソフトシャドウ */
  
  /* Logic Modern テーマ専用高さ */
  --theme-logic-modern-height: auto; /* 動的高さ調整 */
}

/* ===========================
   Food Detail Modal テーマ
   - 最も複雑で高機能なモーダル
   - 折りたたみ機能、購入ボタン、詳細データ表示
   
   統一設定:
   - max-width: 統一変数使用（800px）
   - height/max-height: 統一変数使用（90vh）
   - background: 統一変数使用（#fafafa）
   - border-radius: 統一変数使用（8px）
   
   個別設定:
   - なし（全て基盤設定を使用）
=========================== */
.modal-unified-base.theme-food-detail {
  z-index: var(--theme-food-detail-z);
}

/* ヘッダー画像エリア */
.modal-unified-base.theme-food-detail .modal-food-header-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.modal-unified-base.theme-food-detail .modal-food-content {
  padding: 1.7rem;  /* モック準拠 */
}

/* フード詳細専用コンテンツスタイル */
.modal-unified-base.theme-food-detail .food-detail-section {
  padding: var(--modal-section-padding) var(--modal-content-padding);
  border-bottom: 0.5px solid var(--modal-border-light);
}

.modal-unified-base.theme-food-detail .food-detail-section:last-child {
  border-bottom: none;
}

.modal-unified-base.theme-food-detail .food-detail-title {
  font-family: var(--modal-font-title);
  font-size: var(--modal-title-large-font-size);
  font-weight: 300;
  color: var(--primary, #2c2c2c);
  margin-bottom: var(--modal-small-margin);
  letter-spacing: -0.5px;
}

.modal-unified-base.theme-food-detail .food-detail-subtitle {
  font-size: 11px;
  color: var(--dark-gray, #888888);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--modal-section-padding);
  opacity: 0.8;
}

/* タグエリア（モック準拠） */
.modal-unified-base.theme-food-detail .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.4rem;
}

.modal-unified-base.theme-food-detail .tag {
  background: var(--bg-tag);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  white-space: nowrap;
  color: var(--primary, #2c2c2c);
  border: none;
}

/* プログレスバー（モック準拠） */
.modal-unified-base.theme-food-detail .progress {
  margin-top: 6px;
  height: var(--progress-height);
  background: var(--progress-bg);
  border-radius: var(--progress-radius);
  overflow: hidden;
}

.modal-unified-base.theme-food-detail .progress span,
.modal-unified-base.theme-food-detail .progress .progress-fill {
  display: block;
  height: 100%;
  background: var(--accent, #c9a96e);
}

/* スコア表示エリア */
.modal-unified-base.theme-food-detail .score-box {
  margin-bottom: 1.2rem;
}

.modal-unified-base.theme-food-detail .score-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* スコア表示は .progress-score-num に統一 */

/* 重複クラス削除: nutrition-cards.cssで管理 */

/* 給与量グリッド（2x2レイアウト） */
.modal-unified-base.theme-food-detail .feeding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  font-size: 0.82rem;
  margin-bottom: 1.4rem;
}

.modal-unified-base.theme-food-detail .feed-card {
  background: var(--bg-section);
  padding: 0.9rem;
  border-radius: 12px;
  text-align: center;
  color: var(--primary, #2c2c2c);
}

.modal-unified-base.theme-food-detail .feed-card strong {
  display: block;
  font-size: 1.05rem;
  margin-top: 4px;
  font-weight: 600;
}

/* コストカードグリッドシステム（新デザイン仕様） */
.modal-unified-base.theme-food-detail .cost-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 24px;
  padding: 0 20px;
}

.modal-unified-base.theme-food-detail .cost-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  border: 1px solid #f0f0f0;
}


.modal-unified-base.theme-food-detail .cost-card strong {
  display: block;
  font-size: 1.1rem;
  margin-top: 8px;
  font-weight: 600;
  color: #c9a96e;
}

/* 予算適合カード - 緑グラデーション（理想デザイン準拠） */
.modal-unified-base.theme-food-detail .cost-card.budget-ok {
  background: linear-gradient(135deg, #e6f4ea, #f0f9f2);
  border-color: #81c784;
}

.modal-unified-base.theme-food-detail .cost-card.budget-ok .cost-value {
  color: #2e7d32;
}

/* 予算ステータス */
.modal-unified-base.theme-food-detail .budget {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #0d9488;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* コストカード詳細スタイル（理想デザイン準拠） */
.modal-unified-base.theme-food-detail .cost-label {
  color: #888;
  font-size: 0.8rem;
  margin-bottom: 6px;
  font-weight: 500;
}

.modal-unified-base.theme-food-detail .cost-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c2c2c;
}

/* food-stats-gridは未使用のため削除済み */

/* 材料分析セクション */
.modal-unified-base.theme-food-detail .ingredient-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.modal-unified-base.theme-food-detail .ingredient-category {
  background: transparent;
  border: 0.5px solid var(--modal-border-light, #e8e8e8);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.modal-unified-base.theme-food-detail .ingredient-category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent, #c9a96e);
  transform: translateX(-100%);
}

.modal-unified-base.theme-food-detail .ingredient-category:hover {
  background: var(--modal-content-bg, #fafafa);
  border-color: var(--modal-border-mid, #d0d0d0);
}

.modal-unified-base.theme-food-detail .ingredient-category:hover::before {
  transform: translateX(0);
}

.modal-unified-base.theme-food-detail .ingredient-category-title {
  font-size: 10px;
  font-weight: 400;
  color: var(--primary, #2c2c2c);
  margin-bottom: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.7;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  margin: -8px -12px 20px -12px;
  border-radius: 4px;
  user-select: none;
  position: relative;
}

.modal-unified-base.theme-food-detail .ingredient-category-title:hover {
  background: var(--modal-content-bg, #fafafa);
  opacity: 1;
}

.modal-unified-base.theme-food-detail .ingredient-category-title::after {
  content: '▶';
  font-size: 12px;
  color: var(--accent, #c9a96e);
  opacity: 0.8;
  padding: 2px;
  border-radius: 2px;
}

.modal-unified-base.theme-food-detail .ingredient-category-title:hover::after {
  opacity: 1;
  background: rgba(201, 169, 110, 0.1);
  transform: scale(1.1);
}

.modal-unified-base.theme-food-detail .ingredient-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-unified-base.theme-food-detail .ingredient-item {
  font-size: 13px;
  color: var(--primary, #2c2c2c);
  padding: 10px 0;
  border-bottom: 0.5px solid var(--modal-border-light, #f0f0f0);
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 12px;
}

.modal-unified-base.theme-food-detail .ingredient-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1px;
  background: var(--accent, #c9a96e);
  border-radius: 50%;
  opacity: 0.6;
}

.modal-unified-base.theme-food-detail .ingredient-item:hover {
  color: var(--accent-dark, #b59043);
  padding-left: 16px;
}

.modal-unified-base.theme-food-detail .ingredient-item:last-child {
  border-bottom: none;
}

/* Accordion functionality for ingredient categories */
.modal-unified-base.theme-food-detail .ingredient-category.collapsed .ingredient-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
}

.modal-unified-base.theme-food-detail .ingredient-category.expanded .ingredient-list {
  max-height: 500px;
  opacity: 1;
  overflow: visible;
}

.modal-unified-base.theme-food-detail .ingredient-category.collapsed .ingredient-category-title::after {
  transform: rotate(0deg);
}

.modal-unified-base.theme-food-detail .ingredient-category.expanded .ingredient-category-title::after {
  transform: rotate(90deg);
}

.modal-unified-base.theme-food-detail .ingredient-category:not(.expanded) {
}

.modal-unified-base.theme-food-detail .ingredient-category:not(.expanded) .ingredient-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
}

.modal-unified-base.theme-food-detail .ingredient-category:not(.expanded) .ingredient-category-title::after {
  transform: rotate(0deg);
}

.modal-unified-base.theme-food-detail .food-stat-item {
  background: transparent;
  border: 0.5px solid var(--modal-border-light);
  padding: 16px 12px;
  text-align: center;
  border-radius: 4px;
}

.modal-unified-base.theme-food-detail .food-stat-item:hover {
  background: var(--modal-content-bg);
  border-color: var(--modal-border-mid);
}

.modal-unified-base.theme-food-detail .food-stat-value {
  font-size: 28px;
  font-weight: 200;
  color: var(--primary, #2c2c2c);
  margin-bottom: 12px;
  display: block;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.modal-unified-base.theme-food-detail .food-stat-label {
  font-size: 10px;
  color: var(--dark-gray, #888888);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 300;
  opacity: 0.8;
}

/* 折りたたみセクション（Food Detail専用） */
.modal-unified-base.theme-food-detail .collapsible-section .section-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-unified-base.theme-food-detail .clickable-header {
  cursor: pointer;
  padding: 12px 16px;
  margin: -12px -16px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: transparent;
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-unified-base.theme-food-detail .clickable-header:hover {
  background: var(--light-gray, #f8f8f8);
  border-color: var(--modal-border-light, #e8e8e8);
}

.modal-unified-base.theme-food-detail .clickable-header:active {
  background: var(--modal-border-light, #e8e8e8);
  transform: translateY(1px);
}

.modal-unified-base.theme-food-detail .collapse-icon {
  font-size: 14px;
  color: var(--accent, #c9a96e);
  opacity: 0.8;
  user-select: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  min-height: 20px;
}

.modal-unified-base.theme-food-detail .collapse-icon:hover {
  opacity: 1;
  background: rgba(201, 169, 110, 0.1);
  transform: scale(1.1);
}

.modal-unified-base.theme-food-detail .collapsible-section.expanded .collapse-icon {
  transform: rotate(90deg);
}

.modal-unified-base.theme-food-detail .section-content {
  overflow: hidden;
}

.modal-unified-base.theme-food-detail .collapsible-section.collapsed .section-content {
  max-height: 0;
  opacity: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateY(-8px);
}

.modal-unified-base.theme-food-detail .collapsible-section.expanded .section-content {
  max-height: 2000px;
  opacity: 1;
  padding-top: 16px;
  padding-bottom: 8px;
  transform: translateY(0);
}

/* ボタンサイズバリエーション */
.modal-unified-base.theme-food-detail .purchase-btn--small,
.modal-unified-base.theme-food-detail .chat-btn--small {
  padding: 10px 16px;
  font-size: 0.8rem;
  min-height: 42px;
}

.modal-unified-base.theme-food-detail .purchase-btn--large,
.modal-unified-base.theme-food-detail .chat-btn--large {
  padding: 16px 24px;
  font-size: 1rem;
  min-height: 56px;
}



/* ===========================
   Logic Modal Modern テーマ（シンプル版）
   - ロジック詳細.html準拠のシンプルデザイン
   - Poppinsフォント、オレンジアクセント(#e67e22)
   - 単一カラムレイアウト
   
   統一設定:
   - max-width: 900px（目標デザイン準拠）
   - background: linear-gradient(180deg, #f9fafc, #eef1f5)
   
   個別設定:
   - height: auto（コンテンツ依存）
   - font-family: Poppins（目標デザイン準拠）
=========================== */
.modal-unified-base.theme-logic-modern {
  z-index: var(--theme-logic-z);
  font-family: 'Poppins', 'Helvetica Neue', sans-serif;
}

.modal-unified-base.theme-logic-modern .modal-unified__content {
  max-width: 900px; /* 目標デザイン準拠 */
  height: auto;
  max-height: 95vh;
  background: linear-gradient(180deg, #f9fafc, #eef1f5); /* 目標デザイン準拠 */
  border-radius: 20px; /* 目標デザイン準拠 */
  overflow-y: auto;
}

.modal-unified-base.theme-logic-modern .modal-unified__body {
  padding: 0;
}

/* メインコンテナ（衝突回避のため.logic-container使用） */
.modal-unified-base.theme-logic-modern .logic-container {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  padding: var(--modal-content-padding);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* タイトル（シンプル版） */
.modal-unified-base.theme-logic-modern h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a202c;
  letter-spacing: 0.5px;
}

/* タグエリア */
.modal-unified-base.theme-logic-modern .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.modal-unified-base.theme-logic-modern .tag {
  background: #f7fafc;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid #e2e8f0;
  color: #2d3748;
  font-weight: 500;
}

/* スコアセクション（衝突回避のため.logic-score-section使用） */
.modal-unified-base.theme-logic-modern .logic-score-section {
  background: linear-gradient(135deg, #fff4e6, #fffaf5);
  padding: 24px;
  text-align: center;
  margin-bottom: 28px;
  border-radius: 14px;
  border: 1px solid #ffe0b3;
}

.modal-unified-base.theme-logic-modern .logic-score-section div:first-child {
  font-size: 0.95rem;
  color: #718096;
}

.modal-unified-base.theme-logic-modern .score {
  font-size: 2.8rem;
  font-weight: 700;
  color: #e67e22;
  margin-top: 4px;
}

/* セクションタイトル（h3形式、フードモーダルトンマナ統一） */
.modal-unified-base.theme-logic-modern h3 {
  font-family: 'Crimson Text', serif;
  border-left: 4px solid #c9a96e;
  padding-left: 10px;
  font-size: 1.2rem;
  color: #2c2c2c;
  margin-top: 0;
  margin-bottom: 16px;
  font-weight: 600;
}

/* テーブル（目標デザイン準拠） */
.modal-unified-base.theme-logic-modern table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.modal-unified-base.theme-logic-modern th,
.modal-unified-base.theme-logic-modern td {
  padding: 12px 10px;
  border-bottom: 1px solid #edf2f7;
}

.modal-unified-base.theme-logic-modern th {
  text-align: left;
  color: #4a5568;
  background: #f9fafb;
  font-weight: 600;
}

.modal-unified-base.theme-logic-modern td {
  text-align: right;
  background: #fff;
  color: #2d3748;
}

.modal-unified-base.theme-logic-modern tr:last-child th,
.modal-unified-base.theme-logic-modern tr:last-child td {
  border-bottom: none;
}

/* 注記スタイル（.noteクラス、目標デザイン準拠） */
.modal-unified-base.theme-logic-modern .note {
  font-size: 0.85rem;
  color: #718096;
  margin-bottom: 8px;
  line-height: 1.4;
}

/* 説明ボックス */
.modal-unified-base.theme-logic-modern .explain {
  font-size: 0.85rem;
  color: #718096;
  margin-top: 2rem;
  line-height: 1.4;
}

/* レスポンシブ対応（シンプル版） */
@media (max-width: 768px) {
  .modal-unified-base.theme-logic-modern .logic-container {
    margin: 15px;
    padding: var(--modal-content-padding-mobile);
  }
  
  .modal-unified-base.theme-logic-modern h1 {
    font-size: 1.5rem;
  }
  
  .modal-unified-base.theme-logic-modern .logic-score-section {
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .modal-unified-base.theme-logic-modern .score {
    font-size: 2.2rem;
  }
  
  .modal-unified-base.theme-logic-modern h3 {
    font-size: 1.1rem;
  }
  
  .modal-unified-base.theme-logic-modern table {
    font-size: 0.8rem;
  }
  
  .modal-unified-base.theme-logic-modern th,
  .modal-unified-base.theme-logic-modern td {
    padding: 8px 6px;
  }
}

/* ===========================
   Calorie Modal テーマ
   - カロリー計算説明専用
   - コンパクトで読みやすい表示
   
   統一設定:
   - max-width: 統一変数使用（800px）
   - height/max-height: 統一変数使用（90vh）
   - background: 統一変数使用（#fafafa）
   - border-radius: 統一変数使用（8px）
   
   個別設定:
   - なし（基本的に統一設定に準拠）
=========================== */
.modal-unified-base.theme-calorie {
  z-index: var(--theme-calorie-z);
}

.modal-unified-base.theme-calorie .modal-unified__content {
  max-width: var(--modal-unified-max-width);
  height: var(--modal-unified-height);
  max-height: var(--modal-unified-max-height);
}

.modal-unified-base.theme-calorie .modal-unified__body {
  padding: 0;
}

.modal-unified-base.theme-calorie .modal-section {
  padding: var(--modal-element-margin) var(--modal-content-padding);
  border-bottom: 1px solid var(--modal-border-light);
}

.modal-unified-base.theme-calorie .modal-section:last-child {
  border-bottom: none;
}

.modal-unified-base.theme-calorie .modal-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary, #2c2c2c);
  margin-bottom: var(--modal-element-margin);
  border-bottom: 2px solid var(--accent, #c9a96e);
  padding-bottom: 8px;
  display: inline-block;
}

.modal-unified-base.theme-calorie .modal-text {
  font-size: 14px;
  line-height: 1.8;
  color: var(--primary, #2c2c2c);
  margin-bottom: var(--modal-element-margin);
}

.modal-unified-base.theme-calorie .formula {
  background: linear-gradient(135deg, #f8f8f8, #f0f0f0);
  border: 1px solid var(--modal-border-mid);
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

/* カロリー計算用リスト */
.modal-unified-base.theme-calorie ul {
  margin: 0 0 var(--modal-element-margin) 20px;
  padding-left: 20px;
}

.modal-unified-base.theme-calorie li {
  margin-bottom: 8px;
  color: var(--dark-gray, #888888);
  line-height: 1.6;
}

/* ===========================
   Note Accent スタイル
   - 左ボーダー付き注釈用最小スタイル
=========================== */
.modal-unified-base.theme-logic-modern .note-accent {
    margin: 16px 0 24px 0;
    padding-left: 16px;
    border-left: 3px solid var(--grad-from, #d6c18d);
}

/* ===========================
   Footer Modal テーマ
   - フッターから開くコンテンツモーダル
   - 中程度のサイズ、読みやすさ重視
   
   統一設定:
   - max-width: 統一変数使用（800px）
   - background: 統一変数使用（#fafafa）
   - border-radius: 統一変数使用（8px）
   
   個別設定:
   - height: auto（コンテンツ依存）
   - max-height: 60vh（コンパクト表示）
=========================== */
.modal-unified-base.theme-footer {
  z-index: var(--theme-footer-z);
}

.modal-unified-base.theme-footer .modal-unified__content {
  max-width: var(--modal-unified-max-width);
  height: auto;
  max-height: var(--theme-compact-height);
}

.modal-unified-base.theme-footer .modal-unified__body {
  padding: var(--modal-content-padding);
  font-size: 14px;
  line-height: 1.8;
  color: var(--primary, #2c2c2c);
}

.modal-unified-base.theme-footer .modal-unified__body h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 24px 0 16px;
  color: var(--primary, #2c2c2c);
  border-left: 4px solid var(--accent, #c9a96e);
  padding-left: 16px;
}

.modal-unified-base.theme-footer .modal-unified__body p {
  margin-bottom: var(--modal-element-margin);
}

.modal-unified-base.theme-footer .modal-unified__body ul {
  margin: 0 0 var(--modal-element-margin) 20px;
  padding-left: 20px;
}

.modal-unified-base.theme-footer .modal-unified__body li {
  margin-bottom: 8px;
}


/* ===========================
   レスポンシブ対応（テーマ別調整）
=========================== */

/* デスクトップ最適化 (1024px以上) */
@media (min-width: 1024px) {
  /* Food Detail テーマデスクトップ調整 */
  .modal-unified-base.theme-food-detail .modal-food-content {
    padding: 2rem; /* デスクトップ向けゆとりのあるパディング */
  }
  
  /* 栄養成分: nutrition-cards.cssで管理 */
  
  /* 給与量グリッド最適化 */
  .modal-unified-base.theme-food-detail .feeding-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem; /* デスクトップ向け広めのギャップ */
    max-width: 600px; /* 2x2レイアウトの最適幅制限 */
    margin: 0 auto; /* 中央配置 */
  }
  
  .modal-unified-base.theme-food-detail .feed-card {
    padding: 1.2rem; /* より大きなパディング */
  }
  
  /* ヘッダー画像最適化 */
  .modal-unified-base.theme-food-detail .modal-food-header-image {
    height: 280px; /* デスクトップ向けより大きな画像 */
  }
  
  /* タグエリア最適化 */
  .modal-unified-base.theme-food-detail .tags {
    gap: 8px; /* デスクトップ向け広めのギャップ */
    margin-bottom: 1.6rem;
  }
  
  .modal-unified-base.theme-food-detail .tag {
    padding: 6px 12px; /* デスクトップ向けより大きなパディング */
    font-size: 0.8rem; /* 少し大きめのフォント */
  }
  
  /* 栄養カード: nutrition-cards.cssで管理 */
  
  /* セクション間の余白最適化 */
  .modal-unified-base.theme-food-detail .food-detail-section {
    margin-bottom: 2rem; /* デスクトップ向けより大きな余白 */
  }
}

/* ===========================
   インラインスタイル移行用ユーティリティクラス
   保守性向上のためのCSS統合
=========================== */

/* プログレスバーラベル */
.modal-unified-base.theme-food-detail .progress-label {
  font-size: 0.8rem;
  color: var(--primary, #2c2c2c);
  font-weight: 500;
}

/* グローバル定義の .progress-score-num を使用 */

/* 予算ステータスアイコン */
.modal-unified-base.theme-food-detail .budget-icon {
  display: inline-flex;
  align-items: center;
  width: 16px;
  height: 16px;
  font-size: 12px;
  margin-right: 4px;
}

.modal-unified-base.theme-food-detail .budget-details {
  font-size: 0.75rem;
  color: var(--dark-gray, #888888);
  margin-left: 8px;
  opacity: 0.8;
}

.modal-unified-base.theme-food-detail .budget-status {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ボタン配置 */
.modal-unified-base.theme-food-detail .button-container-right {
  text-align: right;
  margin-top: 1rem;
}

.modal-unified-base.theme-food-detail .logic-detail-btn {
  padding: 8px 16px;
  font-size: var(--modal-caption-font-size);
  background: var(--accent);
  color: var(--white);
  border: 1px solid var(--accent);
  border-radius: 2px;
  cursor: pointer;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-unified-base.theme-food-detail .logic-detail-btn:hover {
  background: var(--accent-dark);
}


/* 原材料リスト */
.modal-unified-base.theme-food-detail .ingredients-container {
  margin-bottom: 32px;
}

.modal-unified-base.theme-food-detail .ingredients-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent-dark);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.modal-unified-base.theme-food-detail .ingredients-content {
  background: var(--light-gray);
  border: var(--border-light);
  padding: var(--modal-padding-standard);
  font-size: var(--modal-text-small-font-size);
  line-height: 1.6;
  color: var(--primary);
}

/* ステータスメッセージ */
.modal-unified-base.theme-food-detail .status-error {
  background: var(--modal-error-bg);
  border: 1px solid var(--modal-error-border);
  padding: var(--modal-padding-standard);
  margin-top: var(--modal-margin-top-large);
  color: var(--modal-error-text);
}

.modal-unified-base.theme-food-detail .status-info {
  background: var(--modal-info-bg);
  border: 1px solid var(--modal-info-border);
  padding: var(--modal-padding-small);
  margin-top: var(--modal-margin-top-standard);
  color: var(--modal-info-text);
  font-size: var(--modal-caption-font-size);
}

.modal-unified-base.theme-food-detail .status-warning {
  background: var(--modal-warning-bg);
  border: 1px solid var(--modal-warning-border);
  padding: var(--modal-padding-small);
  margin-top: var(--modal-margin-top-standard);
  color: var(--modal-warning-text);
  font-size: var(--modal-caption-font-size);
}

/* 推奨理由テキスト */
.modal-unified-base.theme-food-detail .recommendation-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  letter-spacing: 0.3px;
  font-weight: normal;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  margin: 16px 0;
  text-decoration: none;
}

@media (max-width: 768px) {
  /* Food Detail テーマタブレット調整 */
  .modal-unified-base.theme-food-detail .modal-unified__content {
    max-width: 100%; /* タブレット幅いっぱい使用 */
  }
  
  .modal-unified-base.theme-food-detail .modal-food-content {
    padding: 1.5rem; /* タブレット向けパディング */
  }
  
  /* 栄養グリッド: nutrition-cards.cssで管理 */
  
  /* 新グリッドレイアウト：給与量2x2維持 */
  .modal-unified-base.theme-food-detail .feeding-grid {
    grid-template-columns: 1fr 1fr; /* 2x2維持 */
    gap: 1rem;
    max-width: 500px; /* タブレット向け幅制限 */
    margin: 0 auto;
  }
  
  .modal-unified-base.theme-food-detail .feed-card {
    padding: 1rem;
  }
  
  /* ヘッダー画像調整 */
  .modal-unified-base.theme-food-detail .modal-food-header-image {
    height: 220px; /* タブレット向けサイズ */
  }
  
  /* タグエリア調整 */
  .modal-unified-base.theme-food-detail .tags {
    gap: 6px;
    margin-bottom: 1.4rem;
    justify-content: flex-start; /* 左寄せ */
  }
  
  .modal-unified-base.theme-food-detail .tag {
    padding: 5px 11px;
    font-size: 0.75rem;
  }
  
  /* プログレスバー調整 */
  .modal-unified-base.theme-food-detail .progress {
    height: var(--progress-height);
  }
  
  .modal-unified-base.theme-food-detail .score-box {
    margin-bottom: 1.2rem;
  }
  
  /* 未使用の既存グリッド削除済み */

  /* 材料分析セクション（レスポンシブ） */
  .modal-unified-base.theme-food-detail .ingredient-analysis {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .modal-unified-base.theme-food-detail .ingredient-category {
    margin-bottom: 16px;
    padding: 24px 16px;
  }
  
  .modal-unified-base.theme-food-detail .ingredient-list {
    padding-left: 16px;
  }
  
  .modal-unified-base.theme-food-detail .food-detail-title {
    font-size: 24px;
  }
  
  .modal-unified-base.theme-food-detail .food-detail-section {
    padding: var(--modal-content-padding-mobile);
  }
  
  .modal-unified-base.theme-food-detail .clickable-header {
    padding: 12px 16px;
    margin: -12px -16px;
    min-height: 44px;
  }
  
  
  /* Calorie テーマモバイル調整 */
  .modal-unified-base.theme-calorie .modal-section {
    padding: var(--modal-element-margin) var(--modal-content-padding-mobile);
  }
  
  /* Footer テーマモバイル調整 */
  .modal-unified-base.theme-footer .modal-unified__body {
    padding: var(--modal-content-padding-mobile);
  }
  
}

@media (max-width: 768px) {
  /* Food Detail テーマモバイル最適化 */
  .modal-unified-base.theme-food-detail .modal-food-content {
    padding: 1.2rem; /* モバイル向けコンパクトパディング */
  }
  
  /* 栄養グリッド: nutrition-cards.cssで管理 */
  
  /* 新グリッドレイアウト：給与量2列（縦並び）対応 */
  .modal-unified-base.theme-food-detail .feeding-grid {
    grid-template-columns: 1fr 1fr; /* 2x2維持だが、より縦長に */
    gap: 0.8rem;
    max-width: 100%; /* モバイルは幅制限なし */
    margin: 0;
  }
  
  .modal-unified-base.theme-food-detail .feed-card {
    padding: 0.8rem;
    font-size: 0.75rem;
  }
  
  .modal-unified-base.theme-food-detail .feed-card strong {
    font-size: 0.95rem;
    margin-top: 3px;
  }
  
  /* ヘッダー画像調整 */
  .modal-unified-base.theme-food-detail .modal-food-header-image {
    height: 190px; /* モバイル向け最適サイズ */
  }
  
  /* タグエリア調整 */
  .modal-unified-base.theme-food-detail .tags {
    gap: 5px;
    margin-bottom: 1.2rem;
    flex-wrap: wrap; /* 改行対応 */
  }
  
  .modal-unified-base.theme-food-detail .tag {
    padding: 4px 9px;
    font-size: 0.7rem;
    min-height: 24px; /* タッチ操作向けサイズ */
    display: flex;
    align-items: center;
  }
  
  /* プログレスバー調整 */
  .modal-unified-base.theme-food-detail .progress {
    height: 6px; /* モバイル向けやや細く */
    border-radius: 3px;
  }
  
  .modal-unified-base.theme-food-detail .score-box {
    margin-bottom: 1rem;
  }
  
  .modal-unified-base.theme-food-detail .progress-score-num {
    font-size: 1.6rem; /* モバイル向けコンパクト */
  }
  
  /* 予算表示調整 */
  .modal-unified-base.theme-food-detail .budget {
    font-size: 0.75rem;
    margin-top: 0.6rem;
  }
  
  /* セクション間余白調整 */
  .modal-unified-base.theme-food-detail .food-detail-section {
    margin-bottom: 1.2rem;
  }
  
  /* 全テーマ共通小画面調整 */
  .modal-unified-base.theme-food-detail .food-detail-section,
  .modal-unified-base.theme-calorie .modal-section,
  .modal-unified-base.theme-footer .modal-unified__body {
    padding: var(--modal-element-margin);
  }
  
  /* 未使用の既存グリッド削除済み */

  /* 材料分析セクション（小画面） */
  .modal-unified-base.theme-food-detail .ingredient-category {
    padding: 20px 12px;
  }
}

/* ===========================
   テーマ組み合わせ・特殊状態
=========================== */

/* 印刷時の調整 */
@media print {
  .modal-unified-base {
    position: static;
    display: block !important;
    padding: 0;
    background: transparent;
  }
  
  .modal-unified__overlay {
    display: none;
  }
  
  .modal-unified__content {
    position: static;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    box-shadow: none;
    border: 1px solid #000;
    transform: none;
    opacity: 1;
  }
  
  .modal-unified__header .modal-close-common,
  .modal-unified__header .modal-back-btn {
    display: none;
  }
}

/* ===========================
   Phase 6-4: ユーティリティクラス（重複削除後）
   テーマ固有定義で代替されないクラスのみ保持
=========================== */

/* プログレスバー用クラス - グローバル定義保持 */
.progress-score-num {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary, #2c2c2c);
}

/* 原材料セクション用クラス */
.ingredients-container {
  margin-bottom: 32px;
}

.ingredients-title {
  font-size: 14px;
  font-weight: 400;
  color: var(--accent-dark);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.ingredients-content {
  background: var(--light-gray);
  border: var(--border-light);
  padding: var(--modal-padding-standard);
  font-size: var(--modal-text-small-font-size);
  line-height: 1.6;
  color: var(--primary);
}

/* ステータスメッセージ用クラス */
.status-error {
  background: var(--modal-error-bg);
  border: 1px solid var(--modal-error-border);
  padding: var(--modal-padding-standard);
  margin-top: var(--modal-margin-top-large);
  color: var(--modal-error-text);
}

.status-info {
  background: var(--modal-info-bg);
  border: 1px solid var(--modal-info-border);
  padding: var(--modal-padding-small);
  margin-top: var(--modal-margin-top-standard);
  color: var(--modal-info-text);
  font-size: var(--modal-caption-font-size);
}

.status-warning {
  background: var(--modal-warning-bg);
  border: 1px solid var(--modal-warning-border);
  padding: var(--modal-padding-small);
  margin-top: var(--modal-margin-top-standard);
  color: var(--modal-warning-text);
  font-size: var(--modal-caption-font-size);
}

/* テキストセクション用クラス */
.recommendation-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  letter-spacing: 0.3px;
  font-weight: normal;
  text-decoration: none;
}

.feeding-hint {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: var(--dark-gray);
  line-height: 1.6;
  font-weight: 300;
}

/* セクションヘッダー用クラス */
.section-header-title {
  margin: 0;
}

/* ===========================
   新デザイン用スタイル（モックデザイン対応）
=========================== */

/* 水平ヘッダーレイアウト */
.modal-unified-base.theme-food-detail .modal-header {
  display: flex;
  padding: 28px;
  background: linear-gradient(135deg, #fffef7, #ffe6c9);
  align-items: center;
}

.modal-unified-base.theme-food-detail .modal-header img {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  object-fit: cover;
  margin-right: 24px;
}

.modal-unified-base.theme-food-detail .modal-header .title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c3e50;
}

.modal-unified-base.theme-food-detail .modal-header .food-brand {
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-unified-base.theme-food-detail .modal-header .food-title {
  font-family: 'Crimson Text', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
  line-height: 1.3;
}

.modal-unified-base.theme-food-detail .modal-header .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.modal-unified-base.theme-food-detail .modal-header .tag {
  background: #f1f5f9;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  border: none;
  color: #2c2c2c;
  font-weight: 500;
}

/* 独立スコア表示セクション */
.modal-unified-base.theme-food-detail .score-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px 28px;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.modal-unified-base.theme-food-detail .score-section .score-label {
  font-size: 1rem;
  color: #888;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.modal-unified-base.theme-food-detail .score-section .score {
  font-size: 3.2rem;
  font-weight: bold;
  color: #c9a96e;
}

/* 注目成分カードシステム */
.modal-unified-base.theme-food-detail .key-ingredients {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .modal-unified-base.theme-food-detail .key-ingredients {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .modal-unified-base.theme-food-detail .key-ingredients {
    grid-template-columns: repeat(3, 1fr);
  }
}

.modal-unified-base.theme-food-detail .key-card {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 14px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.modal-unified-base.theme-food-detail .key-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c9a96e, #d4b673);
}

.modal-unified-base.theme-food-detail .key-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #2c3e50;
  margin-bottom: 6px;
}

.modal-unified-base.theme-food-detail .key-chip {
  font-size: 0.65rem;
  background: #fff6e6;
  border: 1px solid #ffe1b8;
  color: #b46a11;
  border-radius: 12px;
  padding: 3px 8px;
  font-weight: 600;
  white-space: nowrap;
  margin-left: 8px;
}

.modal-unified-base.theme-food-detail .key-description {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
}

.modal-unified-base.theme-food-detail .key-ingredients-list {
  font-size: 0.8rem;
  color: #777;
  margin-top: 6px;
  font-style: italic;
}

/* 成分なしの場合 */
.modal-unified-base.theme-food-detail .key-card.no-ingredients {
  opacity: 0.6;
  border-color: #f0f0f0;
}

.modal-unified-base.theme-food-detail .key-card.no-ingredients::before {
  background: #ddd;
}

/* 全原材料アコーディオンシステム（シンプル化版） */
.modal-unified-base.theme-food-detail .ingredients-accordion {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.4rem;
}

.modal-unified-base.theme-food-detail .accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  min-height: 44px;
  background: #fafafa;
  cursor: pointer;
  user-select: none;
}

.modal-unified-base.theme-food-detail .accordion-header:hover {
  background: #f0f0f0;
}

.modal-unified-base.theme-food-detail .accordion-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0;
}

.modal-unified-base.theme-food-detail .accordion-icon {
  font-size: 1.2rem;
  color: #c9a96e;
}

.modal-unified-base.theme-food-detail .accordion.open .accordion-icon {
  transform: rotate(45deg);
}

.modal-unified-base.theme-food-detail .accordion-content {
  display: none;
  padding: 20px;
  margin: 0 20px;
  font-size: 0.85rem;
  line-height: 1.7;
  color: #555;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}

.modal-unified-base.theme-food-detail .accordion.open .accordion-content {
  display: block;
}

.modal-unified-base.theme-food-detail .ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.modal-unified-base.theme-food-detail .ingredient-item {
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.85rem;
  color: #444;
}

.modal-unified-base.theme-food-detail .ingredient-item:hover {
  background: #f0f0f0;
  border-color: #c9a96e;
  color: #2c2c2c;
}

.modal-unified-base.theme-food-detail .ingredients-note {
  padding: 16px 20px;
  margin: 0;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  background: #fafafa;
}

/* モーダルセクション統一構造（理想デザイン準拠） */
.modal-unified-base.theme-food-detail .modal-section {
  padding: 20px;
  margin-bottom: 0;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}

.modal-unified-base.theme-food-detail .modal-section:last-child {
  border-bottom: none;
}

/* セクションタイトル統一スタイル */
.modal-unified-base.theme-food-detail .modal-section-title {
  font-family: 'Crimson Text', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 0 0 16px 0;
  padding: 0 20px 0 8px;
  border-left: 4px solid #c9a96e;
}

/* テーブル形式栄養成分表示（理想デザイン準拠） */
.modal-unified-base.theme-food-detail .nutrition-table {
  width: calc(100% - 40px);
  margin: 0 20px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.modal-unified-base.theme-food-detail .nutrition-table th,
.modal-unified-base.theme-food-detail .nutrition-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.modal-unified-base.theme-food-detail .nutrition-table th {
  background: #f8f9fa;
  text-align: left;
  color: #666;
  font-weight: 600;
}

.modal-unified-base.theme-food-detail .nutrition-table td {
  color: #333;
  font-weight: 500;
}

.modal-unified-base.theme-food-detail .nutrition-table tr:first-child th:first-child {
  border-top-left-radius: 12px;
}

.modal-unified-base.theme-food-detail .nutrition-table tr:first-child th:last-child {
  border-top-right-radius: 12px;
}

.modal-unified-base.theme-food-detail .nutrition-table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
  border-bottom: none;
}

.modal-unified-base.theme-food-detail .nutrition-table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
  border-bottom: none;
}

.modal-unified-base.theme-food-detail .nutrition-table tr:hover {
  background: #fafafa;
}

/* ===== 新デザイン用レスポンシブ breakpoints ===== */

/* タブレット対応 (768px以下) */
@media (max-width: 768px) {
  .modal-unified-base.theme-food-detail .modal-header {
    padding: 24px 20px;
    flex-direction: column;
    text-align: left;
  }
  
  .modal-unified-base.theme-food-detail .modal-header img {
    align-self: flex-start;
    margin-right: 0;
    margin-bottom: 16px;
    width: 100px;
    height: 100px;
  }
  
  .modal-unified-base.theme-food-detail .modal-header .title {
    font-size: 1.5rem;
  }
  
  .modal-unified-base.theme-food-detail .modal-header .food-brand {
    font-size: 0.7rem;
  }
  
  .modal-unified-base.theme-food-detail .modal-header .food-title {
    font-size: 1.15rem;
  }
  
  .modal-unified-base.theme-food-detail .score-section {
    padding: var(--modal-content-padding-mobile);
  }
  
  .modal-unified-base.theme-food-detail .score-section .score {
    font-size: 2.8rem;
  }
  
  .modal-unified-base.theme-food-detail .key-ingredients {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .modal-unified-base.theme-food-detail .cost-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-unified-base.theme-food-detail .modal-section {
    padding: 16px 0;
  }
}

/* モバイル対応 (480px以下) */
@media (max-width: 768px) {
  .modal-unified-base.theme-food-detail .modal-header {
    padding: 16px;
  }
  
  .modal-unified-base.theme-food-detail .modal-header img {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }
  
  .modal-unified-base.theme-food-detail .modal-header .title {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
  
  .modal-unified-base.theme-food-detail .modal-header .tag {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
  
  .modal-unified-base.theme-food-detail .modal-header .food-brand {
    font-size: 0.65rem;
    margin-bottom: 3px;
  }
  
  .modal-unified-base.theme-food-detail .modal-header .food-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  
  .modal-unified-base.theme-food-detail .score-section {
    padding: 16px var(--modal-element-margin-mobile);
  }
  
  /* モバイル用スペーシング最適化 */
  .modal-unified-base.theme-food-detail .modal-section-title {
    padding: 0 16px 0 8px;
    font-size: 1.1rem;
  }
  
  .modal-unified-base.theme-food-detail .nutrition-table {
    width: calc(100% - 32px);
    margin: 0 16px;
  }
  
  .modal-unified-base.theme-food-detail .key-ingredients {
    padding: 0 16px;
  }
  
  .modal-unified-base.theme-food-detail .cost-cards {
    padding: 0 16px;
  }
  
  .modal-unified-base.theme-food-detail .recommendation-text {
    margin: 0 16px;
    padding: 16px;
  }
  
  .modal-unified-base.theme-food-detail .accordion-content {
    margin: 0 16px;
    padding: 16px;
  }
  
  .modal-unified-base.theme-food-detail .ingredients-list {
    padding: var(--modal-content-padding-mobile);
  }
  
  .modal-unified-base.theme-food-detail .score-section .score {
    font-size: 2rem;
  }
  
  .modal-unified-base.theme-food-detail .score-section .score-label {
    font-size: 0.9rem;
  }
  
  .modal-unified-base.theme-food-detail .nutrition-table {
    font-size: 0.85rem;
  }
  
  .modal-unified-base.theme-food-detail .nutrition-table th,
  .modal-unified-base.theme-food-detail .nutrition-table td {
    padding: 8px;
  }
  
  .modal-unified-base.theme-food-detail .key-card {
    padding: 12px;
  }
  
  .modal-unified-base.theme-food-detail .key-title {
    font-size: 0.85rem;
  }
  
  .modal-unified-base.theme-food-detail .key-chip {
    font-size: 0.65rem;
    padding: 1px 6px;
  }
}

/* モバイル対応 (480px以下) - 理想デザイン準拠 */
@media (max-width: 480px) {
  .modal-unified-base.theme-food-detail .cost-cards {
    grid-template-columns: 1fr;
  }
}

/* コスト表示グリッド（新デザイン用） */
.modal-unified-base.theme-food-detail .cost {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-unified-base.theme-food-detail .cost div {
  flex: 1;
  background: #fafafa;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-size: 0.95rem;
}

.modal-unified-base.theme-food-detail .cost .highlight {
  background: #e6f4ea !important;
  color: #2e7d32;
  font-weight: bold;
}

/* コスト表示レスポンシブ対応 */

@media (max-width: 768px) {
  .modal-unified-base.theme-food-detail .cost {
    flex-direction: column;
    gap: 8px;
  }
  
  .modal-unified-base.theme-food-detail .cost div {
    padding: 12px;
    font-size: 0.85rem;
    min-width: auto;
  }
}

/* ===========================
   統一タグスタイル
   点数内訳タグと製品特徴タグの見た目を統一
=========================== */

/* 統一タグベーススタイル */
.tag-unified {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: #f1f5f9;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2c2c2c;
  white-space: nowrap;
  border: none;
  transition: all 0.2s ease;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* タグコンテナの最適化 */
.modal-unified-base.theme-food-detail .header-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
  justify-content: flex-start;
  align-items: center;
}

/* 点数内訳のタグも同じスタイルに統一 */
.modal-unified-base.theme-food-detail .tags .tag-unified,
.modal-unified-base.theme-logic-modern .tags .tag-unified {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #2d3748;
}

/* タグタイプ別の色分け（オプショナル） */
.tag-unified.tag-score {
  background: #e6f4ea;
  color: #1a5f3f;
}

.tag-unified.tag-feature {
  background: #fef3e2;
  color: #7c4e00;
}

.tag-unified.tag-protein {
  background: #ffe8e8;
  color: #9c1e1e;
}

/* タブレット対応 */
@media (max-width: 768px) {
  .tag-unified {
    padding: 5px 10px;
    font-size: 0.7rem;
    max-width: 150px;
  }
  
  .modal-unified-base.theme-food-detail .header-tags {
    gap: 5px;
  }
}

/* モバイル対応（統合版：360px統合により最適化済み） */
@media (max-width: 480px) {
  .tag-unified {
    padding: 3px 6px;          /* 360px統合: より小さなパディング */
    font-size: 0.6rem;         /* 360px統合: より小さなフォント */
    max-width: 90px;           /* 360px統合: より制限的な幅 */
    min-height: 30px;          /* 360px統合: より小さな最小高 */
    display: inline-block;     /* テキスト省略対応 */
  }
  
  /* 中間サイズでは動的幅調整 */
  @media (min-width: 361px) {
    .tag-unified {
      max-width: calc(50vw - 20px);
    }
  }
  
  .modal-unified-base.theme-food-detail .header-tags {
    gap: 4px;
    margin-top: 6px;
  }
}