@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700;800&display=swap');

body.cg-page {
  font-family: 'Manrope', sans-serif;
  background: #ffffff;
}

.container {
  width: 96%;
  max-width: 1700px;
}

.border-header {
  border-top: 1px solid #ddd;
}

.categorylist-page {
  padding: 26px 0 30px;
}

.categorylist-page h1 {
  margin: 0;
  text-align: center;
  color: #111;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
}

.categorylist-page h2 {
  margin: 8px 0 24px;
  text-align: center;
  color: var(--primary-color);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.categories-page {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 18px;
}

.category-box-5 {
  width: calc(25% - 14px);
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}

.category-img-5 {
  height: 170px;
  border-radius: 10px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.category-img-5 img {
  max-width: 72%;
  max-height: 140px;
  width: auto;
  object-fit: contain;
}

.category-name-5 {
  margin-top: 12px;
  min-height: 44px;
  text-align: left;
}

.category-name-5 a {
  color: #111;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
  text-decoration: none;
}

.category-name-5 a:hover {
  color: var(--primary-color);
}

.category-stores-5 {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.category-stores-5 a {
  width: calc(33.333% - 7px);
  height: 52px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.category-stores-5 a img {
  max-width: 96%;
  max-height: 44px;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 1000px) {
  .category-box-5 {
    width: calc(33.333% - 12px);
  }
}

@media screen and (max-width: 760px) {
  .categorylist-page h1 {
    font-size: 28px;
  }

  .categorylist-page h2 {
    font-size: 20px;
  }

  .category-box-5 {
    width: calc(50% - 9px);
  }

  .category-img-5 {
    height: 140px;
  }

  .category-img-5 img {
    max-height: 112px;
  }

  .category-name-5 a {
    font-size: 19px;
  }
}

@media screen and (max-width: 520px) {
  .category-box-5 {
    width: 100%;
  }
}

@import url('../assets/css/theme.css');



