/* ===========================
   商品一覧ページ
   =========================== */

/* ===========================
   商品一覧セクション
   =========================== */
.products-section {
  padding: 80px 0 100px;
}

/* ===========================
   カテゴリフィルター
   =========================== */
.products-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

.products-filter__btn {
  font-family: 'M PLUS 1', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 10px 24px;
  border-radius: 999px;
  border: 2px solid var(--cyan);
  background: var(--white);
  color: var(--cyan);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.products-filter__btn:hover {
  background: var(--cyan);
  color: var(--white);
}

.products-filter__btn.is-active {
  background: var(--cyan);
  color: var(--white);
}

/* ===========================
   商品グリッド
   =========================== */
.products-grid {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  column-gap: 24px;
  row-gap: 36px;
  margin-bottom: 60px;
}

.products-grid > li {
  width: calc((100% - 48px) / 3);
  max-width: 333px;
}

/* ===========================
   レスポンシブ
   =========================== */
@media (max-width: 1100px) {
  .products-grid > li {
    width: calc((100% - 24px) / 2);
    max-width: none;
  }
}

@media (max-width: 767px) {
  .products-section {
    padding: 60px 0 80px;
  }

  .products-filter {
    gap: 8px;
    margin-bottom: 32px;
  }

  .products-filter__btn {
    font-size: 13px;
    padding: 8px 16px;
  }

  .products-grid {
    column-gap: 16px;
    row-gap: 24px;
    margin-bottom: 48px;
  }

  .products-grid > li {
    width: 100%;
    max-width: none;
  }

}
