.mall-cat-page {
  background: #fff;
}

.mall-crumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem 0;
}

.mall-crumb img {
  width: 1.4rem;
  height: 1.4rem;
  object-fit: contain;
  filter: invert(38%) sepia(82%) saturate(2476%) hue-rotate(337deg) brightness(101%) contrast(101%);
}

.mall-crumb p {
  color: var(--h5-muted);
  font-size: 1rem;
  line-height: 1.6rem;
}

.mall-crumb a {
  color: var(--h5-muted);
}

.mall-cat-head {
  padding: 1.2rem 4.7rem 0;
  text-align: center;
}

.mall-cat-head h1 {
  color: #333;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.8rem;
}

.mall-cat-head p {
  margin-top: 0.8rem;
  color: var(--h5-muted);
  font-size: 1.2rem;
  line-height: 2.2rem;
}

.mall-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 2rem 0;
}

.mall-cat-grid.is-empty,
.mall-cat-grid.is-loading {
  display: block;
  color: var(--h5-muted);
  font-size: 1.2rem;
  line-height: 2.2rem;
  text-align: center;
}

.mall-prod-card {
  display: flex;
  flex-direction: column;
  min-height: 27.1rem;
  padding: 1rem 0.8rem 1.2rem;
  background: #fff;
  border: 0.1rem solid var(--h5-line);
  border-radius: 0.8rem;
}

.mall-prod-card .media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.7rem;
}

.mall-prod-card .media img {
  display: block;
  width: 11.4rem;
  height: 7.7rem;
  object-fit: contain;
}

.mall-prod-card h3 {
  min-height: 4rem;
  margin-top: 1rem;
  color: #333;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2rem;
}

.mall-prod-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.mall-prod-price .label {
  color: var(--h5-muted);
  font-size: 1rem;
  line-height: 2rem;
  flex-shrink: 0;
}

.mall-prod-price .value {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.2rem;
  max-width: 100%;
  min-width: 0;
}

.mall-prod-price .amount {
  color: var(--h5-primary);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.4rem;
}

.mall-prod-price .tax {
  color: #333;
  font-size: 1rem;
  line-height: 2rem;
  flex-shrink: 0;
}

.mall-prod-card .btn-detail,
.mall-prod-card .btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.6rem;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1.4rem;
}

.mall-prod-card .btn-detail {
  margin-top: auto;
  border: 0.1rem solid var(--h5-primary);
  color: #333;
  background: #fff;
}

.mall-prod-card .btn-cart {
  margin-top: 0.8rem;
  background: linear-gradient(180deg, #f86864 0%, #ff4d47 100%);
  color: #fff;
}

.mall-cat-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  padding: 2rem 2rem 0;
}

.mall-cat-pager a,
.mall-cat-pager span.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  font-size: 1.4rem;
  line-height: 2rem;
}

.mall-cat-pager .prev {
  background: var(--h5-primary);
  color: #fff;
}

.mall-cat-pager .next {
  background: #fff;
  border: 0.1rem solid var(--h5-primary);
  color: #333;
}

.mall-cat-pager .is-off {
  pointer-events: none;
  opacity: 0.4;
}

.mall-cat-pager .status {
  color: #333;
  font-size: 1.4rem;
  line-height: 2rem;
}

.mall-cat-pager .status b {
  color: var(--h5-primary);
  font-weight: 700;
}

.mall-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--h5-dock-h) + 2rem);
  z-index: 50;
  max-width: 30rem;
  padding: 1rem 1.6rem;
  border-radius: 0.8rem;
  background: rgba(26, 26, 26, 0.88);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.8rem;
  text-align: center;
  transform: translateX(-50%);
}
