/* =========================
   ヘッダー全体
========================= */
header {
  height: 90px;   /* 目安。80〜110でもOK */
}

/* ヘッダーの横幅をメインと揃えるためのラッパー */
.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

/* カテゴリーバーとメインの間の余白確保 */
.site-header {
  margin-bottom: 30px;
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 8px 20px;
  width: 100%;
  gap: 32px;
}

/* ロゴ */
.header-logo {
  margin-top: 0;
}

.header-logo img {
  height: 60px;
  display: block;
}

/* 検索ボックス（中央） */
.header-search {
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
}

.header-search input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* 右側エリア */
.header-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}


/* =========================
   ログイン・お気に入り・カート
========================= */

.header-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

/* 下線完全削除 */
.header-item,
.header-item a {
  text-decoration: none !important;
  border-bottom: none !important;
  color: #333;
}

/* アイコン */
.header-item .icon {
  font-size: 20px;
  line-height: 1;
}

/* 文字 */
.header-item .text {
  font-size: 14px;
  margin-top: 3px;
}


/* =========================
   SNSアイコン（横並び）
========================= */

.sns-icons {
  display: flex;
  flex-direction: row;        /* ← 横並び */
  align-items: center;
  gap: 10px;
  margin-left: 6px;
}

.sns-icons a {
  display: flex;
  text-decoration: none !important;
  border-bottom: none !important;
}

.sns-icons img {
  width: 22px;
  height: 22px;
}


/* =========================
   絞り込みボタン
========================= */

.filter-button {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}


/* =========================
   ハンバーガー
========================= */

.hamburger {
  cursor: pointer;
}

/* header内の layout-wrapper は高さを持たせない */
.site-header .layout-wrapper {
  min-height: 0 !important;
  display: flex;
  align-items: center;
}


/* =========================
   レスポンシブ
========================= */

@media screen and (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .header-right {
    justify-content: space-between;
    margin-left: 0;
    margin-top: 10px;
  }

  .header-search {
    width: 100%;
  }
}

/* ヘッダーの暴走を強制的に止める */
header {
  min-height: auto !important;
  height: auto !important;
}

/* 上に変な余白が付かないよう強制リセット */
.header-inner {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* body, main への不要な余白禁止 */
body,
main,
.layout-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
