/* コンテンツページ共通CSS（お知らせ、閲覧履歴、お気に入り、購入履歴） */

/* ===== コンテンツヘッダー（統一） ===== */
.contents-header {
  margin: 20px 0;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contents-header h1 {
  margin: 0;
  color: #333;
  font-size: 24px;
}

.contents-actions {
  display: flex;
  gap: 10px;
}

/* ===== アイコン ===== */
.bell-icon {
  color: #ffc107;
}

.shopping-cart-icon {
  color: #28a745;
}

.heart-icon {
  color: #dc3545;
}

/* ===== 空状態メッセージ（統一） ===== */
.no-contents {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}

.no-contents i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
  display: block;
}

.no-contents h3 {
  margin: 10px 0;
  font-size: 20px;
  font-weight: 600;
}

.no-contents p {
  margin: 10px 0;
  font-size: 15px;
}

/* ===== コンテンツリスト ===== */
.contents-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ===== 検索結果グリッド ===== */
.search-item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
  padding: 10px;
}

/* 検索結果グリッド内の商品カードのスタイル調整 */
.search-item-grid .product {
  display: block;
  width: 100%;
  margin: 0;
}

.search-item-grid .product-image-wrapper {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
}

.results-count {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.search-keyword {
  color: #d7372f;
  font-weight: 600;
}

/* ===== コンテンツアイテム（統一） ===== */
.content-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: #fff;
  transition: all 0.3s;
  position: relative;
}

.content-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* コンテンツアイテム - リンク */
.content-item-link {
  display: flex;
  align-items: center;
  flex: 1;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.content-item-link:hover {
  text-decoration: none;
  color: inherit;
}

/* コンテンツアイテム - 画像 */
.content-item-image {
  width: 80px;
  height: 80px;
  margin-right: 15px;
  flex-shrink: 0;
}

.content-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

/* コンテンツアイテム - 情報コンテナ */
.content-item-info {
  flex: 1;
}

/* コンテンツアイテム - タイトル・名前 */
.content-item-name,
.content-item-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.content-item-name a {
  color: inherit;
  text-decoration: none;
}

.content-item-name a:hover {
  color: #d7372f;
}

/* コンテンツアイテム - 価格 */
.content-item-price {
  font-size: 14px;
  color: #d7372f;
  font-weight: bold;
  margin-bottom: 5px;
}

.content-item-price a {
  color: inherit;
  text-decoration: none;
}

/* コンテンツアイテム - 日付 */
.content-item-date {
  font-size: 12px;
  color: #666;
}

/* コンテンツアイテム - 販売者情報 */
.content-item-seller {
  font-size: 12px;
  color: #888;
  margin-bottom: 5px;
}

/* コンテンツアイテム - メッセージ */
.content-item-message {
  font-size: 12px;
  color: #555;
  background: #f0f8ff;
  padding: 8px 10px;
  border-radius: 4px;
  margin-top: 8px;
  border-left: 3px solid #28a745;
}

.content-item-message i {
  color: #28a745;
  margin-right: 4px;
}

/* コンテンツアイテム - アクション */
.content-item-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* お知らせ専用 - ヘッダー・本文 */
.content-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
}

.content-item-header .content-item-title {
  flex: 1;
  font-size: 18px;
}

.content-item-icon {
  color: #ffc107;
  font-size: 20px;
}

.content-item-body {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
  padding-left: 30px;
}

/* ===== ボタン ===== */
.btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-secondary {
  background-color: #6c757d;
  color: white;
}

.btn-secondary:hover {
  background-color: #545b62;
}

.btn-primary {
  background-color: #d7372f;
  color: white;
}

.btn-primary:hover {
  background-color: #c02d26;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-danger:hover {
  background-color: #c82333;
}

/* ===== ページネーション ===== */
.pagination {
  text-align: center;
  margin: 30px 0;
}

.pagination a, .pagination span {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  text-decoration: none;
  border: 1px solid #ddd;
  color: #333;
  border-radius: 4px;
}

.pagination a:hover {
  background-color: #f5f5f5;
}

.pagination .current {
  background-color: #d7372f;
  color: white;
  border-color: #d7372f;
}

.pagination .disabled {
  color: #ccc;
  cursor: not-allowed;
}

/* ===== アラート ===== */
.alert {
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-danger {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

/* ===== モバイル対応 ===== */
@media (max-width: 768px) {
  .contents-header {
    margin: 0;
    padding: 15px 10px;
    padding-top: 100px; /* ヘッダー分の上部スペースを確保 */
    background-color: transparent;
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 2px solid #f0f0f0;
  }

  .contents-header h1 {
    font-size: 20px;
    padding-top: 0; /* 上部スペースは.contents-headerで確保するため削除 */
  }

  .contents-actions {
    display: none;
  }

  .content {
    width: 100%;
    padding-left: 0;
    /* margin-top: 100px; */
  }

  .alert {
    margin: 10px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  .no-contents {
    padding: 40px 20px;
  }

  .contents-list {
    gap: 0;
  }

  .search-item-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
    padding: 10px 8px;
  }

  .results-count {
    font-size: 13px;
  }

  .content-item {
    padding: 10px 5px;
    margin-bottom: 0;
    border-radius: 0;
    border-left: none;
    border-right: none;
    border-top: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .content-item:last-child {
    border-bottom: none;
  }

  .content-item-image {
    width: 70px;
    height: 70px;
    margin-right: 10px;
  }

  .content-item-name,
  .content-item-title {
    font-size: 14px;
  }

  .content-item-price {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .alert {
    margin: 5px;
    font-size: 13px;
  }

  .no-contents {
    padding: 40px 15px;
  }

  .content-item {
    padding: 8px 3px;
  }

  .content-item-image {
    width: 60px;
    height: 60px;
    margin-right: 8px;
  }

  .content-item-name,
  .content-item-title {
    font-size: 13px;
  }

  .search-item-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 8px;
  }
}
