@font-face {
  font-family: "Fact";
  src: url("../fonts/Fact-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: "Fact", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

body {
  background: #f5f5f5;
}

.header {
  font-family: "Fact", sans-serif;
  position: relative;
  z-index: 100;
}
.header__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.header__promo {
  background-color: #020203;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .header__promo {
    height: 24px;
  }
}
.header__promo-img {
  height: 100%;
  width: auto;
  object-fit: contain;
}
.header__utility {
  background-color: #1e1e1e;
}
@media (max-width: 1199px) {
  .header__utility {
    display: none;
  }
}
.header__utility .header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
  padding-bottom: 4px;
}
.header__lang-wrap {
  position: relative;
}
.header__lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  list-style: none;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 4px 0;
  min-width: 100%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.header__lang-item {
  display: block;
  width: 100%;
  padding: 8px 16px;
  text-align: left;
  color: #221f1f;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  transition: background-color 0.15s ease;
}
.header__lang-item:hover {
  background-color: #f2f4f8;
}
.header__lang-wrap .header__lang img {
  transition: transform 0.2s ease;
}
.header__lang-wrap.is-open .header__lang img {
  transform: rotate(180deg);
}
.header__contact-wrap {
  position: relative;
}
.header__contact-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  min-width: 217px;
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.header__contact-dropdown-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
.header__contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #74777c;
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}
.header__contact-link img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.header__contact-link:hover span {
  text-decoration: underline;
}
.header__contact-info {
  color: #74777c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.header__contact-wrap .header__arrow {
  transition: transform 0.2s ease;
}
.header__contact-wrap.is-open .header__arrow {
  transform: rotate(180deg);
}
.header__location-wrap {
  position: relative;
}
.header__location-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 4px 0;
  width: 420px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
}
.header__location-current {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 16px;
  color: #221f1f;
  white-space: nowrap;
}
.header__location-current-city {
  font-weight: 700;
}
.header__location-search-wrap {
  padding: 0 16px 16px;
}
.header__location-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 10px 16px;
  background-color: #f2f4f8;
  border-radius: 8px;
}
.header__location-search-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-size: 14px;
  color: #221f1f;
  font-family: "Fact", sans-serif;
}
.header__location-search-input::placeholder {
  color: #555770;
}
.header__location-search-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(35%) sepia(5%) saturate(500%) hue-rotate(314deg) brightness(90%);
}
.header__location-cities {
  display: flex;
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 8px;
}
.header__location-col {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.header__location-item {
  display: block;
  width: 100%;
  padding: 8px 16px;
  text-align: left;
  color: #221f1f;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background-color 0.15s ease;
}
.header__location-item:hover {
  background-color: #f2f4f8;
}
.header__location-hint {
  padding: 16px 16px 8px;
  font-size: 12px;
  line-height: 16px;
  color: #766f6e;
  white-space: normal;
  margin: 0;
}
.header__location-wrap .header__arrow {
  transition: transform 0.2s ease;
}
.header__location-wrap.is-open .header__arrow {
  transform: rotate(180deg);
}
.header__location, .header__contact {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.header__location span, .header__contact span {
  transition: color 0.2s ease;
}
.header__location > img:first-child, .header__contact > img:first-child {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}
.header__location-wrap:hover .header__location span, .header__contact-wrap:hover .header__contact span, .header__lang-wrap:hover .header__lang span {
  color: #f96332;
}
.header__location-wrap:hover .header__location > img:first-child, .header__contact-wrap:hover .header__contact > img:first-child {
  filter: invert(52%) sepia(97%) saturate(512%) hue-rotate(337deg) brightness(101%);
}
.header__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.header__utility-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header__socials {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__social-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header__social-link:hover .header__social-icon {
  filter: invert(50%) sepia(90%) saturate(800%) hue-rotate(340deg) brightness(110%);
}
.header__social-link--lg .header__social-icon {
  width: 32px;
  height: 32px;
}
.header__social-icon {
  display: block;
  width: 24px;
  height: 24px;
  transition: filter 0.2s ease;
}
.header__main {
  background-color: #ffffff;
  position: relative;
  z-index: 100;
}
@media (min-width: 1200px) {
  .header__main {
    height: 128px;
  }
  .header__main .header__container {
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 16px;
  }
}
@media (max-width: 1199px) {
  .header__main .header__container {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .header__main .header__container {
    padding: 16px;
  }
}
.header__nav {
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 1199px) {
  .header__nav {
    display: none;
  }
}
.header__nav-link {
  pointer-events: auto;
  color: #221f1f;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.header__nav-link:hover {
  color: #f96332;
}
.header__inner {
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 1200px) {
  .header__inner {
    gap: 32px;
  }
}
@media (max-width: 1199px) {
  .header__inner {
    gap: 16px;
  }
}
.header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__burger img {
  width: 24px;
  height: 24px;
}
@media (max-width: 1199px) {
  .header__burger {
    display: flex;
  }
}
.header__logo {
  display: block;
  flex-shrink: 0;
}
.header__logo-img {
  display: block;
}
@media (min-width: 1200px) {
  .header__logo-img {
    width: 84px;
    height: 96px;
  }
}
@media (max-width: 1199px) {
  .header__logo-img {
    width: 32px;
    height: 36px;
  }
}
.header__categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #f96332;
  border-radius: 8px;
  height: 48px;
  padding: 0 24px;
  flex-shrink: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.2s ease;
}
.header__categories img {
  width: 24px;
  height: 24px;
}
.header__categories:hover {
  background-color: rgb(247.8398104265, 68.83507109, 10.3601895735);
}
@media (max-width: 1199px) {
  .header__categories {
    display: none;
  }
}
.header__search {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f2f4f8;
  border-radius: 8px;
  padding: 0 16px;
  flex: 1;
  min-width: 0;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.header__search:hover {
  border-color: #18181b;
}
@media (min-width: 1200px) {
  .header__search {
    height: 48px;
  }
}
@media (max-width: 1199px) {
  .header__search {
    height: 32px;
  }
}
.header__search-input {
  flex: 1;
  min-width: 0;
  background: none;
  border: none;
  outline: none;
  font-family: "Fact", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #555770;
}
.header__search-input::placeholder {
  color: #555770;
}
.header__search-input::-webkit-search-decoration, .header__search-input::-webkit-search-cancel-button, .header__search-input::-webkit-search-results-button, .header__search-input::-webkit-search-results-decoration {
  display: none;
}
.header__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.header__search-btn img {
  width: 24px;
  height: 24px;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
.header__lang {
  display: flex;
  align-items: center;
  color: #221f1f;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.header__lang span {
  transition: color 0.2s ease;
}
.header__lang img {
  width: 24px;
  height: 24px;
}
@media (max-width: 767px) {
  .header__lang {
    display: none;
  }
}
.header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
.header__badge {
    position: absolute;
    top: -6px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    background: #F96332;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}
.header__action-btn:hover .header__action-icon {
  filter: invert(50%) sepia(90%) saturate(800%) hue-rotate(340deg) brightness(110%);
}
@media (max-width: 767px) {
  .header__action-btn--no-mobile {
    display: none;
  }
}
.header__action-icon {
  display: block;
  width: 24px;
  height: 24px;
  transition: filter 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: "Fact", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.footer {
  font-family: "Fact", sans-serif;
  background-color: #ffffff;
}
.footer__container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer__top {
  border-bottom: 32px solid #f5f5f4;
}
.footer__top .footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer__group {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 438px;
  width: 100%;
}
.footer__section-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}
.footer__section-title {
  font-size: 16px;
  font-weight: 700;
  color: #221f1f;
  line-height: 1;
}
.footer__section-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #555770;
  line-height: 1;
}
.footer__social-list {
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  padding: 12px 0;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.footer__social-link img {
  width: 40px;
  height: 40px;
  transition: filter 0.2s ease;
}
.footer__social-link:hover img {
  filter: brightness(0) saturate(0) brightness(0.13);
}
.footer__phone-wrap {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 0;
}
.footer__phone-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.footer__phone-numbers {
  font-size: 18px;
  font-weight: 400;
  color: #221f1f;
  line-height: 1;
  white-space: nowrap;
}
.footer__subscribe-form {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
}
.footer__input {
  flex: 2;
  min-width: 0;
  height: 40px;
  padding: 0 16px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  font-family: "Fact", sans-serif;
  font-size: 14px;
  color: #766f6e;
  outline: none;
  transition: border-color 0.2s ease;
}
.footer__input::placeholder {
  color: #766f6e;
}
.footer__input:hover {
  border-color: #18181b;
}
.footer__input:focus {
  border-color: #f96332;
}
.footer__btn {
  flex: 1;
  height: 40px;
  padding: 8px 10px;
  background-color: #f96332;
  border-radius: 8px;
  font-family: "Fact", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  line-height: 20px;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.footer__btn:hover {
  background-color: #fc9e75;
}
.footer__divider {
  height: 12px;
  background-color: #f96332;
}
.footer__nav-section .footer__container {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  font-family: "Fact", sans-serif;
  text-align: left;
  cursor: default;
  pointer-events: none;
}
.footer__col-title {
  font-size: 20px;
  font-weight: 700;
  color: #221f1f;
  line-height: 1;
  flex: 1;
}
.footer__col-arrow {
  display: none;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.footer__col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer__col-link {
  font-size: 16px;
  font-weight: 400;
  color: #555770;
  line-height: 1;
  transition: color 0.2s ease;
}
.footer__col-link:hover {
  color: #f96332;
}
.footer__copyright-bar {
  border-top: 2px solid #e3e3e3;
  border-bottom: 2px solid #e3e3e3;
}
.footer__copyright-bar .footer__container {
  padding-top: 16px;
  padding-bottom: 16px;
}
.footer__copyright-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.footer__logo-text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.footer__logo-teplo {
  color: #ff8c00;
}
.footer__logo-kram {
  color: #008000;
}
.footer__copyright-text {
  font-size: 14px;
  color: #555770;
  line-height: 20px;
}
.footer__partner-link {
  font-size: 14px;
  color: #f96332;
  line-height: 20px;
  transition: opacity 0.2s ease;
}
.footer__partner-link:hover {
  opacity: 0.8;
}
.footer__partner-caption {
  font-size: 14px;
  color: #555770;
  line-height: 20px;
}
.footer__cities-wrap .footer__container {
  position: relative;
  padding-top: 8px;
  padding-bottom: 32px;
}
.footer__cities-text {
  font-size: 14px;
  color: #555770;
  line-height: 20px;
  padding-right: 24px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.footer__cities-text.is-expanded {
  display: block;
  overflow: visible;
}
.footer__cities-toggle {
  position: absolute;
  right: 32px;
  top: 16px;
  width: 9px;
  height: 5px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.footer__cities-toggle img {
  width: 9px;
  height: 5px;
  display: block;
}
.footer__cities-toggle.is-expanded {
  transform: rotate(180deg);
}
@media (max-width: 1199px) {
  .footer__container {
    padding: 0 24px;
  }
  .footer__top {
    border-bottom: 16px solid #f5f5f4;
  }
  .footer__top .footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "social contacts" "subscribe subscribe";
    gap: 16px 24px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .footer__group {
    height: auto;
  }
  .footer__group--social {
    grid-area: social;
    justify-content: space-between;
    gap: 8px;
  }
  .footer__group--contacts {
    grid-area: contacts;
    justify-content: center;
    gap: 8px;
  }
  .footer__group--subscribe {
    grid-area: subscribe;
    max-width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
  .footer__section-head {
    height: auto;
    gap: 4px;
    justify-content: flex-start;
  }
  .footer__group--subscribe .footer__section-head {
    flex: 1;
  }
  .footer__group--subscribe .footer__subscribe-form {
    flex: 1;
  }
  .footer__social-list {
    height: auto;
  }
  .footer__phone-wrap {
    height: auto;
    gap: 8px;
  }
  .footer__phone-icon {
    width: 32px;
    height: 32px;
  }
  .footer__phone-numbers {
    font-size: 14px;
    white-space: normal;
  }
  .footer__subscribe-form {
    height: auto;
    gap: 8px;
  }
  .footer__input {
    flex: 2;
    min-width: 0;
  }
  .footer__nav-section .footer__container {
    flex-direction: column;
    gap: 0;
    padding-top: 24px;
    padding-bottom: 0;
  }
  .footer__col {
    gap: 0;
    border-bottom: 1px solid #766f6e;
    padding: 16px 0;
  }
  .footer__col:first-child {
    padding-top: 0;
  }
  .footer__col:last-child {
    border-bottom: none;
    padding-bottom: 24px;
  }
  .footer__col-header {
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    pointer-events: auto;
  }
  .footer__col-arrow {
    display: block;
    transform: rotate(180deg);
  }
  .footer__col.is-open .footer__col-arrow {
    transform: rotate(0deg);
  }
  .footer__col-list {
    display: none;
    padding-top: 16px;
  }
  .footer__col.is-open .footer__col-list {
    display: flex;
  }
  .footer__copyright-bar {
    border-top: 1px solid #766f6e;
    border-bottom: 1px solid #766f6e;
  }
  .footer__copyright-text, .footer__partner-link, .footer__partner-caption {
    font-size: 12px;
  }
  .footer__cities-wrap .footer__container {
    padding-top: 8px;
    padding-bottom: 24px;
  }
  .footer__cities-text {
    font-size: 12px;
    line-height: 16px;
  }
  .footer__cities-toggle {
    right: 24px;
  }
}
@media (max-width: 767px) {
  .footer__container {
    padding: 0 16px;
  }
  .footer__top .footer__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
  }
  .footer__group {
    gap: 8px;
    width: 100%;
  }
  .footer__group--subscribe {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
  }
  .footer__section-head {
    gap: 4px;
  }
  .footer__section-subtitle {
    color: #766f6e;
  }
  .footer__section-subtitle--hours {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .footer__group--subscribe .footer__section-head, .footer__group--subscribe .footer__subscribe-form {
    width: 100%;
  }
  .footer__subscribe-form {
    gap: 8px;
  }
  .footer__input {
    flex: 1;
    min-width: 0;
  }
  .footer__btn {
    flex: 1;
  }
  .footer__copyright-bar {
    border-top-color: #8b8080;
    border-bottom-color: #8b8080;
  }
  .footer__cities-toggle {
    right: 16px;
  }
}

.cat-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
}
.cat-menu-overlay.is-visible {
  display: block;
}
@media (max-width: 767px) {
  .cat-menu-overlay {
    display: none !important;
  }
}

.cat-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
}
.cat-menu.is-open {
  display: block;
}
@media (max-width: 767px) {
  .cat-menu {
    position: fixed;
    top: 92px;
    bottom: 0;
    overflow-y: auto;
    z-index: 1000;
  }
}
.cat-menu__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 24px 32px;
  background: #ffffff;
  border-top: 1px solid #e3e3e3;
  border-radius: 0 0 8px 8px;
  display: flex;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media (max-width: 1199px) {
  .cat-menu__wrap {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .cat-menu__wrap {
    flex-direction: column;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    min-height: calc(100vh - 92px);
  }
}
.cat-menu__left {
  flex: 0 0 342px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}
@media (max-width: 767px) {
  .cat-menu__left {
    flex: 1;
    border-radius: 0;
  }
}
.cat-menu__item {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Fact", sans-serif;
  transition: background-color 0.15s ease;
}
.cat-menu__item:hover, .cat-menu__item.is-active {
  background: #fff3ed;
}
.cat-menu__item.is-active .cat-menu__icon,
.cat-menu__item.is-active .cat-menu__arrow
{
    filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.cat-menu__item.is-active .cat-menu__item-text {
    color: #f96332;
    font-weight: 700;
}

.cat-menu__icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  flex-shrink: 0;
  display: block;
  object-fit: contain;
  overflow: hidden;
}
.cat-menu__item-text {
  flex: 1;
  font-size: 16px;
  font-weight: 400;
  color: #221f1f;
  font-family: "Fact", sans-serif;
  white-space: nowrap;
}
.cat-menu__arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transform: rotate(-90deg);
}
.cat-menu__right {
  flex: 1;
  min-width: 0;
  padding: 16px 0;
  min-height: 398px;
}
@media (max-width: 767px) {
  .cat-menu__right {
    display: none;
    width: 100%;
    padding: 0;
    min-height: 0;
  }
}
.cat-menu__back {
  display: none;
}
@media (max-width: 767px) {
  .cat-menu__back {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: none;
    border-bottom: 1px solid #e3e3e3;
    cursor: pointer;
    font-family: "Fact", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #221f1f;
    text-align: left;
  }
}
.cat-menu__back-arrow {
  width: 24px;
  height: 24px;
  transform: rotate(90deg);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cat-menu.cat-menu--show-sub .cat-menu__left {
    display: none;
  }
  .cat-menu.cat-menu--show-sub .cat-menu__right {
    display: flex;
    flex-direction: column;
  }
}
.cat-menu__sub {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.cat-menu__sub.is-active {
  display: flex;
}
.cat-menu__sub-cols {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cat-menu__sub-cols {
    flex-direction: column;
  }
}
.cat-menu__sub-col {
  flex: 0 0 260px;
}
@media (max-width: 767px) {
  .cat-menu__sub-col {
    flex: 1;
  }
}
.cat-menu__sub-col--wide {
  flex: 0 0 315px;
}
@media (max-width: 767px) {
  .cat-menu__sub-col--wide {
    flex: 1;
  }
}
.cat-menu__group-title {
  display: flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #221f1f;
  font-family: "Fact", sans-serif;
}
.cat-menu__group-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 8px;
}
.cat-menu__link {
  display: block;
  padding: 0 16px;
  font-size: 16px;
  font-weight: 400;
  color: #221f1f;
  font-family: "Fact", sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}
@media (max-width: 767px) {
  .cat-menu__link {
    white-space: normal;
    line-height: 1.4;
    padding: 4px 16px;
  }
}
.cat-menu__link:hover {
  color: #f96332;
}
.cat-menu__heading-link {
  display: flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 700;
  color: #221f1f;
  font-family: "Fact", sans-serif;
  text-decoration: none;
  transition: color 0.15s ease;
}
.cat-menu__heading-link:hover {
  color: #f96332;
}
.cat-menu__banners {
  display: flex;
  gap: 16px;
  padding: 0 16px;
  flex-wrap: wrap;
}
.cat-menu__banner {
  width: 87px;
  height: 44px;
  flex-shrink: 0;
  background-color: #f0e6e5;
  border-radius: 4px;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu {
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 999;
  background-color: #ffffff;
  border-top: 1px solid #e3e3e3;
  font-family: "Fact", sans-serif;
  display: none;
}
.mobile-menu.is-open {
  display: block;
}
@media (min-width: 1200px) {
  .mobile-menu {
    display: none !important;
  }
}
.mobile-menu__inner {
  display: flex;
  min-height: 100%;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .mobile-menu__inner {
    flex-direction: row;
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .mobile-menu__inner {
    flex-direction: column;
  }
}
.mobile-menu__col {
  flex: 1;
  min-width: 0;
}
.mobile-menu__categories-wrap {
  padding: 16px;
  background-color: #ffffff;
}
.mobile-menu__categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  background-color: #f96332;
  border-radius: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Fact", sans-serif;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.mobile-menu__categories img {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}
.mobile-menu__categories:hover {
  background-color: #e0572c;
}
.mobile-menu__item {
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: #ffffff;
  width: 100%;
  gap: 8px;
}
.mobile-menu__item--border-top {
  border-top: 1px solid #f5f5f5;
}
.mobile-menu__item--border-bottom {
  border-bottom: 1px solid #f5f5f5;
}
.mobile-menu__icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}
.mobile-menu__arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transform: rotate(-90deg);
}
.mobile-menu__item-text {
  font-size: 16px;
  font-weight: 400;
  color: #221f1f;
  font-family: "Fact", sans-serif;
}
.mobile-menu__item-text--sm {
  font-size: 14px;
}
.mobile-menu__item-text--gray {
  color: #8b8080;
}
.mobile-menu__user {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  color: #8b8080;
  font-family: "Fact", sans-serif;
  line-height: normal;
}
.mobile-menu__user span {
  display: block;
}
.mobile-menu__section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background-color: #ffffff;
  border-top: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
}
.mobile-menu__section-title {
  font-weight: 500;
  color: #221f1f;
  font-family: "Fact", sans-serif;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .mobile-menu__section-title {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .mobile-menu__section-title {
    font-size: 16px;
  }
}
.mobile-menu__nav-link {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #8b8080;
  font-family: "Fact", sans-serif;
  text-decoration: none;
  transition: color 0.15s ease;
}
.mobile-menu__nav-link:hover {
  color: #f96332;
}
.mobile-menu__simple-link {
  display: flex;
  align-items: center;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  color: #8b8080;
  font-family: "Fact", sans-serif;
  text-decoration: none;
  background-color: #ffffff;
  transition: color 0.15s ease;
}
.mobile-menu__simple-link:hover {
  color: #f96332;
}
.mobile-menu__socials-block {
  background-color: #ffffff;
}
.mobile-menu__socials-label {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  color: #221f1f;
  font-family: "Fact", sans-serif;
}
.mobile-menu__socials-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 16px;
  border-bottom: 1px solid #f5f5f5;
}
.mobile-menu__social-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mobile-menu__social-link img {
  display: block;
}
.mobile-menu__contact-title {
  display: flex;
  align-items: center;
  padding: 16px;
  font-size: 14px;
  font-weight: 400;
  color: #221f1f;
  font-family: "Fact", sans-serif;
}
.mobile-menu__contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px 16px;
}
.mobile-menu__contact-link {
  display: flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
}
.mobile-menu__contact-link img {
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.mobile-menu__contact-link span {
  font-size: 14px;
  font-weight: 400;
  color: #74777c;
  font-family: "Fact", sans-serif;
  white-space: nowrap;
}
.mobile-menu__contact-link:hover span {
  text-decoration: underline;
}
.mobile-menu__contact-info {
  font-size: 14px;
  font-weight: 400;
  color: #74777c;
  font-family: "Fact", sans-serif;
  line-height: 1.4;
  margin: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-head__title {
  font-size: 22px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  margin: 0;
}
.section-head__link {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  font-size: 20px;
  color: #221f1f;
  transition: color 0.2s ease;
  line-height: 1.3;
}
.section-head__link:hover {
  color: #f96332;
}
.section-head__link:hover .section-head__link-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.section-head__link-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: filter 0.2s ease;
}
@media (max-width: 1199px) {
  .section-head__title {
    font-size: 16px;
  }
  .section-head__link {
    font-size: 16px;
  }
}

.slider {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
}
.slider__track {
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease;
}
.slider__btn {
  position: absolute;
  top: 50%;
  margin: 0 16px;
  transform: translateY(-50%);
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}
.slider__btn:hover {
  background: #fff3ed;
}
.slider__btn--prev {
  left: 0;
}
.slider__btn--prev .slider__btn-icon {
  transform: rotate(180deg);
}
.slider__btn--next {
  right: 0;
}
.slider__btn--lg {
  width: 48px;
  height: 48px;
}
.slider__btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(48%) sepia(6%) saturate(642%) hue-rotate(314deg) brightness(93%);
}
@media (max-width: 1199px) {
  .slider {
    overflow-x: auto;
    scrollbar-width: none;
    margin-left: -16px;
    margin-right: -16px;
  }
  .slider::-webkit-scrollbar {
    display: none;
  }
  .slider__track {
    gap: 8px;
    width: max-content;
  }
  .slider__btn {
    display: none;
  }
}

.product-card {
  flex: 0 0 329px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
  position: relative;
}
.product-card:hover, .product-card--hovered {
  border-radius: 8px 8px 0 0;
  z-index: 10;
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.05);
  clip-path: inset(0 -20px -20px -20px);
}
.product-card__img-wrap {
  position: relative;
  height: 297px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.product-card__badges {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
}
.product-card__badge--sale {
  background: #e64d4d;
}
.product-card__badge--new {
  background: #0c0909;
}
.product-card__img-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product-card__brand-logo {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card__brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__label {
  display: flex;
  align-items: center;
  padding: 10px 8px;
  border-radius: 8px;
  background: #329913;
  font-size: 14px;
  color: #ffffff;
}
.product-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #221f1f;
  line-height: 1.43;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card__stars {
  display: flex;
  align-items: center;
}
.product-card__stars img {
  width: 24px;
  height: 24px;
}
.product-card__reviews, .product-card__make-reviews {
  display: flex;
  align-items: center;
  gap: 3px;
}
.product-card__make-reviews {
  gap: 8px;
}
.product-card__reviews-icon {
  width: 24px;
  height: 24px;
}
.product-card__reviews-count {
  font-size: 18px;
  color: #766f6e;
}
.product-card__make-review {
  font-size: 14px;
  color: #766f6e;
  font-family: "Fact", sans-serif;
}
.product-card__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-card__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__action-btn img {
  width: 24px;
  height: 24px;
}
.product-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.product-card__availability, .product-card__not-availability {
  font-size: 14px;
  font-weight: 700;
  color: #329913;
}
.product-card__not-availability {
  color: #766f6e;
}
.product-card__available-order-only {
  font-size: 14px;
  font-weight: 700;
  color: #3e77aa;
}
.product-card__article {
  font-size: 14px;
  font-weight: 700;
  color: #221f1f;
  text-align: right;
}
.product-card__article-num {
  font-weight: 400;
  color: #766f6e;
}
.product-card__price-row, .product-card__not-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}
.product-card__not-price-row {
  justify-content: flex-end;
}
.product-card__prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__price-old {
  line-height: 0.9;
  color: #766f6e;
}
.product-card__price-old span:first-child {
  font-size: 30px;
  text-decoration: line-through;
}
.product-card__price-old-currency {
  font-size: 18px;
  text-transform: uppercase;
}
.product-card__price {
  color: #f96332;
  line-height: 0.9;
}
.product-card__price span:first-child {
  font-size: 40px;
}
.product-card__price-currency {
  font-size: 22px;
  text-transform: uppercase;
}
.product-card__cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f96332;
  border-radius: 8px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}
.product-card__cart-btn:hover {
  background: rgb(251.0303317536, 151.7886255924, 119.3696682464);
}
.product-card__cart-btn img {
  width: 24px;
  height: 24px;
}
.product-card__cart-btn-in-cart, .product-card__cart-btn-available-order-only, .product-card__cart-btn-not-available {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e7e4e4;
  border-radius: 8px;
  flex-shrink: 0;
}
.product-card__cart-btn-in-cart img, .product-card__cart-btn-available-order-only img, .product-card__cart-btn-not-available img {
  width: 24px;
  height: 24px;
}
.product-card__hover {
  display: none;
}
.product-card__hover--portal {
  position: absolute;
  font-family: "Fact", sans-serif;
  background: #ffffff;
  border-radius: 0 0 8px 8px;
  padding: 0 16px 16px;
  z-index: 9999;
  box-shadow: 1px 10px 12px 0 rgba(0, 0, 0, 0.05);
  pointer-events: auto;
}
.product-card__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
}
.product-card__variant {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid #221f1f;
  border-radius: 4px;
  font-size: 14px;
  color: #221f1f;
  font-family: "Fact", sans-serif;
  background: none;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.product-card__variant--disabled {
  border-color: #766f6e;
  color: #766f6e;
  background: #f5f5f4;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.product-card__variant--disabled::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent calc(50% - 0.5px), #766f6e calc(50% - 0.5px), #766f6e calc(50% + 0.5px), transparent calc(50% + 0.5px));
}
.product-card__specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-card__spec {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}
.product-card__spec-label {
  color: #555770;
}
.product-card__spec-value {
  color: #221f1f;
  font-weight: 700;
  flex-shrink: 0;
  text-align: right;
}
@media (max-width: 1199px) {
  .product-card {
    flex: 0 0 168px;
    padding: 8px;
    gap: 8px;
  }
  .product-card:first-child {
    margin-left: 16px;
  }
  .product-card:hover {
    border-radius: 8px;
    z-index: auto;
  }
  .product-card__hover {
    display: none;
  }
  .product-card__img-wrap {
    height: 137px;
  }
  .product-card__brand-logo {
    width: 24px;
    height: 24px;
  }
  .product-card__label {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1.35;
  }
  .product-card__badge {
    font-size: 10px;
    height: auto;
    padding: 4px;
    line-height: 1.35;
  }
  .product-card__name {
    font-size: 12px;
    line-height: 16px;
  }
  .product-card__stars img {
    width: 12px;
    height: 12px;
  }
  .product-card__reviews-icon {
    width: 12px;
    height: 12px;
  }
  .product-card__reviews-count {
    font-size: 12px;
  }
  .product-card__make-reviews {
    gap: 2px;
  }
  .product-card__make-review {
    font-size: 12px;
  }
  .product-card__action-btn img {
    width: 16px;
    height: 16px;
  }
  .product-card__availability, .product-card__available-order-only, .product-card__not-availability, .product-card__article {
    font-size: 12px;
  }
  .product-card__price-old span:first-child {
    font-size: 16px;
  }
  .product-card__price span:first-child {
    font-size: 24px;
  }
}

.brand-card {
  flex: 0 0 332px;
  min-height: 190px;
  background: #f0e6e5;
  border-radius: 8px;
}
@media (max-width: 1199px) {
  .brand-card {
    flex: 0 0 168px;
    min-height: 105px;
  }
  .brand-card:first-child {
    margin-left: 16px;
  }
}

.tags {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tags__row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-height: 84px;
  overflow: hidden;
}
.tags.is-expanded .tags__row {
  max-height: 2000px;
}
.tags__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 8px;
  border: 1px solid #8b8080;
  border-radius: 8px;
  font-size: 16px;
  color: #221f1f;
  white-space: nowrap;
}
.tags__item:hover {
  border: 1px solid #f96332;
  background: #ffffff;
  cursor: pointer;
}
.tags__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #61729e;
  transition: color 0.2s ease;
}
.tags__more:hover {
  color: #f96332;
}
.tags__more:hover .tags__more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.tags__more-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}
.tags.is-expanded .tags__more-icon {
  transform: rotate(0deg);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #61729e;
  transition: color 0.2s ease;
}
.read-more:hover {
  color: #f96332;
}
.read-more:hover .read-more__icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.read-more__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}
.home__seo.is-expanded .read-more__icon {
     transform: rotate(0deg);
 }

.home {
  font-family: "Fact", sans-serif;
}
.home__container {
  max-width: 1408px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home__layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.home__sidebar {
  flex: 0 0 342px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home__cat-nav {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.home__cat-list {
  list-style: none;
  margin: 0;
}
.home__cat-link {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 48px;
  padding: 0 16px;
  background: #ffffff;
  color: #221f1f;
  font-size: 16px;
}
.home__cat-link:hover {
  background: #fff3ed;
  color: #f96332;
}
.home__cat-link:hover .home__cat-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.home__cat-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
}
.home__cat-name {
  flex: 1;
  min-width: 0;
}
.home__sidebar-extra {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.home__sidebox-top {
  display: flex;
  flex-direction: column;
  position: relative;
}
.home__sidebox-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e3e3e3;
}
.home__sidebox-head {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 64px;
  padding: 24px 16px;
  color: #766f6e;
  font-size: 16px;
  position: relative;
}
.home__sidebox-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e3e3e3;
}
.home__sidebox-user {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 80px;
  padding: 16px;
  color: #766f6e;
  font-size: 16px;
}
.home__sidebox-user-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home__sidebox-user-name, .home__sidebox-user-email, .home__sidebox-user-login {
  display: block;
  line-height: normal;
}
.home__sidebox-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.home__sidebox-nav-list {
  list-style: none;
  padding: 16px 0;
  position: relative;
  margin: 0;
}
.home__sidebox-nav-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e3e3e3;
}
.home__sidebox-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 16px;
  background: #ffffff;
  color: #766f6e;
  font-size: 16px;
}
.home__sidebox-nav-link:hover {
  background: #fff3ed;
  color: #f96332;
}
.home__sidebox-nav-link:hover .home__sidebox-nav-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.home__sidebox-nav-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}
.home__sidebox-nav-arrow {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-left: auto;
  transform: rotate(-90deg);
}
.home__sidebox-menu {
  position: relative;
}
.home__sidebox-nav {
  position: relative;
}
.home__sidebox-promo {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 80px;
  padding: 16px;
  color: #766f6e;
  font-size: 16px;
}
.home__sidebox-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 16px;
}
.home__sidebox-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e3e3e3;
}
.home__sidebox-banner-img {
  width: 310px;
  height: 400px;
  border-radius: 8px;
  background: #f0e6e5;
}
.home__sidebox-progress {
  width: 310px;
  height: 4px;
  border-radius: 2px;
  background: #e3e3e3;
}
.home__sidebox-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
  width: 100%;
}
.home__sidebox-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e3e3e3;
}
.home__sidebox-links {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}
.home__sidebox-link {
  display: flex;
  align-items: center;
  height: 48px;
  font-size: 16px;
  padding: 16px 0;
  color: #766f6e;
}
.home__sidebox-link:hover {
  color: #f96332;
}
.home__sidebox-ad {
  width: 310px;
  height: 90px;
  margin: 0 16px;
  border-radius: 8px;
  background: #f0e6e5;
}
.home__sidebox-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0;
  background: #ffffff;
  border-radius: 8px;
}
.home__sidebox-reviews-head {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px;
}
.home__sidebox-reviews-title {
  font-size: 16px;
  font-weight: 700;
  color: #221f1f;
  margin: 0;
}
.home__sidebox-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home__sidebox-review {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}
.home__sidebox-review-author {
  font-size: 16px;
  color: #221f1f;
}
.home__sidebox-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.home__sidebox-review-stars {
  display: flex;
  align-items: center;
}
.home__sidebox-review-stars img {
  width: 24px;
  height: 24px;
}
.home__sidebox-review-source {
  font-size: 16px;
  color: #766f6e;
  text-align: right;
}
.home__sidebox-review-text {
  font-size: 16px;
  color: #766f6e;
  line-height: normal;
  margin: 0;
}
.home__sidebox-more-wrap {
  padding: 0 16px;
  display: flex;
  justify-content: flex-end;
}
.home__sidebox-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #61729e;
  transition: color 0.2s ease;
}
.home__sidebox-more:hover {
  color: #f96332;
}
.home__sidebox-more:hover .home__sidebox-more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.home__sidebox-more-icon {
  width: 24px;
  height: 24px;
  transition: filter 0.2s ease;
}
.home__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home__banner {
  position: relative;
  height: 528px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.home__banner-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}
.home__banner-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}
.home__banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.home__banner-title {
  position: absolute;
  top: 24px;
  left: 24px;
}
.home__banner-heading {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: normal;
  margin: 0;
}
.home__banner-subtitle {
  font-size: 20px;
  color: #ffffff;
  line-height: normal;
  margin: 0;
}
.home__banner-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
}
.home__banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
}
.home__banner-dot--active {
  background: #f96332;
}
.home__banner-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
}
.home__banner-arrow {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home__banner-arrow img {
  width: 64px;
  height: 64px;
  transition: filter 0.2s ease;
}
.home__banner-arrow--next img {
  transform: rotate(180deg);
}
.home__banner-arrow:hover img {
  filter: brightness(0) invert(1);
}
.home__sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home__cards-row {
  display: flex;
  gap: 12px;
}
.home__seo {
  max-width: 1032px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home__seo-intro {
  font-size: 16px;
  line-height: 1.77;
  color: #221f1f;
  margin: 0;
}
.home__seo-brand {
  font-weight: 600;
}
.home__seo-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home__seo-extra {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
}
.home__seo.is-expanded .home__seo-extra {
  max-height: 2000px;
}
.home__seo-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home__seo-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #221f1f;
  letter-spacing: 1px;
  line-height: 1.32;
  margin: 0;
}
.home__seo-text {
  font-size: 16px;
  color: #8b8080;
  line-height: 1.77;
  margin: 0;
}
.home__news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home__news-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
}
.home__news-card:hover {
  outline: 1px solid #f96332;
  cursor: pointer;
}
.home__news-card-img {
  flex-shrink: 0;
  overflow: hidden;
  background: #f0e6e5;
}
.home__news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__news-card-body {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  flex: 1;
}
.home__news-card-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.home__news-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.home__news-card-desc {
  font-size: 13px;
  color: #221f1f;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.home__news-timer, .home__news-timer-end {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 0 0 74px;
  padding: 8px;
  border: 1px solid #00a046;
  border-radius: 8px;
  background: #e5f5ec;
  text-align: center;
}
.home__news-timer-end {
  border: 1px solid #cd2f2f;
  background: #fef2e6;
}
.home__news-timer-label, .home__news-timer-label-end {
  font-size: 10px;
  color: #221f1f;
  line-height: normal;
  display: block;
}
.home__news-timer-value, .home__news-timer-value-end {
  font-size: 18px;
  font-weight: 500;
  color: #221f1f;
  line-height: normal;
  display: block;
}
.home__news-timer-unit, .home__news-timer-unit-end {
  font-size: 14px;
  color: #221f1f;
  line-height: normal;
  display: block;
}
.home__news-timer-label-end, .home__news-timer-value-end, .home__news-timer-unit-end {
  color: #cd2f2f;
}
.home__brands {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home__promo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.home__promo-card {
  background: #f96332;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 0 37px;
}
.home__promo-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.home__promo-card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 56px;
}
.home__promo-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.home__promo-card-text {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 1.69;
  margin: 0;
}
@media (max-width: 1199px) {
  .home__sidebar {
    display: none;
  }
  .home__layout {
    display: block;
  }
  .home__content {
    overflow: visible;
  }
  .home__banner {
    height: auto;
    aspect-ratio: 344/190;
  }
  .home__banner-arrows {
    display: none;
  }
  .home__banner-title {
    top: 16px;
    left: 16px;
  }
  .home__news-grid {
    gap: 8px;
  }
  .home__promo-row {
    gap: 8px;
  }
  .home__news-card:nth-child(n+5) {
    display: none;
  }
  .home__news-card-body {
    padding: 8px;
    flex-direction: column;
  }
  .home__news-card-text {
    gap: 4px;
  }
  .home__news-card-title {
    font-size: 12px;
  }
  .home__news-card-desc {
    font-size: 10px;
  }
  .home__news-timer, .home__news-timer-end {
    flex-direction: row;
    align-items: center;
    flex: none;
    width: 100%;
    padding: 4px 8px;
    gap: 4px;
    white-space: nowrap;
  }
  .home__news-timer-label {
    font-size: 10px;
  }
  .home__news-timer-value {
    font-size: 20px;
    font-weight: 700;
  }
  .home__news-timer-unit {
    font-size: 14px;
  }
  .home__promo-card {
    min-height: 105px;
    padding: 16px;
  }
  .home__promo-card-inner {
    gap: 8px;
  }
  .home__promo-card-icon {
    width: 29px;
    height: 26px;
  }
  .home__promo-card-text {
    font-size: 10px;
  }
}
@media (max-width: 767px) {
  .home__banner-heading {
    font-size: 20px;
  }
  .home__banner-subtitle {
    font-size: 14px;
  }
  .home__promo-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .home__news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cat {
  font-family: "Fact", sans-serif;
}
.cat__container {
  max-width: 1408px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat__breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
}
.cat__breadcrumb-link {
  font-size: 12px;
  color: #797878;
}
.cat__breadcrumb-link:hover {
  color: #f96332;
}
.cat__breadcrumb-sep {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}
.cat__breadcrumb-current {
  font-size: 12px;
  color: #333333;
}
.cat__title {
  font-size: 24px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
}
.cat__filter {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
}
.cat__filter-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat__filter-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #8b8080;
  color: #221f1f;
}
.cat__filter-img {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  object-fit: contain;
}
.cat__filter-name {
  font-size: 16px;
  font-weight: 600;
}
.cat__filter-name:hover {
  color: #f96332;
}
@media (max-width: 1199px) {
  .cat__filter {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .cat__filter-col {
    flex: 0 0 calc(50% - 8px);
  }
}
@media (max-width: 767px) {
  .cat__filter-col {
    flex: 0 0 100%;
  }
}
.cat__catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(329px, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}
.cat__catalog-card {
  flex: 0 0 332px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.cat__catalog-card-img {
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat__catalog-card-img img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.cat__catalog-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #221f1f;
  line-height: normal;
}
.cat__catalog-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat__catalog-card-link {
  font-size: 16px;
  color: #8b8080;
}
.cat__catalog-card-link:hover {
  color: #f96332;
}
.cat__catalog-card:has(.cat__catalog-card-img) {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}
.cat__seo {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  height: 242px;
  display: flex;
}
.cat__seo-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
}
.cat__seo-item:not(:last-child) {
  border-right: 1px solid #8b8080;
}
.cat__seo-img {
  height: 160px;
  flex-shrink: 0;
}
.cat__seo-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cat__seo-title {
  font-size: 22px;
  font-weight: 600;
  color: #221f1f;
  line-height: normal;
}
.cat__seo-title:hover {
  color: #f96332;
}
.cat__seo-container {
  max-width: 1032px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat__seo-container-extra {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 390px;
  overflow: hidden;
}
.cat__seo-container.is-expanded .cat__seo-container-extra {
  max-height: 2000px;
}
.cat__seo-container-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat__seo-container-subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #221f1f;
  letter-spacing: 1px;
  line-height: 1.32;
}
.cat__seo-container-text {
  font-size: 16px;
  color: #8b8080;
  line-height: 1.77;
}
.cat__seo-container-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #61729e;
  transition: color 0.2s ease;
}
.cat__seo-container-more:hover {
  color: #f96332;
}
.cat__seo-container-more:hover .cat__seo-container-more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.cat__seo-container-more-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}
.cat__seo-container.is-expanded .cat__seo-container-more-icon {
  transform: rotate(0deg);
}
.cat__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat__brands {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat__review-card {
  flex: 0 0 332px;
  align-self: flex-start;
  height: 336px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-family: "Fact", sans-serif;
}
.cat__review-card:has(.cat__review-body) {
  height: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat__review-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat__review-product {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat__review-product-top {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #8b8080;
}
.cat__review-product-img {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}
.cat__review-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cat__review-product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.cat__review-product-name {
  font-size: 14px;
  font-weight: 600;
  color: #221f1f;
  line-height: 1.4;
  width: 205px;
}
.cat__review-meta {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cat__review-stars {
  display: flex;
  align-items: center;
}
.cat__review-stars img {
  width: 16px;
  height: 16px;
}
.cat__review-comments {
  display: flex;
  align-items: center;
  gap: 3px;
}
.cat__review-comments img {
  width: 16px;
  height: 16px;
}
.cat__review-comments span {
  font-size: 16px;
  color: #8b8080;
  line-height: 1;
}
.cat__review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}
.cat__review-author-name {
  color: #221f1f;
}
.cat__review-author-date {
  color: #8b8080;
  text-align: right;
}
.cat__review-text {
  max-height: 94px;
  overflow: hidden;
}
.cat__review-text p {
  font-size: 16px;
  color: #8b8080;
  line-height: 1.5;
}
.cat__review-card.is-expanded .cat__review-text {
  max-height: 2000px;
}
.cat__review-card.is-expanded .read-more__icon {
  transform: rotate(0deg);
}
.cat__review-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #61729e;
  transition: color 0.2s ease;
}
.cat__review-more:hover {
  color: #f96332;
}
.cat__review-more:hover .cat__review-more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.cat__review-more-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}
.cat__review-form {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cat__review-form-left {
  flex: 0 0 323px;
  padding: 16px;
}
.cat__rfl-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat__rfl-title {
  font-size: 18px;
  color: #221f1f;
  line-height: normal;
  height: 32px;
  display: flex;
  align-items: center;
}
.cat__rfl-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cat__rfl-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 136px;
}
.cat__rfl-author {
  font-size: 16px;
  color: #221f1f;
  line-height: 1.5;
}
.cat__rfl-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat__rfl-stars {
  display: flex;
  align-items: center;
}
.cat__rfl-stars img {
  width: 24px;
  height: 24px;
}
.cat__rfl-label {
  flex: 1;
  font-size: 16px;
  color: #8b8080;
  line-height: 1.5;
}
.cat__rfl-text {
  font-size: 16px;
  color: #8b8080;
  line-height: 1.5;
  height: 72px;
  overflow: hidden;
}
.cat__rfl-more {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #61729e;
  padding: 0 16px;
  justify-content: flex-end;
}
.cat__rfl-more-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.cat__review-form-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
  padding: 16px 0;
}
.cat__reviews-title {
  font-size: 16px;
  font-weight: 700;
  color: #221f1f;
}
.cat__more-wrap {
  padding: 0 16px;
  display: flex;
  justify-content: flex-end;
}
.cat__more-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #61729e;
  transition: color 0.2s ease;
}
.cat__more-link:hover {
  color: #f96332;
}
.cat__more-link:hover .cat__more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}
.cat__more-icon {
  width: 24px;
  height: 24px;
  transition: filter 0.2s ease;
}
@media (max-width: 1199px) {
  .cat__review-card:first-child {
    margin-left: 16px;
  }
  .cat__review-form-left {
    display: none;
  }
}



.brand {
    font-family: "Fact", sans-serif;
}
.brand__container {
    max-width: 1408px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.brand__breadcrumb {
    display: flex;
    align-items: center;
    gap: 2px;
}
.brand__breadcrumb-link {
    font-size: 12px;
    color: #797878;
}
.brand__breadcrumb-link:hover {
    color: #f96332;
}
.brand__breadcrumb-sep {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
}
.brand__breadcrumb-current {
    font-size: 12px;
    color: #333333;
}
.brand__track {
    display: flex;
    gap: 16px;
}
@media (max-width: 1199px) {
    .brand-card {
        flex: 0 0 168px;
        min-height: 105px;
    }
    .brand-card:first-child {
        margin-left: 16px;
    }
}

.brand__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

.brand-card {
    display: block;
    width: 100%;
    height: 190px;
    background: #f0e6e5;
    border-radius: 8px;
    overflow: hidden;
}
.brand-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 1199px) {
    .brand__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .brand__grid {
        grid-template-columns: 1fr;
    }
}

/*Pagination*/
.pagination__wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 16px 0;
}
.pagination__load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Fact", sans-serif;
    font-size: 20px;
    color: #3e77aa;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}
.pagination__load-more:hover {
    color: #f96332;
}
.pagination__load-more:hover .pagination__load-more-icon {
    filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(787%) hue-rotate(336deg) brightness(104%);
}
.pagination__load-more-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: filter 0.2s ease;
}
.pagination__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*width: 100%;*/
}
.pagination__prev, .pagination__next {
    flex: 0 0 41px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    cursor: pointer;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #777777;
}
.pagination__prev img, .pagination__next img {
    display: block;
    transition: filter 0.2s ease;
}
.pagination__prev:hover img, .pagination__next:hover img {
    filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(787%) hue-rotate(336deg) brightness(104%);
}
.pagination__pages {
    display: flex;
    align-items: center;
    gap: 8px;
}
.pagination__page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 41px;
    height: 36px;
    padding: 8px 16px;
    border: 1px solid #777777;
    border-radius: 8px;
    font-family: "Fact", sans-serif;
    font-size: 20px;
    color: #777777;
    background: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.pagination__page:hover:not(.pagination__page--active) {
    color: #f96332;
    border-color: #f96332;
}
.pagination__page--active {
    background: #221f1f;
    border-color: #221f1f;
    color: #ffffff;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.pagination__page--active:hover {
    background: #f96332;
    border-color: #f96332;
}
.pagination__mobile {
    display: none;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.pagination__mobile-label {
    font-size: 20px;
    color: #221f1f;
    line-height: 1;
}
@media (max-width: 1199px) {
    .pagination__nav {
        display: none;
    }
    .pagination__mobile {
        display: flex;
    }
}

/* Навігація */
.pagination-standard ul.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ХОВАЄМО порожні елементи, які генерує OpenCart */
.pagination-standard ul.pagination li:empty,
.pagination-standard ul.pagination li:not(.pagination__arrow-item):has(> a:empty),
.pagination-standard ul.pagination li:not(.pagination__arrow-item):has(> span:empty) {
    display: none !important;
}

/* Стиль для всіх кнопок */
.pagination-standard ul.pagination li a,
.pagination-standard ul.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 41px;
    height: 36px;
    padding: 8px 12px;
    border: 1px solid #777777;
    border-radius: 8px;
    font-family: "Fact", sans-serif;
    font-size: 20px;
    color: #777777;
    text-decoration: none;
    line-height: 1;
    transition: all 0.2s ease;
    background: none;
}

/* Стрілочки */
.pagination__arrow {
    background: none;
    border: 1px solid #777777;
}

.pagination__arrow img {
    width: 7px;
    height: 11px;
    display: block;
    transition: filter 0.2s ease;
}

/* Ховер ефекти */
.pagination-standard ul.pagination li a:hover {
    color: #f96332;
    border-color: #f96332;
}

.pagination-standard ul.pagination li a:hover img {
    filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(787%) hue-rotate(336deg) brightness(104%);
}

/* Активна сторінка */
.pagination-standard ul.pagination li.active span {
    background: #221f1f;
    border-color: #221f1f;
    color: #ffffff;
}

/* Неактивний стан стрілочок */
.pagination-standard ul.pagination li span.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: #777777;
}

/* Мобільна версія */
.pagination__mobile .pagination__prev,
.pagination__mobile .pagination__next {
    flex: 0 0 41px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #777777;
    border-radius: 8px;
    text-decoration: none;
}

.pagination__mobile .disabled {
    opacity: 0.4;
    pointer-events: none;
}

.pagination__mobile-label {
    font-family: "Fact", sans-serif;
    font-size: 20px;
    color: #221f1f;
}

#content {
    min-height: 0;
}

/*# sourceMappingURL=styles.css.map */
