body.category-page,
.category-shell {
  background: #fff;
}

.category-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.category-header {
  background: #ececec;
}

.category-header__inner {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  column-gap: 14px;
  min-height: calc(58px + env(safe-area-inset-top, 0px));
  padding: env(safe-area-inset-top, 0px) 31px 0;
}

.category-header__back,
.category-header__search {
  position: relative;
  width: 28px;
  height: 28px;
  color: transparent;
  font-size: 0;
}

.category-header__back::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-left: 2px solid #2f3135;
  border-bottom: 2px solid #2f3135;
  transform: rotate(45deg);
}

.category-header__search::before,
.category-header__search::after {
  content: "";
  position: absolute;
}

.category-header__search::before {
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 2px solid #2f3135;
  border-radius: 50%;
}

.category-header__search::after {
  right: 2px;
  bottom: 4px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: #2f3135;
  transform: rotate(45deg);
  transform-origin: right center;
}

.category-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #2f3135;
}

.category-header__brand img {
  width: 110px;
  height: auto;
  flex: 0 0 auto;
}

.category-header__brand strong {
  min-width: 0;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
  white-space: nowrap;
}

.category-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 4px 16px calc(24px + var(--safe-bottom));
}

.category-list {
  padding-top: 4px;
}

.category-item {
  border-bottom: 1px solid rgba(47, 49, 53, 0.1);
}

.category-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2f3135;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  text-align: left;
}

.category-item__chevron {
  width: 11px;
  height: 11px;
  border-right: 2px solid #2f3135;
  border-bottom: 2px solid #2f3135;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.category-item__trigger[aria-expanded="true"] .category-item__chevron {
  transform: rotate(-135deg);
}

.category-item__panel {
  display: grid;
  gap: 8px;
  padding: 0 0 14px;
}

.category-item__panel[hidden] {
  display: none;
}

.category-item__panel a {
  display: block;
  padding-left: 2px;
  color: #707780;
  font-size: 14px;
  line-height: 1.5;
}

.category-utility-area {
  margin-top: auto;
  padding-top: 22px;
}

.category-utility-list {
  display: grid;
  gap: 12px;
}

.category-utility-card {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 10px;
  align-items: center;
  column-gap: 14px;
  min-height: 60px;
  padding: 0 16px 0 14px;
  border-radius: var(--h5-card-radius);
  background: #f6f7f9;
  color: #2f3135;
}

.category-utility-card__label {
  min-width: 0;
  font-size: 15px;
  line-height: 1.3;
}

.category-utility-card__arrow {
  width: 9px;
  height: 9px;
  border-top: 1.75px solid #2f3135;
  border-right: 1.75px solid #2f3135;
  transform: rotate(45deg);
}

.category-utility-card__icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.category-utility-card--profile .category-utility-card__icon::before,
.category-utility-card--profile .category-utility-card__icon::after,
.category-utility-card--locale .category-utility-card__icon::before,
.category-utility-card--locale .category-utility-card__icon::after {
  content: "";
  position: absolute;
}

.category-utility-card--profile .category-utility-card__icon::before {
  left: 5px;
  top: 1px;
  width: 12px;
  height: 12px;
  border: 1.75px solid #2f3135;
  border-radius: 50%;
}

.category-utility-card--profile .category-utility-card__icon::after {
  left: 1px;
  bottom: 0;
  width: 22px;
  height: 12px;
  border: 1.75px solid #2f3135;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom: 0;
}

.category-utility-card--locale .category-utility-card__icon::before {
  inset: 2px;
  border: 1.75px solid #2f3135;
  border-radius: 50%;
}

.category-utility-card--locale .category-utility-card__icon::after {
  left: 4px;
  top: 11px;
  width: 16px;
  height: 2px;
  background: #2f3135;
  box-shadow: 0 -6px 0 #2f3135, 0 6px 0 #2f3135;
}

.category-utility-card--locale .category-utility-card__icon {
  border-left: 1.75px solid #2f3135;
  border-right: 1.75px solid #2f3135;
  border-radius: 50%;
}

@media (max-width: 359px) {
  .category-header__inner,
  .category-main {
    padding-inline: 14px;
  }

  .category-header__brand img {
    width: 98px;
  }

  .category-header__brand strong {
    font-size: 17px;
  }

  .category-item__trigger {
    min-height: 60px;
    font-size: 17px;
  }

  .category-utility-list {
    gap: 10px;
  }

  .category-utility-area {
    padding-top: 18px;
  }

  .category-utility-card {
    min-height: 56px;
    padding-inline: 14px;
    column-gap: 12px;
  }

  .category-utility-card__label {
    font-size: 14px;
  }
}
