.discover-shops-container {
  max-width: 1160px;
  padding: 30px 10px 80px;
  margin: 0 auto;
  width: 100%;
}

.discover-shops-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 36px;

  @media (max-width: 768px) {
    font-size: 24px;
  }
}

.discover-shop-list {
  padding: 50px 50px 30px;
  margin-top: 80px;
  background-color: #f2f5f6;
  border-top: 2px solid #333;

  @media (max-width: 768px) {
    padding: 30px 20px;
    margin-top: 30px;
  }

  .discover-shop-list-items {
    display: flex;
    flex-wrap: wrap;
  }

  .discover-shop-list-item {
    width: 50%;
    margin-bottom: 20px;
    color: #333;

    @media (max-width: 768px) {
      font-size: 13px;
    }

    &:hover {
      color: #2c9cdb;
    }
  }
}

/* Shop Categories Grid Layout */
.shop-categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;

  @media (max-width: 768px) {
    margin-bottom: 0;
    gap: 10px;
  }
}

.shop-category-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px; /* 高さを大きくして縦レイアウトに対応 */
  flex: 0 0 calc(8.333% - 17px); /* 12列分の1から隙間を引いた値 */
  min-width: 120px; /* 最小幅を大きく */
  background: transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 15px;

  @media (max-width: 1024px) {
    flex: 0 0 calc(16.666% - 13px); /* 6列分の1 */
    min-width: 100px;
    height: 75px;
  }

  @media (max-width: 768px) {
    flex: 0 0 calc(25% - 8px); /* 4列分の1 */
    height: 70px;
    margin-bottom: 10px;
    border-radius: 6px;
    min-width: 80px;
  }

  @media (max-width: 480px) {
    flex: 0 0 calc(33.333% - 7px); /* 3列分の1に変更 */
    height: 65px;
    min-width: 70px;
    margin-bottom: 8px;
  }
}

/* Active category styling */
.shop-category-item.active {
  background: #eff7fc;
}

.shop-category-item.active a {
  font-weight: 600;
}

.shop-category-item.active a i {
  background-color: #2c9cdb; /* アイコンの背景色を変更 */
  color: #ffffff; /* アイコンの色を白に変更 */
}

.shop-category-item a {
  display: flex;
  flex-direction: column; /* 縦方向に配置 */
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  color: #495057;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  transition: color 0.3s ease;
  gap: 4px; /* アイコンとテキストの間隔 */

  @media (max-width: 768px) {
    font-size: 10px;
    padding: 6px;
    gap: 3px;
  }

  @media (max-width: 480px) {
    font-size: 9px;
    padding: 4px;
    gap: 2px;
  }
}

.shop-category-item a i {
  font-size: 18px; /* アイコンサイズ */
  margin-bottom: 2px;
  padding: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #dfdfdf;

  @media (max-width: 768px) {
    font-size: 16px;
  }

  @media (max-width: 480px) {
    font-size: 14px;
  }
}

.shop-category-item a:hover {
  color: #2c9cdb;
  text-decoration: none;
}
