@font-face {
  font-family: "Fact";
  src: url("../fonts/Fact-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fact";
  src: url("../fonts/Fact-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fact";
  src: url("../fonts/Fact-Bold.woff2") format("woff2");
  font-weight: 700;
  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;
}

a:focus {
    outline: none;
}

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

:focus,
:focus-visible {
  outline: none;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--teplokram-header-offset, 120px);
}

body {
  background: #f5f5f5;
}

.header {
  font-family: "Fact", sans-serif;
  position: relative;
  z-index: 11000;
}

.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__promo-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__promo-content .header-promo-banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.header__promo-content .header-promo-banner__track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
  will-change: transform;
}

.header__promo-content .header-promo-banner__slide {
  flex: 0 0 100%;
  height: 100%;
  min-width: 0;
}

.header__promo-content .header-promo-banner__link,
.header__promo-content .header-promo-banner picture {
  display: flex;
  width: 100%;
  height: 100%;
}

.header__promo-content .header-promo-banner__image {
  width: 100%;
  height: 100%;
  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;
  margin: 0;
  padding: 0;
  min-width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  border: none;
  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__lang-dropdown>li {
  margin: 0;
  padding: 0;
}

.header__lang-dropdown>li+li {
  border-top: 1px solid rgba(34, 31, 31, 0.08);
}

.header__lang-dropdown>li>.header__lang-item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  text-align: center;
  text-decoration: none;
  color: #221f1f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #ffffff;
  background-image: none;
  transition: background-color 0.15s ease;
}

.header__lang-dropdown>li>a.header__lang-item:hover,
.header__lang-dropdown>li>a.header__lang-item:focus {
  color: #221f1f;
  text-decoration: none;
  background-color: var(--color-input-bg);
  background-image: none;
}

.header__lang-dropdown>li>.header__lang-item.active {
  cursor: default;
  pointer-events: none;
}

.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: 999;
  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;
}

.header__main--fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 11001;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.22s ease, transform 0.22s ease, opacity 0.22s ease;
  will-change: transform, opacity, box-shadow;
}

.header__main-spacer {
  display: block;
  height: 0;
}

.seo-text:not(.seo-text--has-more) .seo-text__more {
  display: none !important;
}

body.menu-open .header,
body.menu-open .header__main--fixed,
body.cart-widget-open .header,
body.cart-widget-open .header__main--fixed,
body.instruction-popup-open .header,
body.instruction-popup-open .header__main--fixed,
body.pi__service-modal-open .header,
body.pi__service-modal-open .header__main--fixed,
body.review-pro-open .header,
body.review-pro-open .header__main--fixed {
  z-index: 1 !important;
}

.callback-popup,
.callback-success,
.login-popup,
.account-login-page,
.account-auth-page,
.instruction-popup,
.pi__service-modal,
.cart-widget-filled__service-modal,
.modal {
  z-index: 20000 !important;
}

.modal-backdrop {
  z-index: 19990 !important;
}

.cart-widget {
  z-index: 20020;
}

.mfp-review-pro.mfp-wrap {
  z-index: 20030 !important;
}

.mfp-review-pro .mfp-bg {
  z-index: 20030 !important;
}

.mfp-review-pro .mfp-container {
  z-index: 20031;
}

@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;
}

.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;
}

.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: 200;
  background-color: #ffffff;
  border-top: 1px solid #e3e3e3;
  font-family: "Fact", sans-serif;
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .mobile-menu {
    top: 128px;
  }
}

@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;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
}

.breadcrumb__link {
  font-size: 12px;
  color: #797878;
}

.breadcrumb__link:hover {
  color: #f96332;
}

.breadcrumb__sep {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.breadcrumb__current {
  font-size: 12px;
  color: #333333;
}

.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: 20px;
  }

  .section-head__link {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .section-head__title {
    font-size: 18px;
  }
}

.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;
  }
}

@media (max-width: 1199px) {
  .slider--loop {
    overflow-x: clip;
    margin-left: 0;
    margin-right: 0;
  }

  .slider--loop .slider__track {
    width: max-content;
    gap: 8px;
  }

  .slider--loop .slider__btn {
    display: flex;
  }
}

.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:hover.product-card--hovered-empty,
.product-card--hovered.product-card--hovered-empty {
  border-radius: 8px;
}

.product-card__img-wrap {
  position: relative;
  height: 297px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card__img-link {
  display: block;
  position: relative;
  width: 100%;
  /*height: 100%;*/
}

.product-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.product-card__img--primary {
  opacity: 1;
}

.product-card__img--secondary {
  opacity: 0;
}

.product-card__img-link--has-hover:hover .product-card__img--primary,
.product-card--hovered .product-card__img-link--has-hover .product-card__img--primary {
  opacity: 0;
}

.product-card__img-link--has-hover:hover .product-card__img--secondary,
.product-card--hovered .product-card__img-link--has-hover .product-card__img--secondary {
  opacity: 1;
}

.product-card__badges {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  pointer-events: none;
}

.product-card__badge {
  position: absolute;
  top: 0;
  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 {
  left: 0;
  background: #e64d4d;
}

.product-card__badge--new {
  right: 0;
  background: #0c0909;
}

.product-card__img-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
}

.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__footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: auto;
}

.product-card__footer-badges--image {
  justify-content: flex-start;
  align-items: flex-end;
  max-width: calc(50% - 4px);
}

.product-card__footer-badges--text {
  justify-content: flex-end;
  align-items: flex-end;
  margin-left: auto;
  max-width: calc(50% - 4px);
}

.product-card__badge-image {
  object-fit: contain;
}

.product-card__label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-radius: 8px;
  background: #329913;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.2;
}

.product-card__name {
  font-size: 14px;
  font-weight: 600;
  color: inherit;
  line-height: 1.43;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 40px;
  margin: 0;
}

.product-card__name-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card__img-link {
  color: #221f1f;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card__img-link:hover,
.product-card__img-link:focus,
.product-card__img-link:hover .product-card__name,
.product-card__img-link:focus .product-card__name,
.product-card__img-link:hover .product-card__name-link,
.product-card__img-link:focus .product-card__name-link {
  color: #f96332;
}

.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__cart-btn-text {
  display: none;
}

.product-card__action-btn--active img {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}

.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--in-stock .product-card__availability {
  color: #329913;
}

.product-card--out-of-stock .product-card__not-availability {
  color: #766f6e;
}

.product-card--preorder .product-card__available-order-only {
  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__retail-price,
.product-card__sticky-retail-price {
  color: #766f6e;
  font-size: 13px;
  line-height: 1.1;
}

.product-card__retail-price-label,
.product-card__sticky-retail-price-label {
  margin-right: 4px;
}

.product-card__retail-price-value,
.product-card__sticky-retail-price-value {
  font-weight: 400;
}

.product-card__retail-price-currency,
.product-card__sticky-retail-price-currency {
  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;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.2s ease, padding 0.2s ease, 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--notify.is-notified {
  background: #e7e4e4;
}

.product-card__cart-btn--notify.is-notified:hover {
  background: #e7e4e4;
}

.product-card__cart-btn-in-cart .product-card__cart-btn-text,
.product-card__cart-btn--notify.is-notified .product-card__cart-btn-text,
.product-card:hover .product-card__cart-btn--notify.is-notified .product-card__cart-btn-text,
.product-card--hovered .product-card__cart-btn--notify.is-notified .product-card__cart-btn-text {
  color: #666666;
}

.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__cart-btn-in-cart {
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.2s ease, padding 0.2s ease, background-color 0.2s ease;
}

.product-card__hover {
  display: none;
}

@media (min-width: 1200px) {
  .product-card:hover .product-card__cart-btn--with-text,
  .product-card--hovered .product-card__cart-btn--with-text {
    width: fit-content;
    padding: 0 12px;
    justify-content: flex-start;
    gap: 8px;
  }
  .product-card:hover .product-card__cart-btn--with-text .product-card__cart-btn-text,
  .product-card--hovered .product-card__cart-btn--with-text .product-card__cart-btn-text {
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }
  .product-card:hover .product-card__hover,
  .product-card--hovered .product-card__hover {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 1px);
    z-index: 50;
    background: #ffffff;
    border-radius: 0 0 8px 8px;
    padding: 0 16px 16px;
    box-shadow: 1px 10px 12px 0 rgba(0, 0, 0, 0.05);
    pointer-events: auto;
  }
}

.product-card:hover .product-card__cart-btn-in-cart .product-card__cart-btn-text,
.product-card--hovered .product-card__cart-btn-in-cart .product-card__cart-btn-text {
  color: #666666;
}

.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;
    height: 35px;
  }

  .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: #fff;
  border-radius: 8px;
}

@media (max-width: 1199px) {
  .brand-card {
    flex: 0 0 168px;
    height: 105px !important;
  }
}

.brands {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #8b8080;
}

.filter-group__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.filter-group__title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.filter-group__title {
  font-size: 18px;
  font-weight: 500;
  color: #000000;
}

.filter-group__count-badge {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  color: #766F6E;
}

.filter-group__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.filter-group__toggle img {
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.filter-group.is-collapsed .filter-group__options,
.filter-group.is-collapsed .filter-group__inputs,
.filter-group.is-collapsed .filter-group__range {
  display: none;
}

.filter-group.is-collapsed .filter-group__toggle img {
  transform: rotate(0deg);
}

.filter-group__inputs {
  display: flex;
  align-items: center;
  gap: 3px;
}

.filter-group__input {
  flex: 0 0 132px;
  max-width: 132px;
  min-width: 0;
  height: 36px;
  padding: 6px 16px;
  border: 1px solid #777777;
  border-radius: 8px;
  font-family: "Fact", sans-serif;
  font-size: 16px;
  color: #000000;
  background: none;
}

.filter-group__sep {
  width: 32px;
  height: 36px;
  flex-shrink: 0;
}

.filter-group__range.noUi-target {
  height: 4px;
  background: #e3e3e3;
  border: none;
  box-shadow: none;
  border-radius: 2px;
}

.filter-group__range .noUi-connect {
  background: #f96332;
}

.filter-group__range.noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  top: -6px;
  right: -8px;
  border-radius: 50%;
  background: #f96332;
  border: none;
  box-shadow: none;
  cursor: pointer;
}

.filter-group__range.noUi-horizontal .noUi-handle::before,
.filter-group__range.noUi-horizontal .noUi-handle::after {
  display: none;
}

.filter-group__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group__search {
  margin-bottom: 10px;
}

.filter-group__search-input {
  width: 100%;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #555770;
  border-radius: 8px;
  font-family: "Fact", sans-serif;
  font-size: 16px;
  color: #000000;
  background: #ffffff;
}

.filter-group__search-input:focus {
  outline: none;
  border-color: #f96332;
}

.filter-group__options-list--scroll {
  max-height: var(--filter-group-scroll-height, 360px);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  padding-right: 10px;
  margin-right: -10px;
}

.filter-group__option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.filter-group__checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #777777;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.filter-group__checkbox:hover {
  border-color: #f96332;
}

.filter-group__checkbox:checked {
  background: #f96332 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  border-color: #f96332;
}

.filter-group__label {
  font-size: 16px;
  color: #000000;
  line-height: 1.48;
}

.pagination__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.pagination__load-more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  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: center;
  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;
  }
}

.toolbar-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sort {
  position: relative;
}

.sort__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 190px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #777777;
  border-radius: 8px;
  background: #ffffff;
  font-family: "Fact", sans-serif;
  font-size: 14px;
  color: #221f1f;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.sort__btn:hover {
  border-color: #f96332;
}

.sort__icon {
  width: 13px;
  height: 8px;
  flex-shrink: 0;
}

.sort__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 2px 6px 2px rgba(0, 0, 0, 0.15);
  padding: 4px 0;
  z-index: 10;
}

.sort.is-open .sort__dropdown {
  display: block;
  z-index: 11;
}

.sort__option {
  display: block;
  width: 100%;
  padding: 8px 16px;
  background: none;
  border: none;
  font-family: "Fact", sans-serif;
  font-size: 14px;
  color: #000000;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
}

.sort__option:hover,
.sort__option--active {
  background: #fff3ed;
}

.view-toggle {
  display: flex;
  align-items: center;
  width: 74px;
  height: 36px;
  background: #ffffff;
  border: 1px solid #8b8080;
  border-radius: 8px;
  overflow: hidden;
}

.view-toggle__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex: 0 0 36px;
  height: 36px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.view-toggle__btn--active {
  flex: 0 0 38px;
  background: #f0e6e5;
  border: 1px solid #8b8080;
  border-radius: 8px;
}

.view-toggle__line {
  display: block;
  height: 2px;
  border-radius: 1px;
  background: #221f1f;
}

.view-toggle__btn--active .view-toggle__line {
  background: #f96332;
}

.view-toggle__lines--3 .view-toggle__line {
  width: 10px;
}

.view-toggle__lines--4 .view-toggle__line {
  width: 14px;
}

.toolbar-mobile {
  display: none;
  align-items: center;
  gap: 16px;
}

.toolbar-mobile__filter {
  flex: 1 0 0;
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #f96332;
  border: none;
  border-radius: 8px;
  font-family: "Fact", sans-serif;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
}

.toolbar-mobile__filter-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.toolbar-mobile .sort {
  flex: 1 0 0;
  min-width: 0;
}

.toolbar-mobile .sort .sort__btn {
  width: 100%;
  height: 42px;
  border-color: #221f1f;
  font-size: 16px;
}

.toolbar-mobile .sort .sort__icon {
  width: 16px;
  height: 16px;
}

.sidebar-banner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 16px;
  /*border-bottom: 1px solid #8b8080;*/
  overflow: hidden;
  background: #fff;
}

.sidebar-banner__viewport {
  overflow: hidden;
  border-radius: 8px;
}

.sidebar-banner__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.sidebar-banner__slide {
  flex: 0 0 100%;
}

.sidebar-banner__link {
  display: block;
}

.sidebar-banner__image {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-banner__dots {
  display: flex;
  gap: 8px;
}

.sidebar-banner__dot {
  flex: 1;
  height: 2px;
  border: 0;
  border-radius: 999px;
  background: #d9d9d9;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.sidebar-banner__dot.is-active {
  background: #f96332;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  padding-bottom: 32px;
  border-bottom: 1px solid #8b8080;
}

.sidebar-links__list {
  display: flex;
  flex-direction: column;
}

.sidebar-links__item {
  display: flex;
  align-items: center;
  height: 48px;
  font-family: "Fact", sans-serif;
  font-size: 16px;
  color: #8b8080;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sidebar-links__item:hover {
  color: #f96332;
}

.sidebar-links__banner {
  height: 90px;
  background: #f0e6e5;
  border-radius: 8px;
}

.sidebar-links__line {
  width: 100%;
}

.sidebar-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-reviews__head {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 16px 0;
}

.sidebar-reviews__title {
  font-family: "Fact", sans-serif;
  font-size: 18px;
  color: #000000;
  font-weight: 400;
}

.sidebar-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-reviews__review {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-reviews__review-name {
  font-family: "Fact", sans-serif;
  font-size: 16px;
  color: #221f1f;
  line-height: 24px;
}

.sidebar-reviews__review-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sidebar-reviews__review-stars {
  display: flex;
  align-items: center;
}

.sidebar-reviews__review-star {
  width: 24px;
  height: 24px;
}

.sidebar-reviews__review-source {
  font-family: "Fact", sans-serif;
  font-size: 16px;
  color: #8b8080;
  line-height: 24px;
  text-align: right;
  white-space: nowrap;
}

.sidebar-reviews__review-text {
  font-family: "Fact", sans-serif;
  font-size: 16px;
  color: #8b8080;
  line-height: 24px;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.sidebar-reviews__more {
  display: flex;
  align-items: center;
  text-decoration: none;
  justify-content: flex-end;
}

.sidebar-reviews__more:hover .sidebar-reviews__more-label {
  color: #f96332;
}

.sidebar-reviews__more:hover .sidebar-reviews__more-icon {
  filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(787%) hue-rotate(336deg) brightness(104%);
}

.sidebar-reviews__more-label {
  font-family: "Fact", sans-serif;
  font-size: 14px;
  color: #61729e;
  line-height: 16px;
  transition: color 0.2s ease;
}

.sidebar-reviews__more-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}

.tags {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.tags.custom-tags {
  margin-top: 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);
}

.read-more[aria-expanded=true] .read-more__icon {
  transform: rotate(0deg);
}

.seo-text {
  /*max-width: 1032px;*/
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-text__subtitle {
  font-size: 20px;
  font-weight: 600;
  color: #221f1f;
  letter-spacing: 1px;
  line-height: 1.32;
  margin: 0;
}

.seo-text__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.seo-text__body[hidden] {
  display: none !important;
}

.seo-text__body > *:last-child {
  margin-bottom: 0;
}

.seo-text__more {
  align-self: flex-start;
}

.seo-text__more:hover {
  color: #f96332;
}

.seo-text__more:hover .seo-text__more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}

.seo-text__more-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}

.seo-text.is-expanded .seo-text__more-icon {
  transform: rotate(0deg);
}

@media (max-width: 1199px) {
  .seo-text__subtitle {
    font-size: 16px;
  }
}

.review-card-wrap {
  position: relative;
  flex: 0 0 332px;
  align-self: flex-start;
}

.review-card {
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-family: "Fact", sans-serif;
}

.review-card:has(.review-card__body) {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-card.is-expanded {
  position: relative;
  z-index: 10;
}

.cat__section--popular-reviews .review-card.is-expanded {
  height: auto;
}

.review-card.is-expanded .review-card__text {
  max-height: none;
}

.review-card.is-expanded .read-more__icon {
  transform: rotate(0deg);
}

.review-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__product {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-card__product-top {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #8b8080;
}

.review-card__product-img {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
}

.review-card__product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-card__product-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.review-card__product-name {
  font-size: 14px;
  font-weight: 600;
  color: #221f1f;
  line-height: 1.4;
  width: 205px;
}

.review-card__meta {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-card__stars {
  display: flex;
  align-items: center;
}

.review-card__stars img {
  width: 16px;
  height: 16px;
}

.review-card__comments {
  display: flex;
  align-items: center;
  gap: 3px;
}

.review-card__comments img {
  width: 16px;
  height: 16px;
}

.review-card__comments span {
  font-size: 16px;
  color: #8b8080;
  line-height: 1;
}

.review-card__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.review-card__author-name {
  color: #221f1f;
}

.review-card__author-date {
  color: #8b8080;
  text-align: right;
}

.review-card__text {
  max-height: 94px;
  overflow: hidden;
}

.review-card__text p {
  font-size: 16px;
  color: #8b8080;
  line-height: 1.5;
}

.review-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #61729e;
  transition: color 0.2s ease;
}

.review-card__more:hover {
  color: #f96332;
}

.review-card__more:hover .review-card__more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}

.review-card__more-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

@media (max-width: 1199px) {
  .review-card__text {
    max-height: 48px;
  }

  .review-card-wrap:first-child {
    margin-left: 16px;
  }
}

.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;
  margin-bottom: 16px;
}

.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;
  font-weight: 600;
}

.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 8px 0 0;
  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-head span a:hover {
  color: #f96332;
  font-weight: 600;
}

.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.is-active {
  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-link.is-active .home__sidebox-nav-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}

.home__sidebox-user.is-active {
  background: #fff3ed;
}

.home__sidebox-user.is-active .home__sidebox-user-name a,
.home__sidebox-user.is-active .home__sidebox-user-email a,
.home__sidebox-user.is-active .home__sidebox-user-login a {
  color: #f96332;
}

.home__sidebox-user-login:hover a {
    color: #f96332;
    font-weight: 600;
}

.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;
}

.home__sidebox-banner .sidebar-banner {
  padding-bottom: 0;
  border-bottom: 0;
}

.home__sidebox-banner .sidebar-banner__image,
.home__sidebox-banner .sidebar-banner__viewport {
  width: 310px;
}

.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: 18px;
  font-weight: 400;
  color: #000000;
  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;
  justify-content: space-between;
}

.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;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.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;
}

.account-tab-info__body {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.04);
}

.account-tab-info__list {
  display: grid;
  gap: 8px;
  margin: 0 0 20px;
}

.account-tab-info__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid #ebe7e3;
  border-radius: 8px;
}

.account-tab-info__label {
  color: #8f8780;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0;
  flex: 0 0 auto;
}

.account-tab-info__label::after {
  content: ":";
}

.account-tab-info__value {
  margin: 0;
  color: #2a2320;
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  word-break: break-word;
}

.account-tab-info__text {
  margin: 0;
  color: #555770;
  font-size: 16px;
  line-height: 1.6;
}

.account-tab-info__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.account-tab-info__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 40px;
  border-radius: 8px;
  padding-inline: 22px;
  background: #f96332;
  border-color: #f96332;
  color: #ffffff;
  box-shadow: 0 0 0 rgba(249, 99, 50, 0.2);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.account-tab-info__button:hover,
.account-tab-info__button:focus,
.account-tab-info__button:active,
.account-tab-info__button:active:focus {
  background: #fc9e75;
  border-color: #fc9e75;
  color: #ffffff;
  box-shadow: 0 0 0 rgba(249, 99, 50, 0.2);
  outline: none;
}

.account-tab-info__logout {
  min-width: 160px;
  border-radius: 8px;
  padding-inline: 22px;
  background: #f96332;
  border-color: #f96332;
  color: #ffffff;
  box-shadow: 0 0 0 rgba(249, 99, 50, 0.2);
  font-size: 14px;
}

.account-tab-info__logout:hover,
.account-tab-info__logout:focus,
.account-tab-info__logout:active,
.account-tab-info__logout:active:focus {
  background: #fc9e75;;
  border-color: #fc9e75;;
  color: #ffffff;
  box-shadow: 0 0 0 rgba(249, 99, 50, 0.2);
  outline: none;
}

@media (max-width: 575px) {
  .account-tab-info__body {
    padding: 18px;
  }

  .account-tab-info__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .account-tab-info__value {
    text-align: left;
    margin-left: 0;
  }

  .account-tab-info__actions {
    justify-content: stretch;
  }

  .account-tab-info__button,
  .account-tab-info__logout {
    width: 100%;
  }
}

.account-form {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
}

.account-form__card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(22, 22, 22, 0.04);
}

.account-form__message {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.account-form__message--success {
  border: 1px solid #cfe8d7;
  background: #eef8f1;
  color: #24593a;
}

.account-form__message--error {
  border: 1px solid #f1c4c4;
  background: #fff1f1;
  color: #8f3434;
}

.account-form__fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.account-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.account-form__grid--single {
  grid-template-columns: 1fr;
}

.account-form__field,
.account-form__custom-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-form__custom-field {
  margin-top: 16px;
}

.account-form__label {
  color: #8f8780;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.account-form__field.required .account-form__label::after,
.account-form__custom-field.required .account-form__label::after {
  content: " *";
  color: #f96332;
}

.account-form__input,
.account-form__input.form-control,
.account-form__input-group .form-control {
  min-height: 46px;
  border: 1px solid #e0dbd6;
  border-radius: 8px;
  box-shadow: none;
  background: #ffffff;
  color: #221f1f;
  font-size: 14px;
}

.account-form .form-control,
.account-form input.form-control,
.account-form select.form-control,
.account-form textarea.form-control {
  font-size: 14px;
}

.account-form__input:focus,
.account-form__input.form-control:focus,
.account-form__input-group .form-control:focus {
  border-color: #f96332;
  box-shadow: 0 0 0 3px rgba(249, 99, 50, 0.12);
}

.account-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.account-form__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.account-form__choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid #ebe7e3;
  border-radius: 8px;
  background: #fffdfc;
  color: #221f1f;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
}

.account-form__choice input {
  margin: 0;
}

.account-form__upload {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.account-form__upload-name {
  color: #5c5350;
  font-size: 14px;
}

.account-form__input-group {
  width: 100%;
}

.account-form__icon-button {
  min-height: 46px;
  border-radius: 0 8px 8px 0;
  border-color: #e0dbd6;
}

.account-form__error {
  color: #d1524c;
  font-size: 13px;
  line-height: 1.4;
}

.account-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.account-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Fact", sans-serif;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.account-form__button--secondary {
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #221f1f;
}

.account-form__button--secondary:hover {
  border-color: #a99994;
  background: #fbfbfb;
  color: #221f1f;
}

.account-form__button--primary {
  border: 1px solid #f96332;
  background: #f96332;
  color: #ffffff;
}

.account-form__button--primary:hover {
  border-color: #e7511f;
  background: #e7511f;
  color: #ffffff;
}

.account-form__button--compact {
  min-width: 0;
  min-height: 40px;
  padding-inline: 14px;
  font-size: 14px;
}

@media (max-width: 767px) {
  .account-form__card {
    padding: 18px 16px;
  }

  .account-form__grid {
    grid-template-columns: 1fr;
  }

  .account-form__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .account-form__button {
    width: 100%;
  }

  .account-form__upload {
    flex-direction: column;
    align-items: stretch;
  }

  .account-form__icon-button {
    border-radius: 0 8px 8px 0;
  }
}

.account-reviews {
  background: #ffffff;
  padding: 16px;
  border-radius: 8px;
}

.account-reviews__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.account-reviews__tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  background: #ffffff;
  color: #221f1f;
  font-size: 15px;
  line-height: 1.2;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.account-reviews__tab:hover {
  border-color: #8ed49e;
  color: #221f1f;
}

.account-reviews__tab.is-active {
  border-color: #00A046;
  background: #E5F5EC;
  color: #221F1F;
  font-size: 15px;
  font-weight: 400;
  height: 42px;
}

.account-reviews__body {
  padding: 0;
}

.account-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-reviews__card,
.account-reviews__review {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(34, 31, 31, 0.04);
}

.account-reviews__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  min-height: 96px;
}

.account-reviews__card-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
}

.account-reviews__card-image-wrap--review {
  align-self: flex-start;
  margin-top: 2px;
}

.account-reviews__card-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.account-reviews__card-content,
.account-reviews__summary-content {
  flex: 1;
  min-width: 0;
}

.account-reviews__card-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.account-reviews__card-title {
  margin: 0;
  color: #221f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 370px;
}

.account-reviews__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 8px;
  background: #f96332;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.account-reviews__button:hover {
  background: #e7511f;
  color: #ffffff;
}

.account-reviews__empty {
  padding: 18px 16px;
  border: 1px dashed #d8d8d8;
  border-radius: 8px;
  background: #fbfbfb;
}

.account-reviews__empty-text {
  margin: 0;
  color: #61729e;
  font-size: 15px;
  line-height: 1.6;
}

.account-reviews__review {
  overflow: hidden;
}

.account-reviews__review[open] {
  border-color: #d9d3ce;
  box-shadow: 0 8px 26px rgba(34, 31, 31, 0.06);
}

.account-reviews__review > summary {
  list-style: none;
}

.account-reviews__review > summary::-webkit-details-marker {
  display: none;
}

.account-reviews__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
  user-select: none;
}

.account-reviews__summary-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.account-reviews__preview-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.account-reviews__comment-icon,
.account-reviews__details-icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.account-reviews__preview {
  margin: 0;
  color: #8B8080;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  max-width: 370px;
}

.account-reviews__rating {
  color: #221f1f;
  font-weight: 600;
}

.account-reviews__status {
  color: #8a8a8a;
}

.account-reviews__status.is-published {
  color: #2a7b4f;
}

.account-reviews__status.is-pending {
  color: #c27a00;
}

.account-reviews__toggle {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-left: auto;
  margin-top: 4px;
}

.account-reviews__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-right: 3px solid #221f1f;
  border-bottom: 3px solid #221f1f;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.account-reviews__review[open] .account-reviews__toggle::before {
  transform: rotate(-135deg);
}

.account-reviews__details {
  padding: 16px;
  margin: 16px;
  border: 1px solid #E3E3E3;
  border-radius: 8px;
}

.account-reviews__details-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.account-reviews__details-author {
  color: #221f1f;
  font-size: 16px;
  line-height: 1.4;
}

.account-reviews__details-date {
  color: #8B8080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
}

.account-reviews__details-group {
  display: flex;
  gap: 8px;
  padding-top: 16px;
  align-items: center;
}

.account-reviews__details-group .account-reviews__details-icon {
    display: none;
}

.account-reviews__label {
  display: inline-block;
  color: #221f1f;
  font-size: 16px;
  font-weight: 600;
}

.account-reviews__details-text {
  margin: 0;
  color: #8a8080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  white-space: pre-line;
  flex: 1;
  min-width: 0;
}

.account-reviews__details-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 16px;
}

.account-reviews__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
}

.account-reviews__gallery-item {
  flex: 0 0 auto;
}

.account-reviews__gallery-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  padding: 0;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
}

.account-reviews__gallery-link--button {
  cursor: pointer;
}

.account-reviews__gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-reviews__gallery-play {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.10), rgba(0, 0, 0, 0.18));
}

.account-reviews__gallery-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid rgba(255, 255, 255, 0.95);
  margin-left: 3px;
}

.account-reviews__product-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  color: #3e77aa;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.account-reviews__product-link:hover {
  color: #f96332;
}

.account-reviews__comments {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 12px;
}

.account-reviews__comment {
  margin-left: 96px;
  padding: 18px 20px;
  border: 1px solid #e5e0dc;
  border-radius: 12px;
  background: #ffffff;
}

.account-reviews__comment-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.account-reviews__comment-meta {
  flex: 1;
  min-width: 0;
}

.account-reviews__comment-author {
  color: #221f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.account-reviews__comment-date {
  margin-top: 2px;
  color: #8a8080;
  font-size: 14px;
  line-height: 1.4;
}

.account-reviews__comment-text {
  margin: 14px 0 0;
  color: #8a8080;
  font-size: 16px;
  line-height: 1.6;
}

.account-reviews__comment-actions {
  margin-top: 18px;
}

.account-reviews__comment-reply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8a8080;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
}

.account-reviews__comment-reply:hover {
  color: #f96332;
}

.account-reviews__comment-reply-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.account-promotions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(34, 31, 31, 0.06);
}

.account-promotions .section-head__title {
  font-size: 24px;
}

.account-promotions__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-promotions__card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(34, 31, 31, 0.04);
}

.account-promotions__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 82px;
  overflow: hidden;
  border-radius: 8px;
  background: #f0e6e5;
  flex-shrink: 0;
}

.account-promotions__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-promotions__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-promotions__title {
  margin: 0;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.account-promotions__title-link:hover {
  color: #f96332;
}

.account-promotions__description {
  margin: 0;
  color: #8B8080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
}

.account-promotions__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 48px;
  border-radius: 8px;
  background: #f96332;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.account-promotions__button:hover {
  background: #fc9e75;
  color: #ffffff;
}

.account-promotions__empty {
  padding: 8px 0 4px;
}

.account-promotions__empty-text {
  margin: 0;
  color: #8a8080;
  font-size: 16px;
  line-height: 1.5;
}

.account-promotions__empty-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  background: #f96332;
  color: #ffffff;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.account-promotions__empty-link:hover {
  background: #fc9e75;
  color: #ffffff;
}

@media (max-width: 767px) {
  .account-reviews__details {
    padding: 0 16px 16px;
  }

  .account-reviews__details-group {
    flex-direction: column;
    gap: 8px;
  }

  .account-reviews__comment {
    margin-left: 0;
  }

  .account-reviews__gallery {
    gap: 8px;
  }

  .account-reviews__gallery-link {
    width: 84px;
    height: 84px;
  }

  .account-promotions {
    padding: 16px;
  }

  .account-promotions__card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .account-promotions__image-link {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .account-promotions__title {
    font-size: 16px;
  }

  .account-promotions__description {
    font-size: 14px;
  }

  .account-promotions__button {
    width: 100%;
    min-width: 0;
  }
}

.account-orders {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(34, 31, 31, 0.06);
}

.account-orders .section-head__title {
  font-size: 24px;
}

.account-orders__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.account-orders__card {
  overflow: hidden;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #ffffff;
}

.account-orders__card[open] {}

.account-orders__card[open] .account-orders__thumbs {
    display: none;
}

.account-orders__card[open] .account-orders__summary {
  border-bottom: 1px solid #ececec;
  padding-bottom: 14px;
  display: flex;
  justify-content: space-between;
}

.account-orders__card[open] .account-orders__date {
  display: none;
}

.account-orders__card > summary {
  list-style: none;
}

.account-orders__card > summary::-webkit-details-marker {
  display: none;
}

.account-orders__summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
  user-select: none;
}

.account-orders__summary-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-orders__summary-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 16px;
}

.account-orders__number {
  color: #000000;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.account-orders__date {
  color: #8B8080;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.account-orders__status {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.account-orders__status.is-complete {
  color: #00a046;
}

.account-orders__status.is-processing {
  color: #c27a00;
}

.account-orders__status.is-default {
  color: #61729e;
}

.account-orders__status.is-pending {
  color: #9b6b00;
}

.account-orders__status.is-cancelled {
  color: #d9534f;
}

.account-orders__status.is-refund {
  color: #8e44ad;
}

.account-orders__thumbs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.account-orders__thumb {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.account-orders__toggle {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.account-orders__toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  border-right: 3px solid #221f1f;
  border-bottom: 3px solid #221f1f;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.account-orders__card[open] .account-orders__toggle::before {
  transform: rotate(-135deg);
}

.account-orders__details {
  padding: 0 20px 20px;
}

.account-orders__details-grid {
  display: flex;
  /*grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);*/
  gap: 16px;
  padding-top: 8px;
}

.account-orders__meta {
    max-width: 215px;
}

.account-orders__meta-date {
  padding: 0 10px 10px 10px;
  color: #8B8080;
  font-size: 16px;
  font-weight: 400;
  border-bottom: 1px solid #E3E3E3;
}

.account-orders__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 18px;
}

.account-orders__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.account-orders__btn--green {
  background: #329913;
  color: #ffffff;
}

.account-orders__btn--green:hover {
  background: #008f3e;
  color: #ffffff;
}

.account-orders__btn--orange {
  background: #F66431;
  color: #ffffff;
}

.account-orders__btn--orange:hover {
  background: #e7511f;
  color: #ffffff;
}

.account-orders__delivery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #221f1f;
  font-size: 14px;
  line-height: 1.5;
}

.account-orders__delivery-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-orders__delivery-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.account-orders__delivery-title {
  font-size: 14px;
  font-weight: 400;
}

.account-orders__tracking-label {
  color: #8a8080;
}

.account-orders__tracking-value {
  color: #61729e;
  text-decoration: underline;
}

.account-orders__address {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  color: #555770;
}

.account-orders__address-title {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  margin: 0;
}

.account-orders__map-link {
  margin-left: 6px;
  color: #61729e;
  font-size: 13px;
  text-decoration: underline;
}

.account-orders__opening-times {
  margin: 0;
  color: #8B8080;
  font-size: 14px;
  font-weight: 400;
}

.account-orders__recipient {
  margin: 0;
}

.account-orders__recipient-row {
  display: flex;
  gap: 8px;
}

.account-orders__recipient-row dt {
  margin: 0;
  color: #8a8080;
}

.account-orders__recipient-row dd {
  margin: 0;
  color: #8B8080;
  font-size: 14px;
  font-weight: 400;
}

.account-orders__products {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.account-orders__product {
  display: flex;
  gap: 34px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #ececec;
  justify-content: space-between;
}

.account-orders__product-main-info {
  display: flex;
  gap: 16px;
  align-items: center;
}

.account-orders__product:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.account-orders__product-image {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.account-orders__product--service {
  border-bottom-style: dashed;
}

.account-orders__product--with-services {
  border-bottom: none;
  padding-bottom: 0;
}

.account-orders__product-name {
  display: block;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  max-width: 370px;
}

.account-orders__product-name:hover {
  color: #f96332;
}

.account-orders__product-options {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  color: #8a8080;
  font-size: 13px;
}

.account-orders__product-prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.account-orders__price-old {
  color: #8B8080;
  font-size: 18px;
  font-weight: 400;
  text-decoration: line-through;
}

.account-orders__price {
  color: #8B8080;
  font-size: 18px;
  font-weight: 400;
}

.account-orders__price-container {
  display: flex;
  flex-direction: row;
  gap: 34px;
}

.account-orders__line-total {
  font-weight: 400;
  color: #000000;
  font-size: 22px;
}

.account-orders__qty {
  color: #8B8080;
  font-size: 18px;
  font-weight: 400;
}

.account-orders__services {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 96px;
}

.account-orders__services--with-border {
  padding-bottom: 12px;
  border-bottom: 1px solid #ececec;
}

.account-orders__service {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 8px 0 0;
  justify-content: space-between;
}

.account-orders__service-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.account-orders__service-image {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.account-orders__service-content {
  min-width: 0;
}

.account-orders__service-name {
  display: block;
  color: #61729E;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
}

.account-orders__service-price {
  color: #8B8080;
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}

.account-orders__service + .account-orders__service {
  border-top: 1px dashed #ececec;
}

.account-orders__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 8px;
}

.account-orders__footer-item {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
}

.account-orders__footer-label {
  color: #8B8080;
  font-size: 18px;
  font-weight: 400;
}

.account-orders__footer-value {
  color: #8B8080;
  font-size: 18px;
  font-weight: 400;
}

.account-orders__footer-total {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.account-orders__footer-sum {
  color: #000000;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
}

.account-orders__empty {
  padding: 18px 16px;
  border: 1px dashed #d8d8d8;
  border-radius: 8px;
  background: #fbfbfb;
}

.account-orders__empty-text {
  margin: 0;
  color: #61729e;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .account-orders__summary {
    flex-wrap: wrap;
  }

  .account-orders__card[open] .account-orders__summary {
    border-bottom: 1px solid #ececec;
  }

  .account-orders__thumbs {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .account-orders__toggle {
    margin-left: auto;
  }

  .account-orders__details-grid {
    grid-template-columns: 1fr;
  }

  .account-orders__product {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .account-orders__services {
    margin-left: 0;
  }

  .account-orders__product-prices {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .account-orders__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .account-orders__footer-total {
    margin-left: 0;
    text-align: left;
  }

  .account-orders__service {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .account-orders__service-price {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 767px) {
    .account-orders__details-grid {
        display: flex;
        flex-direction: column;
    }

    .account-orders__product-main-info {
        display: flex;
        flex-direction: column;
    }

    .cart-widget__item-container {
        display: flex;
        flex-direction: column;
    }

    .cart-widget__content {
        width: 250px !important;
        padding-bottom: 16px;
    }
}

.account-cart-tab__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(34, 31, 31, 0.06);
}

.account-cart-tab__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  min-height: 112px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #ffffff;
}

.account-cart-tab__image-link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
}

.account-cart-tab__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.account-cart-tab__content {
  flex: 1;
  min-width: 0;
}

.account-cart-tab__name {
  color: #221f1f;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.account-cart-tab__name:hover {
  color: #f96332;
}

.account-cart-tab__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 85px;
  height: 40px;
  border-radius: 8px;
  background: #f96332;
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.account-cart-tab__button:hover {
  background: #fc9e75;
  color: #ffffff;
}

.account-cart-tab .section-head__title {
  font-size: 24px;
  margin-bottom: 16px;
}

.account-cart-tab__img-empty {
  width: 300px;
}

.account-cart-tab__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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: 0;
  border-radius: 50%;
  background: #ffffff;
  padding: 0;
  cursor: pointer;
}

.home__banner-dot.is-active {
  background: #f96332;
}

.home__banner-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.home__banner-arrow {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.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 .slider--home-products .product-card {
  flex: 0 0 clamp(220px, calc((100% - 48px) / 4), 246px);
  gap: 12px;
  padding: 12px;
}

.home .slider--home-products .product-card__img-wrap {
  height: 224px;
}

.home .slider--home-products .product-card__brand-logo {
  width: 36px;
  height: 36px;
}

.home .slider--home-products .product-card__badge {
  height: 30px;
  font-size: 12px;
}

.home .slider--home-products .product-card__name {
  font-size: 13px;
}

.home .slider--home-products .product-card__stars img,
.home .slider--home-products .product-card__reviews-icon {
  width: 18px;
  height: 18px;
}

.home .slider--home-products .product-card__reviews-count {
  font-size: 15px;
}

.home .slider--home-products .product-card__action-btn img {
  width: 20px;
  height: 20px;
}
*/

.home .slider--home-products .slider__track {
  gap: 16px;
}

.home .slider--home-products .product-card {
  min-width: 0;
  gap: 16px;
}

.home .slider--home-products .product-card__img-wrap {
  height: 212px;
}

.home .slider--home-products .product-card__brand-logo {
  height: 34px;
  width: 34px;
}

.home .slider--home-products .product-card__stars img,
.home .slider--home-products .product-card__reviews-icon {
  width: 16px;
  height: 16px;
}

.home .slider--home-products .product-card__reviews-count {
  font-size: 16px;
  font-weight: 400;
}

.home .slider--home-products .product-card__price-old span:first-child {
  font-size: 20px;
  text-decoration: line-through;
}

.home .slider--home-products .product-card__price-old-currency {
  font-size: 12px;
  text-transform: uppercase;
}

.home .slider--home-products .product-card__price span:first-child {
  font-size: 30px;
}

.home .slider--home-products .product-card__price-currency {
  font-size: 16px;
  text-transform: uppercase;
}

.home .slider--home-products .product-card__cart-btn {
  width: 35px;
  height: 35px;
}

.home .slider--home-products .product-card__cart-btn img {
  width: 20px;
  height: 20px;
}

.home .slider--home-products .product-card__footer-badges--text {
  max-width: calc(100% - 4px);
}

.home .slider--home-products .product-card__label {
  height: 34px;
}

.home .slider .product-card {
  min-width: 0;
  gap: 16px;
}

.home .slider .product-card__img-wrap {
  height: 212px;
}

.home .slider .product-card__brand-logo {
  height: 34px;
  width: 34px;
}

.home .slider .product-card__stars img,
.home .slider .product-card__reviews-icon {
  width: 16px;
  height: 16px;
}

.home .slider .product-card__reviews-count {
  font-size: 16px;
  font-weight: 400;
}

.home .slider .product-card__price-old span:first-child {
  font-size: 20px;
  text-decoration: line-through;
}

.home .slider .product-card__price-old-currency {
  font-size: 12px;
  text-transform: uppercase;
}

.home .slider .product-card__price span:first-child {
  font-size: 30px;
}

.home .slider .product-card__price-currency {
  font-size: 16px;
  text-transform: uppercase;
}

.home .slider .product-card__cart-btn {
  width: 35px;
  height: 35px;
}

.home .slider .product-card:hover .product-card__cart-btn--with-text,
.home .slider .product-card--hovered .product-card__cart-btn--with-text,
.home .slider .product-card:hover .product-card__cart-btn-in-cart,
.home .slider .product-card--hovered .product-card__cart-btn-in-cart {
  width: fit-content;
  padding: 0 12px;
  justify-content: flex-start;
  gap: 8px;
}

.home .slider .product-card:hover .product-card__cart-btn--with-text .product-card__cart-btn-text,
.home .slider .product-card--hovered .product-card__cart-btn--with-text .product-card__cart-btn-text,
.home .slider .product-card:hover .product-card__cart-btn-in-cart .product-card__cart-btn-text,
.home .slider .product-card--hovered .product-card__cart-btn-in-cart .product-card__cart-btn-text {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.home .slider .product-card:hover .product-card__cart-btn--with-text .product-card__cart-btn-text,
.home .slider .product-card--hovered .product-card__cart-btn--with-text .product-card__cart-btn-text {
  color: #ffffff;
}

.home .slider .product-card:hover .product-card__cart-btn--notify.is-notified .product-card__cart-btn-text,
.home .slider .product-card--hovered .product-card__cart-btn--notify.is-notified .product-card__cart-btn-text {
  color: #666666;
}

.home .slider .product-card__cart-btn-in-cart .product-card__cart-btn-text,
.home .slider .product-card__cart-btn--notify.is-notified .product-card__cart-btn-text {
  color: #666666;
}

.home .slider .product-card:hover .product-card__cart-btn-in-cart .product-card__cart-btn-text,
.home .slider .product-card--hovered .product-card__cart-btn-in-cart .product-card__cart-btn-text {
  color: #666666;
}

.home .slider .product-card__cart-btn img {
  width: 20px;
  height: 20px;
}

.home .slider .product-card__footer-badges--text {
  max-width: calc(100% - 4px);
}

.home .slider .product-card__label {
  height: 34px;
}

@media (min-width: 1200px) {
  .home .slider--home-products .product-card,
  .home .slider .product-card {
    flex: 0 0 calc((100% - 48px) / 4);
    max-width: calc((100% - 48px) / 4);
  }
}

.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: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.home__news-card:hover {
  border-color: #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: 767px) {
  .account-cart-tab__list {
    padding: 16px;
    gap: 16px;
  }

  .account-cart-tab__item {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px;
    min-height: 0;
  }

  .account-cart-tab__image-link {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
  }

  .account-cart-tab__name {
    font-size: 16px;
  }

  .account-cart-tab__button {
    width: 100%;
  }

  .account-reviews__tabs {
    flex-direction: column;
  }

  .account-reviews__tab {
    width: 100%;
    justify-content: flex-start;
  }

  .account-reviews__card,
  .account-reviews__summary {
    flex-wrap: wrap;
  }

  .account-reviews__button {
    width: 100%;
  }

  .account-reviews__toggle {
    margin-left: 0;
    margin-top: 0;
  }

  .account-reviews__details {
    padding: 0 16px 16px;
  }
}

@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;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.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;
}

.cat__filter--with-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 680px;
  align-items: stretch;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.cat__filter--with-banner .cat__filter-col {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cat__filter-banner {
  min-width: 0;
}

.cat__filter-banner #column-right {
  width: 100%;
  max-width: none;
  float: none;
  padding: 0;
}

.cat__filter-banner .home__banner {
  height: 392px;
}

.cat__filter-banner .home__banner-title {
  display: none;
}

.cat__filter-banner .sidebar-banner {
  height: 100%;
  padding: 0;
  border-bottom: 0;
}

.cat__filter-banner .sidebar-banner__viewport,
.cat__filter-banner .sidebar-banner__slide,
.cat__filter-banner .sidebar-banner__link,
.cat__filter-banner .sidebar-banner__image {
  height: 100%;
}

.cat__filter-banner .sidebar-banner__viewport {
  min-height: 360px;
}

.cat__filter-banner .sidebar-banner__image {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.cat__filter-banner .sidebar-banner__dots {
  padding-top: 12px;
}

.account-newsletter {
  font-family: "Fact", sans-serif;
}

.account-newsletter__container {
  gap: 18px;
}

.account-newsletter__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.account-newsletter__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.account-newsletter__title {
  margin: 0;
}

.account-newsletter__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-newsletter__fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.account-newsletter__field {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-newsletter__label {
  color: #8b8080;
}

.account-newsletter__toggle-group {
  flex-wrap: wrap;
}

.account-newsletter__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.account-newsletter__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Fact", sans-serif;
  line-height: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.account-newsletter__button--secondary {
  border: 1px solid #d0d0d0;
  background: #ffffff;
  color: #221f1f;
}

.account-newsletter__button--secondary:hover {
  border-color: #a99994;
  color: #221f1f;
  background: #fbfbfb;
}

.account-newsletter__button--primary {
  border: 1px solid #f96332;
  background: #f96332;
  color: #ffffff;
}

.account-newsletter__button--primary:hover {
  border-color: #e7511f;
  background: #e7511f;
  color: #ffffff;
}

@media (max-width: 767px) {
  .account-newsletter__card {
    padding: 18px 16px;
  }

  .account-newsletter__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .account-newsletter__button {
    width: 100%;
  }
}

.cat__catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(329px, 1fr));
  grid-auto-rows: 1fr;
  gap: 16px;
}

.cat__catalog-wrap {
  position: relative;
}

.cat__catalog-card {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cat__catalog-card.is-expanded {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  height: auto;
}

.cat__catalog-card-img {
  height: 156px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat__catalog-card-main-link {
    display: block;
    text-decoration: none;
}

.cat__catalog-card-title {
    color: #f96332;
}

.cat__catalog-card-main-link:hover .cat__catalog-card-title {
    color: #f96332;
}

.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-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat__catalog-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 240px;
  overflow: hidden;
}

.cat__catalog-card-links.is-expanded .cat__catalog-card-list {
  max-height: 2000px;
}

.cat__catalog-card-links--static .cat__catalog-card-list {
  max-height: none;
  overflow: visible;
}

.cat__catalog-card-link {
  font-size: 16px;
  color: #8b8080;
}

.cat__catalog-card-link:hover {
  color: #f96332;
}

.cat__catalog-card-links-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #61729e;
  transition: color 0.2s ease;
}

.cat__catalog-card-links-more:hover {
  color: #f96332;
}

.cat__catalog-card-links-more:hover .cat__catalog-card-links-more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}

.cat__catalog-card-links-more-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.cat__catalog-card-links.is-expanded .cat__catalog-card-links-more-icon {
  transform: rotate(0deg);
}

.cat__catalog-card:has(.cat__catalog-card-img) {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.cat__seo {
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  padding: 1rem;
  background: #ffffff;
}

.cat__seo-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 16px;
  cursor: pointer;
  background: #ffffff;
  border-right: 1px solid #8B8080;
}

.cat__seo-item:nth-child(4n),
.cat__seo-item:last-child {
  border-right: none;
}

.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;
  text-align: center;
}

.cat__seo-title:hover {
  color: #f96332;
}

.cat__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cat__section--popular-reviews .review-card-wrap {
  align-self: stretch;
}

.cat__section--popular-reviews .review-card {
  height: 100%;
}

.cat__section--popular-reviews .review-card__body {
  flex: 1;
}

.cat__section--popular-reviews .review-card__text {
  flex: 1;
}

.cat__review-form {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cat__review-form-left {
  flex: 0 0 323px;
  padding: 16px;
}

.cat__review-form-left--transparent {
  background: transparent;
  padding: 0;
}

.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__filter {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .cat__filter-col {
    /*flex: 0 0 calc(50% - 8px);*/
    grid-template-columns: repeat(3, 1fr);
  }

  .cat__filter--with-banner {
    grid-template-columns: 1fr;
  }

  .cat__filter--with-banner .cat__filter-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cat__filter-banner .sidebar-banner__viewport {
    min-height: auto;
  }

  .cat__seo+.cat__seo {
    display: none;
  }

  .cat__seo {
    gap: 16px;
  }

  .cat__seo-item {
    border-radius: 8px;
    gap: 8px;
  }

  .cat__seo-img {
    height: 116px;
  }

  .cat__seo-title {
    font-size: 16px;
    font-weight: 400;
  }

  .cat__review-wrap:first-child {
    margin-left: 16px;
  }

  .cat__review-form-left {
    display: none;
  }
}

@media (max-width: 767px) {
  .cat__filter-col {
    flex: 0 0 100%;
    grid-template-columns: repeat(1, 1fr);
  }

  .cat__filter--with-banner .cat__filter-col {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .cat__seo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .cat__seo-item:nth-child(4n) {
    border-right: 1px solid #8B8080;
  }

  .cat__seo-item:nth-child(2n),
  .cat__seo-item:last-child {
    border-right: none;
  }
}

.catp {
  font-family: "Fact", sans-serif;
}

.catp__container {
  max-width: 1408px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catp__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catp__title {
  font-size: 24px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  margin: 0;
}

.catp__subcats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 16px;
  align-items: flex-start;
}

.catp__subcat {
  flex: 0 0 164px;
  background: #ffffff;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  padding: 16px;
  transition: border-color 0.2s ease;
}

.catp__subcat:hover {
  border-color: #f96332;
  cursor: pointer;
}

.catp__subcat:hover span {
  color: #f96332;
}

.catp__subcat-img {
  height: 116px;
  width: 100%;
  object-fit: contain;
}

.catp__subcat-name {
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  color: #000000;
  line-height: 1;
}

.catp__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap-reverse;
}

.catp__toolbar-count {
  font-size: 16px;
  color: #8b8080;
}

.catp__layout {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

.catp__sidebar {
  flex: 0 0 342px;
  min-width: 0;
  max-width: 342px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  align-self: flex-start;
}

.catp__sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0 16px;
}

.catp__sidebar-title {
  font-size: 22px;
  font-weight: 500;
  color: #000000;
}

.catp__sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.catp__sidebar-toggle img {
  width: 28px;
  height: 28px;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

.catp__sidebar-close {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.catp__sidebar-close img {
  width: 24px;
  height: 24px;
}

.catp__sidebar.is-collapsed .filter-group,
.catp__sidebar.is-collapsed .catp__sidebar-groups,
.catp__sidebar.is-collapsed .catp__sidebar-actions {
  display: none;
}

.catp__sidebar.is-collapsed .catp__sidebar-toggle img {
  transform: rotate(0deg);
}

.catp__sidebar-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catp__sidebar-groups aside {
  width: 100%;
}

.catp__sidebar-groups>.filter-group:first-child {
  border-bottom: none;
}

.catp__sidebar-extras {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.catp__sidebar-actions {
  display: none;
  gap: 8px;
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e3e3e3;
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
}

.catp__sidebar-actions-clear {
  flex: 1 0 0;
  min-width: 0;
  height: 40px;
  border: 1px solid #f96332;
  border-radius: 8px;
  background: none;
  font-family: "Fact", sans-serif;
  font-size: 14px;
  color: #f96332;
  cursor: pointer;
}

.catp__sidebar-actions-apply {
  flex: 1 0 0;
  min-width: 0;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: #f96332;
  font-family: "Fact", sans-serif;
  font-size: 14px;
  color: #ffffff;
  cursor: pointer;
}

.catp__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.catp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.catp__grid>.product-card {
  margin-left: initial;
}

.catp__grid--grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.catp__grid--grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.catp__grid--grid-4 .product-card__img-wrap {
  height: 212px;
}

.catp__grid--grid-4 .product-card__brand-logo {
  height: 34px;
  width: 34px;
}

.catp__grid--grid-4 .product-card__stars img,
.catp__grid--grid-4 .product-card__reviews-icon {
  width: 16px;
  height: 16px;
}

.catp__grid--grid-4 .product-card__reviews-count {
  font-size: 16px;
  font-weight: 400;
}

.catp__grid--grid-4 .product-card__price-old span:first-child {
  font-size: 20px;
  text-decoration: line-through;
}

.catp__grid--grid-4 .product-card__price-old-currency {
  font-size: 12px;
  text-transform: uppercase;
}

.catp__grid--grid-4 .product-card__price span:first-child {
  font-size: 30px;
}

.catp__grid--grid-4 .product-card__price-currency {
  font-size: 16px;
  text-transform: uppercase;
}

.catp__grid--grid-4 .product-card__cart-btn {
  width: 35px;
  height: 35px;
}

.catp__grid--grid-4 .product-card__cart-btn img {
  width: 20px;
  height: 20px;
}

.catp__grid--grid-4 .product-card__footer-badges--text {
  max-width: calc(100% - 4px);
}

.catp__grid--grid-4 .product-card__label {
  height: 34px;
}

.catp__product-card {
  background: #ffffff;
  border-radius: 8px;
  min-height: 538px;
}

.catp__seo {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catp__seo-intro {
  font-size: 16px;
  color: #221f1f;
  line-height: 1.77;
}

.catp__seo-brand {
  font-weight: 500;
}

.catp__seo-intro-text {
  color: #8b8080;
}

.catp__seo-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.catp__seo-heading {
  font-size: 20px;
  font-weight: 500;
  color: #221f1f;
  letter-spacing: 1px;
  line-height: 1.32;
}

.catp__seo-text {
  font-size: 16px;
  color: #8b8080;
  line-height: 1.77;
}

.catp__seo-more {
  display: inline-flex;
  align-items: center;
  font-family: "Fact", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #61729e;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.catp__seo-more-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transform: rotate(180deg);
}

@media (max-width: 1199px) {
  .catp__sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    max-width: 342px;
    width: 100%;
    overflow-y: auto;
    z-index: 200;
    border-radius: 0;
    padding-bottom: 56px;
  }

  .catp__sidebar.is-open {
    display: flex;
  }

  .catp__sidebar-actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 342px;
    z-index: 201;
  }

  .catp__sidebar-toggle,
  .catp__sidebar-extras {
    display: none;
  }

  .catp__sidebar-close {
    display: flex;
  }

  .catp__content {
    gap: 16px;
  }

  .catp__grid {
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  }

  .catp .toolbar-controls {
    display: none;
  }

  .catp .toolbar-mobile {
    display: flex;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .catp__sidebar {
    position: fixed;
    inset: 0;
    max-width: none;
    width: 100vw;
    height: 100dvh;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 200;
  }

  .catp__sidebar.is-open {
    display: flex;
  }

  .catp__sidebar-header {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    background: #ffffff;
  }

  .catp__sidebar-groups {
    position: relative;
    z-index: 1;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 72px;
  }

  .catp__sidebar-actions {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    background: #ffffff;
  }

  .catp__sidebar .ocf-container {
    position: static !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    transform: none !important;
    box-shadow: none !important;
    z-index: 1 !important;
  }

  .catp__sidebar .ocf-footer {
    display: none !important;
  }

  .catp__sidebar .ocf-content {
    height: auto !important;
  }

  .catp__sidebar .ocf-body {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: auto !important;
  }

  .catp__sidebar .ocf-body > .ocf-filter-list {
    height: auto !important;
    overflow: visible !important;
  }

  .catp__sidebar .ocf-close-mobile,
  .catp__sidebar .ocf-btn-mobile-fixed {
    display: none !important;
  }

  .catp__grid {
    gap: 8px;
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  }

  .catp__subcats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    align-items: flex-start;
  }
}

.pi {
  background: #f5f5f4;
  font-family: "Fact", sans-serif;
}

.pi__container {
  max-width: 1408px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pi__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__tabs {
  background: #ffffff;
  border-radius: 8px;
  padding: 0 16px;
  display: flex;
  gap: 24px;
  align-items: center;
  overflow: auto;
}

.pi__tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  font-size: 14px;
  color: #221f1f;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}

.pi__tab:hover {
  color: #f96332;
}

.pi__tab--active {
  color: #f96332;
  border-bottom-color: #f96332;
}

.pi__main {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pi__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__photo {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__photo-slider {
  position: relative;
  height: 429px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.pi__photo-main {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 8px;
}

.pi__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.pi__photo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.pi__photo-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.pi__photo-nav-btn {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.pi__photo-nav-btn img {
  width: 24px;
  height: 24px;
}

.pi__photo-nav-btn--next img {
  transform: rotate(180deg);
}

.pi__photo-nav-btn:hover img {
  filter: invert(47%) sepia(95%) saturate(548%) hue-rotate(335deg) brightness(106%) contrast(97%);
}

.pi__photo-badge {
  position: absolute;
  top: 0;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  white-space: nowrap;
}

.pi__photo-badge--sale {
  left: 0;
  /*background: #f96332;*/
  background: #e64d4d;
}

.pi__photo-badge--new {
  right: 0;
  background: #0c0909;
}

.pi__photo-thumbs {
  height: 70px;
  display: flex;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  flex-shrink: 0;
}

.pi__photo-thumb {
  flex: 0 0 54px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  background: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pi__photo-thumb--active,
.pi__photo-thumb:hover {
  border-color: #f96332;
}

.pi__photo-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.pi__photo-thumb-play {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pi__subinfo {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pi__video-consultation {
  background: #ecf3fb;
  border: 1px solid #d5e3ee;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pi__video-consultation-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 329px;
}

.pi__video-consultation-info p {
  margin: 0;
}

.pi__video-consultation-title {
  font-size: 14px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
}

.pi__video-consultation-subtitle {
  font-size: 14px;
  line-height: 1;
}

.pi__video-consultation-subtitle-text {
  color: #766f6e;
}

.pi__video-consultation-schedule {
  color: #3e77aa;
}

.pi__video-consultation-schedule:hover {
  color: #f96332;
}

.pi__schedule-wrapper {
  position: relative;
  display: inline-block;
}

.pi__schedule-tooltip {
  position: absolute;
  bottom: 120%;
  left: 0;
  min-width: 220px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #d5e3ee;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  line-height: 1.4;
  color: #221f1f;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 20;
}

.pi__schedule-wrapper:hover .pi__schedule-tooltip {
  opacity: 1;
  visibility: visible;
}

.pi__video-consultation-btn {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 201px;
  height: 38px;
  padding: 0 16px;
  background: #3e77aa;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.pi__video-consultation-btn:hover {
  background: #0036ad;
}

.pi__video-consultation-btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__map {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pi__map-chars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}

.pi__map-chars-title {
  font-size: 14px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  margin: 0;
}

.pi__map-chars-row {
  /*display: flex;*/
  /*gap: 32px;*/
  /*align-items: flex-start;*/
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 16px 32px;
}

/* Previous collapsed-state rule is preserved in comments for quick rollback. */
/*.pi__map-chars-row .pi__map-char:nth-child(n+4) {
  display: none;
}*/
.pi__map-chars.is-expanded .pi__map-char {
  display: flex;
}

.pi__map-chars-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__map-char {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pi__map-char.is-hidden {
  display: none;
}

.is-expanded .pi__map-char.is-hidden {
  display: flex;
}

.pi__map-char-label {
  font-size: 14px;
  color: #766f6e;
  line-height: 20px;
}

.pi__map-char-value {
  font-size: 14px;
  color: #221f1f;
  line-height: 20px;
}

.pi__map-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 16px;
}

.pi__map-download {
  align-self: flex-start;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  color: #3e77aa;
  line-height: normal;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.pi__map-download:hover {
  color: #f96332;
}

.pi__map-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: #3e77aa;
  line-height: normal;
}

.pi__map-more:hover {
  color: #f96332;
}

.pi__map-more:hover .pi__map-more-icon {
  filter: invert(47%) sepia(95%) saturate(548%) hue-rotate(335deg) brightness(106%) contrast(97%);
}

.pi__map-more-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}

.pi__map-more[aria-expanded=true] .pi__map-more-icon {
  transform: rotate(0deg);
}

#section-about,
#section-specs,
#section-reviews,
#section-video,
#section-together,
#drawings-view,
#reviews-view {
  scroll-margin-top: var(--teplokram-header-offset, 120px);
}

.pi__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__product-header {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__product-name {
  font-size: 22px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  display: flex;
  align-items: center;
  margin: 0;
}

.pi__product-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.pi__product-badge-img {
  max-width: 72px;
  max-height: 45px;
  border-radius: 8px;
  object-fit: contain;
  flex-shrink: 0;
}

.pi__product-badge-img--wide {
  width: 55px;
}

.pi__product-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  white-space: nowrap;
}

.pi__product-label--green {
  background: #329913;
}

.pi__product-label--red {
  background: #e64d4d;
}

.pi__product-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #e9e9e9;
  padding-bottom: 16px;
}

.pi__product-meta-left {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pi__product-rating {
  display: flex;
  gap: 4px;
  align-items: center;
}

.pi__product-stars {
  display: flex;
  align-items: center;
}

.pi__product-star {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__product-reviews {
  font-size: 14px;
  color: #3e77aa;
  line-height: 20px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.pi__product-review-link {
  font-size: 14px;
  color: #766f6e;
  line-height: 20px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.pi__product-article {
  font-size: 20px;
  color: #221f1f;
  line-height: normal;
  white-space: nowrap;
  margin: 0;
}

.pi__product-article-num {
  color: #766f6e;
}

.pi__linked {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__linked-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__linked-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pi__linked-group-name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  /*color: #f96332;*/
  line-height: 20px;
  margin: 0;
}

.pi__linked-current {
  color: #f96332;
  font-size: 13px;
  font-weight: 600;
  line-height: 18px;
}

.pi__linked-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 4px;
}

.pi__linked-item {
  width: calc((100% - 36px) / 4);
  flex: 0 0 calc((100% - 36px) / 4);
  max-width: calc((100% - 36px) / 4);
  text-decoration: none;
  /*min-height: 140px;*/
  padding: 12px 10px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  color: #f96332;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.pi__linked-item:hover {
  border-color: #f96332;
  box-shadow: 0 0 0 1px rgba(242, 140, 0, 0.15);
  color: #f96332;
}

.pi__linked-item--active {
  border-color: #f96332;
  box-shadow: 0 0 0 1px rgba(242, 140, 0, 0.2);
}

.pi__linked-item-image {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.pi__linked-item-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  word-break: break-word;
}

@media (max-width: 991px) {
  .pi__linked-item {
    width: calc((100% - 12px) / 2);
    flex: 0 0 calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }
}

@media (max-width: 575px) {
  .pi__linked-item {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.pi__linked-item--active .pi__linked-item-name {
  color: #f96332;
  font-weight: 600;
}

.pi__variants {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.pi__variant-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__variant-group.has-error .pi__variant-label {
  color: #e05252;
}

.pi__variant-group.has-error .pi__variant-value {
  color: #e05252;
}

.pi__variant-group .pi__variant-error {
  color: #e05252;
  font-size: 13px;
  margin: 0;
}

.pi__variant-group.has-error .pi__variant-option,
.pi__variant-group.has-error .pi__variant-swatch,
.pi__variant-group.has-error .pi__variant-img-option {
  outline: 1px solid #e05252;
}

.pi__variant-label {
  font-size: 16px;
  color: #766f6e;
  line-height: normal;
}

.pi__variant-value {
  color: #221f1f;
}

.pi__variant-options {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pi__variant-swatch {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #e3e3e3;
  padding: 0;
  flex-shrink: 0;
  overflow: hidden;
}

.pi__variant-swatch--active {
  width: 36px;
  height: 36px;
  background: #e5f5ec;
  border-color: #00a046;
  padding: 4px;
}

.pi__variant-swatch-color {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  display: block;
}

.pi__variant-option {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  font-size: 16px;
  color: #8b8080;
  white-space: nowrap;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pi__variant-option--active {
  background: #e5f5ec;
  border-color: #00a046;
  color: #221f1f;
}

.pi__variant-option--unavailable {
  pointer-events: none;
  position: relative;
  overflow: hidden;
}

.pi__variant-option--unavailable::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top right, transparent 48.5%, #e3e3e3 49.2%, #e3e3e3 50.8%, transparent 51.5%);
  pointer-events: none;
}

.pi__variant-img-option {
  /*height: 36px;*/
  /*width: 100px;*/
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
}

.pi__variant-img-option img {
  height: 36px;
  width: auto;
  object-fit: cover;
  display: block;
}

.pi__variant-img-option--active {
  background: #e5f5ec;
  border-color: #00a046;
  padding: 2px;
}

.pi__variant-img-option--active img {
  height: 32px;
  border-radius: 6px;
}

.pi__quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: flex-start;
  padding: 0 16px;
}

.pi__quick-actions-action {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  color: #221f1f;
}

.pi__quick-actions-action:hover {
  color: #f96332;
}

.pi__quick-actions-action:hover .pi__quick-actions-icon {
  filter: invert(47%) sepia(95%) saturate(548%) hue-rotate(335deg) brightness(106%) contrast(97%);
}

.pi__quick-actions-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__quick-actions-label {
  line-height: 20px;
  white-space: nowrap;
}

.pi__cart-block {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.pi__cart-block--unavailable {
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.pi__cart-block--unavailable-discontinued {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  width: 100%;
  justify-content: space-around;
}

.pi__cart-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.pi__price-block {
  flex: 0 0 124px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pi__price-block p {
  margin: 0;
}

.pi__availability,
.pi__availability-only-order {
  font-size: 16px;
  font-weight: 700;
  color: #329913;
  line-height: normal;
}

.pi__availability-only-order {
  color: #61729e;
}

.pi__price-old {
  color: #766f6e;
  line-height: normal;
}

.pi__price-old-value {
  font-size: 18px;
  text-decoration: line-through;
}

.pi__price-old-currency {
  font-size: 12px;
}

.pi__price {
  color: #f96332;
  line-height: normal;
}

.pi__price-value {
  font-size: 40px;
}

.pi__price-currency {
  font-size: 22px;
  text-transform: uppercase;
}

.pi__price-retail,
.pi__drawings-price-retail {
  color: #766f6e;
  line-height: 1.1;
  margin: 0;
}

.pi__price-retail-label,
.pi__drawings-price-retail-label {
  /*margin-right: 4px;*/
}

.pi__price-retail-value,
.pi__drawings-price-retail-value {
  font-size: 14px;
  font-weight: 400;
}

.pi__price-retail-currency,
.pi__drawings-price-retail-currency {
  font-size: 12px;
  text-transform: uppercase;
}

.pi__counter-row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pi__counter-actions {
  display: none;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

.pi__counter-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pi__counter-action-btn img {
  width: 16px;
  height: 16px;
}

.pi__expand-list {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.pi__expand-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.pi__expand-item--bg {
  background: #ffffff;
}

.pi__expand-item[href] {
  text-decoration: underline;
  color: #3e77aa;
}

.pi__expand-label {
  font-size: 16px;
  color: #3e77aa;
  line-height: normal;
  white-space: nowrap;
}

.pi__expand-icon {
  width: 24px;
  height: 24px;
  transform: rotate(180deg);
}

.pi__counter {
  width: 132px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  height: 48px;
  /*background: #ffffff;*/
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  overflow: hidden;
}

.pi__counter:hover {
  border-color: #f96332;
}

.pi__counter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pi__counter-btn img {
  width: 24px;
  height: 24px;
}

.pi__counter-value {
  font-size: 16px;
  color: #221f1f;
  line-height: normal;
  /*left: 45%;*/
  position: sticky;
  border: 0;
  text-align: center;
  width: 28px;
}

.pi__buy-btn {
  flex: 0 0 230px;
  height: 48px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #f96332;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
}

.pi__buy-btn:hover {
  background: #fc9e75;
}

.pi__buy-btn--in-cart {
  background: #ffffff;
  color: #3e77aa;
}

.pi__buy-btn--in-cart:hover {
  background: #ffffff;
}

.pi__buy-btn--in-cart .pi__buy-btn-label {
  text-decoration: underline;
  text-transform: none;
}

.pi__buy-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__unavailable-text {
  font-size: 20px;
  color: #766f6e;
  line-height: normal;
  margin: 0;
}

.pi__unavailable-row {
  display: flex;
  gap: 32px;
  align-items: center;
}

.pi__unavailable-btn {
  flex: 1;
  height: 48px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  color: #f96332;
  transition: opacity 0.2s ease;
}

.pi__unavailable-btn--notify {
  flex: 0 0 auto;
  width: fit-content;
  padding: 0 12px;
  background: #ffffff;
  color: #f96332;
  border: 1px solid #f96332;
}

.pi__unavailable-btn--notify.is-notified {
  background: #e7e4e4;
  color: #766f6e;
  border-color: #e7e4e4;
}

.pi__unavailable-btn--notify:not(.is-notified) .pi__unavailable-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}

.pi__unavailable-btn--notify.is-notified .pi__unavailable-icon {
  filter: none;
}

.pi__unavailable-btn:hover {
  opacity: 0.75;
}

.pi__unavailable-btn--notify:hover {
  opacity: 1;
}

.pi__unavailable-btn--notify.is-notified:hover {
  opacity: 1;
}

.pi__unavailable-btn--outlined {
  border: 1px solid #f96332;
  width: 302px;
  max-width: 100%;
}

.pi__unavailable-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__services {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

.pi__services-header {
  height: 51px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #e3e3e3;
  flex-shrink: 0;
}

.pi__services-title {
  font-size: 14px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  margin: 0;
}

.pi__services-count {
  font-size: 14px;
  font-weight: 400;
  color: #766f6e;
}

.pi__services-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 16px;
  flex-shrink: 0;
  width: 100%;
}

.pi__services-row--sub {
  padding-left: 16px;
}

.pi__services-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pi__services-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pi__services-check {
  appearance: none;
  width: 18px;
  height: 18px;
  margin: 15px;
  border-radius: 2px;
  border: 2px solid #221f1f;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.pi__services-check:checked {
  background: #f96332;
  border-color: #f96332;
}

.pi__services-check:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 5px;
  height: 9px;
  border: 2px solid #ffffff;
  border-left: none;
  border-top: none;
  transform: rotate(45deg);
}

.pi__services-radio {
  appearance: none;
  width: 20px;
  height: 20px;
  margin: 12px;
  border-radius: 50%;
  border: 2px solid #f96332;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}

.pi__services-radio:checked::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #f96332;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pi__services-thumb {
  width: 44px;
  height: 44px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.pi__services-name {
  font-size: 14px;
  color: #766f6e;
  line-height: 1.4;
}

.pi__services-link-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.pi__services-price {
  font-size: 22px;
  color: #221f1f;
  line-height: normal;
  white-space: nowrap;
}

.pi__services-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pi__services-chevron {
  width: 24px;
  height: 24px;
  display: block;
}

.pi__services-chevron--up {
  transform: rotate(90deg);
}

.pi__services-chevron--down {
  transform: rotate(-90deg);
}

.pi__services-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  font-size: 16px;
  color: #3e77aa;
  line-height: 1;
  flex-shrink: 0;
}

.pi__services-more:hover {
  color: #f96332;
}

.pi__services-more:hover .pi__services-more-icon {
  filter: invert(47%) sepia(95%) saturate(548%) hue-rotate(335deg) brightness(106%) contrast(97%);
}

.pi__services-more-icon {
  width: 24px;
  height: 24px;
}

.pi__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__detail {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.pi__detail--brands {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pi__detail--brands:hover .pi__brand-text {
  color: #f96332;
}

.pi__detail--brands:hover .pi__brand-arrow {
  filter: invert(47%) sepia(95%) saturate(548%) hue-rotate(335deg) brightness(106%) contrast(97%);
}

.pi__detail--delivery {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

.pi__detail--additional {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__detail-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.pi__detail-row--bordered {
  padding-bottom: 16px;
  align-items: flex-start;
  border-bottom: 1px solid #e3e3e3;
}

.pi__detail-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__detail-text {
  font-size: 14px;
  color: #221f1f;
  line-height: 20px;
}

.pi__detail-text-bold {
  font-weight: 700;
  line-height: 1.4;
}

.pi__delivery-header {
  display: flex;
  gap: 16px;
  align-items: center;
  height: 51px;
  padding: 0 16px;
  border-bottom: 1px solid #e3e3e3;
  flex-shrink: 0;
  width: 100%;
}

.pi__delivery-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  width: 100%;
}

.pi__delivery-item--pickup {
  align-items: flex-start;
}

.pi__delivery-item-left {
  display: flex;
  gap: 16px;
  align-items: center;
}

.pi__delivery-item--pickup .pi__delivery-item-left {
  align-items: flex-start;
}

.pi__delivery-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__delivery-icon--rounded {
  border-radius: 50%;
  object-fit: cover;
}

.pi__delivery-texts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pi__delivery-name {
  font-size: 14px;
  color: #221f1f;
  line-height: 20px;
}

.pi__delivery-map {
  font-size: 14px;
  color: #61729e;
  line-height: 20px;
}

.pi__delivery-map:hover {
  color: #f96332;
}

.pi__delivery-price {
  font-size: 14px;
  color: #766f6e;
  line-height: 20px;
  white-space: nowrap;
  text-align: right;
}

.pi__delivery-price--free {
  color: #329913;
}

.pi__brand-text {
  font-size: 14px;
  color: #221f1f;
  line-height: 20px;
  margin: 0;
}

.pi__brand-name {
  font-weight: 700;
}

.pi__brand-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__info-block {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 16px;
}

.pi__desc {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pi__desc-head {
  flex: 0 0 262px;
  height: 34px;
  top: 0;
  display: flex;
  align-items: center;
}

.pi__desc-title {
  font-size: 20px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
}

.pi__desc-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pi__desc-texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 10em;
  overflow: hidden;
}

@media (max-width: 767px) {
  .pi__desc-texts {
    max-height: 6em;
  }
}

.is-expanded .pi__desc-texts {
  max-height: none;
}

.pi__desc-text {
  max-width: 805px;
}

.pi__desc-text p {
  margin: 0;
}

.pi__desc-text-title {
  font-size: 14px;
  font-weight: 700;
  color: #221f1f;
  line-height: 1.4;
}

.pi__desc-text-body {
  font-size: 14px;
  color: #221f1f;
  line-height: 20px;
}

.pi__specs {
  display: flex;
  flex-direction: column;
  gap: 32px;
  /*max-width: 459px;*/
  max-width: 100%;
  max-height: 25em;
  overflow: hidden;
  margin: 0;
}

@media (max-width: 767px) {
  .pi__specs {
    max-height: 6em;
  }
}

.is-expanded .pi__specs {
  max-height: none;
}

.pi__spec {
  display: flex;
  gap: 2px;
  align-items: center;
}

.pi__spec-label-wrap {
  flex: 0 0 380px;
  display: flex;
  gap: 2px;
  align-items: flex-end;
}

.pi__spec-label {
  flex-shrink: 0;
  font-size: 14px;
  color: #221f1f;
  line-height: 20px;
}

.pi__spec-line {
  flex: 1;
  height: 0;
  border-bottom: 1px solid #e3e3e3;
}

.pi__spec-value {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: #221f1f;
  line-height: 20px;
}

.pi__specs-note {
  font-size: 16px;
  color: #766f6e;
  line-height: normal;
  margin: 0;
}

.pi__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__reviews {
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 16px;
}

.pi__reviews-sidebar {
  flex: 0 0 230px;
}

.pi__reviews-sidebar-inner {
  display: flex;
  gap: 16px;
  flex-direction: column;
}

.pi__reviews-title {
  font-size: 20px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  margin: 0;
}

.pi__reviews-rz {
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.pi__reviews-score {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pi__reviews-score-text {
  font-size: 14px;
  color: #221f1f;
  line-height: 20px;
}

.pi__reviews-score-star {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pi__reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pi__reviews-bar {
  display: flex;
  gap: 4px;
  align-items: center;
}

.pi__reviews-bar-num {
  flex: 0 0 8px;
  font-size: 14px;
  color: #221f1f;
  line-height: 20px;
}

.pi__reviews-bar-star {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.pi__reviews-bar-track {
  flex: 1;
  height: 4px;
  background: #e7e4e4;
  border-radius: 8px;
  overflow: hidden;
}

.pi__reviews-bar-fill {
  height: 4px;
  background: #f96332;
  border-radius: 8px;
}

.pi__reviews-bar-count {
  flex: 0 0 16px;
  font-size: 14px;
  color: #555770;
  line-height: 20px;
  text-align: right;
}

.pi__reviews-write-btn {
  width: 240px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f96332;
  border-radius: 8px;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  border: 1px solid #f96332;
}

.pi__reviews-write-btn:hover {
  background: #fc9e75;
  border-color: #fc9e75;
}

.pi__reviews-write-btn:focus,
.pi__reviews-write-btn:active,
.pi__reviews-write-btn:focus-visible,
.pi__reviews-write-btn.btn:focus,
.pi__reviews-write-btn.btn:active,
.pi__reviews-write-btn.btn:active:focus,
.pi__reviews-write-btn.btn-primary:focus,
.pi__reviews-write-btn.btn-primary:active,
.pi__reviews-write-btn.btn-primary:active:focus {
  background: #fc9e75;
  border-color: #fc9e75;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}

.pi__reviews-write-btn.js-show-more-reviews,
.pi__reviews-write-btn.js-show-more-reviews:hover,
.pi__reviews-write-btn.js-show-more-reviews:focus,
.pi__reviews-write-btn.js-show-more-reviews:focus-visible,
.pi__reviews-write-btn.js-show-more-reviews:active,
.pi__reviews-write-btn.js-show-more-reviews:active:hover,
.pi__reviews-write-btn.js-show-more-reviews:active:focus,
.pi__reviews-write-btn.js-show-more-reviews:active:focus-visible,
.pi__reviews-write-btn.js-show-more-reviews:hover:active,
.pi__reviews-write-btn.js-show-more-reviews:focus:active,
.pi__reviews-write-btn#show_more_reviews,
.pi__reviews-write-btn#show_more_reviews:hover,
.pi__reviews-write-btn#show_more_reviews:focus,
.pi__reviews-write-btn#show_more_reviews:focus-visible,
.pi__reviews-write-btn#show_more_reviews:active,
.pi__reviews-write-btn#show_more_reviews:active:hover,
.pi__reviews-write-btn#show_more_reviews:active:focus,
.pi__reviews-write-btn#show_more_reviews:active:focus-visible,
.pi__reviews-write-btn#show_more_reviews:hover:active,
.pi__reviews-write-btn#show_more_reviews:focus:active {
  background: #f96332 !important;
  border-color: #f96332 !important;
  color: #ffffff !important;
  box-shadow: none !important;
  outline: none !important;
  -webkit-box-shadow: none !important;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.pi__reviews-write-btn.js-show-more-reviews:hover,
.pi__reviews-write-btn.js-show-more-reviews:focus,
.pi__reviews-write-btn.js-show-more-reviews:focus-visible,
.pi__reviews-write-btn.js-show-more-reviews:active,
.pi__reviews-write-btn.js-show-more-reviews:active:hover,
.pi__reviews-write-btn.js-show-more-reviews:active:focus,
.pi__reviews-write-btn.js-show-more-reviews:active:focus-visible,
.pi__reviews-write-btn.js-show-more-reviews:hover:active,
.pi__reviews-write-btn.js-show-more-reviews:focus:active,
.pi__reviews-write-btn#show_more_reviews:hover,
.pi__reviews-write-btn#show_more_reviews:focus,
.pi__reviews-write-btn#show_more_reviews:focus-visible,
.pi__reviews-write-btn#show_more_reviews:active,
.pi__reviews-write-btn#show_more_reviews:active:hover,
.pi__reviews-write-btn#show_more_reviews:active:focus,
.pi__reviews-write-btn#show_more_reviews:active:focus-visible,
.pi__reviews-write-btn#show_more_reviews:hover:active,
.pi__reviews-write-btn#show_more_reviews:focus:active {
  background: #fc9e75 !important;
  border-color: #fc9e75 !important;
}

.pi__reviews-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__reviews-tabs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pi__reviews-tabs--adaptive {
  display: none;
}

.pi__reviews-tab {
  height: 42px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  font-size: 15px;
  color: #221f1f;
  line-height: 24px;
  white-space: nowrap;
}

.pi__reviews-tab--active,
.pi__reviews-tab:hover {
  border-color: #00A046;
}

.pi__reviews-tab--active {
  background: #E5F5EC;
}

.pi__reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__reviews-sidebar-body,
.pi__reviews-main-body {
  display: none;
}

[id^="product_reviews"][data-active-tab="reviews"] [data-reviews-body="reviews"],
[id^="product_reviews"][data-active-tab="questions"] [data-reviews-body="questions"] {
  display: block;
}

[id^="product_reviews"][data-active-tab="questions"] .pi__reviews-filters--sidebar,
[id^="product_reviews"][data-active-tab="questions"] .pi__reviews-filters-toggle {
  display: none !important;
}

[id^="product_reviews"][data-active-tab="questions"] .pi__reviews-gallery-reviews-only {
  display: none !important;
}

.pi__reviews-rz--questions {
  gap: 16px;
}

.pi__questions-intro {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #766f6e;
}

.pi__questions-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__questions-empty {
  margin: 0;
  font-size: 15px;
  color: #766f6e;
}

.pi__question-card {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 12px;
  padding: 16px 20px;
}

.pi__question-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-bottom: 8px;
  justify-content: space-between;
}

.pi__question-author {
    font-size: 16px;
    color: #0c0909;
    line-height: normal;
}

.pi__question-date {
    font-size: 16px;
    color: #766f6e;
    line-height: normal;
}

.pi__question-text {
    font-size: 16px;
    color: #766f6e;
    line-height: normal;
    max-height: 4em;
    overflow: hidden;
}

.pi__question-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.pi__question-footer .pi__question-reply {
  margin-right: auto;
}

.pi__question-reply {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: #766f6e;
    line-height: 20px;
}

.pi__question-reply:hover {
  color: #f96332;
}

.pi__question-answers {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e3e3e3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pi__question-answer {
  padding-left: 16px;
  border-left: 2px solid #f96332;
}

.pi__review-comments-toggle {
  margin-top: 8px;
  border: 0;
  background: transparent;
  color: #f96332;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
}

.pi__reviews-all {
  font-size: 16px;
  color: #3e77aa;
  line-height: normal;
  text-align: left;
}

.pi__reviews-all:hover {
  color: #f96332;
}

.pi__review-card {
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pi__review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pi__review-author {
  font-size: 16px;
  color: #0c0909;
  line-height: normal;
}

.pi__review-date {
  font-size: 16px;
  color: #766f6e;
  line-height: normal;
}

.pi__review-rating {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pi__review-stars {
  display: flex;
  align-items: center;
}

.pi__review-star {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__review-source {
  font-size: 16px;
  color: #766f6e;
  line-height: normal;
}

.pi__review-text {
  font-size: 16px;
  color: #766f6e;
  line-height: normal;
  max-height: 4em;
  overflow: hidden;
}

.is-expanded .pi__review-text {
  max-height: none;
}


.pi__review-pros,
.pi__review-cons {
  font-size: 16px;
  color: #0c0909;
  line-height: 24px;
  margin: 0;
}

.pi__review-pros-val {
  font-weight: 400;
  color: #766f6e;
}

.pi__review-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #3e77aa;
  line-height: 20px;
}

.pi__review-more:hover {
  color: #f96332;
}

.pi__review-more:hover .pi__review-more-icon {
  filter: invert(47%) sepia(95%) saturate(548%) hue-rotate(335deg) brightness(106%) contrast(97%);
}

.pi__review-more-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}

.pi__review-more[aria-expanded=true] .pi__review-more-icon {
  transform: rotate(0deg);
}

.pi__review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pi__review-footer .pi__review-votes,
.pi__question-footer .pi__review-votes {
  position: static;
  margin-left: auto;
}

#product_reviews .voting_block,
#product_reviews_panel .voting_block {
  position: static;
}

.pi__review-reply {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: #766f6e;
  line-height: 20px;
}

.pi__review-reply:hover {
  color: #f96332;
}

.pi__review-reply:hover .pi__review-reply-icon {
  filter: invert(47%) sepia(95%) saturate(548%) hue-rotate(335deg) brightness(106%) contrast(97%);
}

.pi__review-reply-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__review-votes {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pi__review-vote {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  min-height: 40px;
  border-radius: 8px;
  /*border: 1px solid #e3e3e3;*/
  background: #ffffff;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.pi__review-vote:hover {
  border-color: #c8c8c8;
}

.pi__review-vote--like.is-active,
.pi__review-vote--like.active {
  border-color: #3dad4b;
  background: #f3fbf4;
}

.pi__review-vote--dislike.is-active,
.pi__review-vote--dislike.active {
  border-color: #e05252;
  background: #fff5f5;
}

.pi__review-vote-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.pi__review-vote-count {
  font-size: 14px;
  color: #221f1f;
  line-height: 20px;
}

.pi__reviews-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pi__reviews-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #766f6e;
}

.pi__reviews-sort-select {
  min-width: 200px;
  padding: 6px 10px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  font-size: 14px;
}

.pi__reviews-total,
.pi__reviews-empty {
  font-size: 14px;
  color: #766f6e;
  margin: 0 0 8px;
}

.pi__reviews-more {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.pi__reviews-customer-gallery {
  margin-bottom: 16px;
}

.pi__reviews-customer-gallery-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #221f1f;
}

.pi__reviews-customer-gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pi__reviews-customer-gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.pi__reviews-customer-gallery-item--photo {
  width: 100px;
  height: 100px;
}

.pi__reviews-customer-gallery-item--photo img,
.pi__reviews-customer-gallery-item--video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pi__review-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pi__review-gallery-item {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}

.pi__review-gallery-item--photo {
  /*width: 100px;*/
  height: 100px;
}

.pi__review-gallery-item--photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pi__review-gallery-item--video img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pi__review-card--comment {
  margin-top: 8px;
  margin-left: 16px;
  background: #fafafa;
}

.pi__review-comments-toggle {
  align-self: flex-start;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  color: #3e77aa;
  cursor: pointer;
}

.pi__review-comments {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pi__review-footer {
  margin-top: 4px;
}

.pi__review-footer .pi__review-reply {
  margin-right: auto;
}

.pi__reviews-toolbar-start {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.pi__reviews-page {
  padding: 24px 0 48px;
}

.pi__reviews-page-inner {
  max-width: 100%;
  padding-bottom: 16px;
}

.pi--reviews-view .pi__tabs {
  position: sticky;
  top: 0;
  z-index: 5;
  background: #fff;
}

.pi__reviews-teaser {
  margin-bottom: 32px;
}

.pi__reviews-teaser-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 24px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #fafafa;
}

.pi__reviews-teaser-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.pi__reviews-teaser-meta {
  margin: 0;
  font-size: 14px;
  color: #766f6e;
}

.pi__reviews--panel {
  margin-top: 0;
}

.pi__reviews-filters {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
  align-items: center;
}

.pi__reviews-filters-title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.pi__reviews-filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}

.pi__reviews-filter-rating {
    display: flex;
    align-items: center;
}

.pi__reviews-filter-rating-label {
  display: none;
  margin-bottom: 8px;
  font-size: 14px;
  color: #766f6e;
}

.pi__reviews-filter-stars {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pi__reviews-filter-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 48px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.pi__reviews-filter-star-num {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: #221f1f;
}

.pi__reviews-filter-star.is-active .pi__reviews-filter-star-num {
  color: #2eae4c;
}

.pi__reviews--panel .pi__reviews-bar[data-rating-filter] {
  cursor: pointer;
}

.pi__reviews-filter-star.is-active {
  border-color: #2eae4c;
  background: #f0fbf3;
  box-shadow: 0 0 0 2px rgba(46, 174, 76, 0.2);
}

.pi__reviews--panel .pi__reviews-bar.is-filter-active {
  background: #f0fbf3;
  border-radius: 6px;
  margin: 0 -4px;
  padding: 0 4px;
}

.pi__reviews--panel .pi__reviews-bar.is-filter-active .pi__reviews-bar-fill {
  background: #2eae4c;
}

.pi__reviews-filter-star img {
  width: 18px;
  height: 18px;
}

.pi__reviews-filter-reset {
  display: none;
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  font-size: 14px;
  color: #3e77aa;
  cursor: pointer;
}

.pi__reviews-filters-toggle {
  display: none;
  padding: 8px 16px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  align-items: center;
}

[id^="product_reviews"][data-active-tab=questions] [data-filter-rating-block] {
  display: none;
}

@media (max-width: 991px) {
  .pi__reviews-filters--sidebar {
    display: none;
  }

  .pi__reviews-filters--sidebar.is-open {
    display: flex;
  }

  .pi__reviews-filters-toggle {
    display: inline-flex;
  }
}

/* Review Pro popup */
.mfp-review-pro.mfp-wrap {
  overflow: hidden auto;
}

.mfp-review-pro .mfp-container {
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  box-sizing: border-box;
  z-index: 2;
}

.mfp-review-pro .mfp-content {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.mfp-review-pro.mfp-ajax-holder .mfp-content {
  width: 100%;
  max-width: 600px;
}

.mfp-review-pro .mfp-bg {
  opacity: 0.45;
  z-index: 1;
}

.pi-review-popup {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  color: #221f1f;
  box-shadow: 0 8px 32px rgba(34, 31, 31, 0.12);
  width: 640px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-sizing: border-box;
  padding: 16px 0;
}

.pi-review-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  padding: 0 16px 16px 16px;
  border-bottom: 1px solid #8b8080;
}

.pi-review-popup__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}

.pi-review-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  border: 0;
  background: transparent;
  font-size: 32px;
  line-height: 1;
  color: #221f1f;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pi-review-popup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.pi-review-popup__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pi-review-popup__field--half {
  flex: 1;
  min-width: 0;
}

.pi-review-popup__row {
  display: flex;
  gap: 16px;
}

.pi-review-popup__label {
  font-size: 14px;
  color: #8B8080;
  margin: 0;
}

.pi-review-popup__label--required::before {
  content: "*";
  color: #766f6e;
  margin-right: 1px;
}

.pi-review-popup__input,
.pi-review-popup__textarea {
  width: 100%;
  border: 1px solid #8B8080;
  border-radius: 8px;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  background: #ffffff;
  box-sizing: border-box;
}

.pi-review-popup__input:focus,
.pi-review-popup__textarea:focus {
  outline: none;
  border-color: #f96332;
}

.pi-review-popup__input[readonly] {
  background: #f7f7f7;
}

.pi-review-popup__textarea {
  min-height: 120px;
  resize: vertical;
}

.pi-review-popup__stars {
  margin-top: 2px;
}

.pi-review-popup__stars-row {
  display: flex;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
}

.pi-review-popup__star-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex: 1;
  min-width: 0;
}

.pi-review-popup__star-icon {
  width: 48px;
  height: 48px;
}

.pi-review-popup__star-icon--filled {
  display: none;
}

@media (max-width: 676px) {
    .pi-review-popup {
        width: 350px;
        padding: 16px 0 !important;
    }
}

.review_stars[data-star="1"] .pi-review-popup__star-item[data-star="1"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="2"] .pi-review-popup__star-item[data-star="1"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="2"] .pi-review-popup__star-item[data-star="2"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="3"] .pi-review-popup__star-item[data-star="1"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="3"] .pi-review-popup__star-item[data-star="2"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="3"] .pi-review-popup__star-item[data-star="3"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="4"] .pi-review-popup__star-item[data-star="1"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="4"] .pi-review-popup__star-item[data-star="2"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="4"] .pi-review-popup__star-item[data-star="3"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="4"] .pi-review-popup__star-item[data-star="4"] .pi-review-popup__star-icon--empty,
.review_stars[data-star="5"] .pi-review-popup__star-item .pi-review-popup__star-icon--empty {
  display: none;
}

.review_stars[data-star="1"] .pi-review-popup__star-item[data-star="1"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="2"] .pi-review-popup__star-item[data-star="1"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="2"] .pi-review-popup__star-item[data-star="2"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="3"] .pi-review-popup__star-item[data-star="1"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="3"] .pi-review-popup__star-item[data-star="2"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="3"] .pi-review-popup__star-item[data-star="3"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="4"] .pi-review-popup__star-item[data-star="1"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="4"] .pi-review-popup__star-item[data-star="2"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="4"] .pi-review-popup__star-item[data-star="3"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="4"] .pi-review-popup__star-item[data-star="4"] .pi-review-popup__star-icon--filled,
.review_stars[data-star="5"] .pi-review-popup__star-item .pi-review-popup__star-icon--filled {
  display: block;
}

.pi-review-popup__star-label {
  font-size: 12px;
  color: #766f6e;
  text-align: center;
  line-height: 1.2;
  max-width: 100%;
}

.pi-review-popup__media {
  border: 1px solid #8B8080;
  border-radius: 8px;
  padding: 18px 20px;
  min-height: 156px;
  height: auto;
}

.pi-review-popup__media-title {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}

.pi-review-popup__media-hint {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: #766f6e;
}

.pi-review-popup__media-hint--label {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 400;
  color: #8B8080;
}

.pi-review-popup__photo-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 0;
  flex-direction: column;
}

.pi-review-popup__photo-bar .pi-review-popup__media-hint {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 400;
}

#block_photo.dropzone.dz-drag-hover {
  border-color: #f96332;
  background: #fffaf8;
}

.pi-review-popup__dropzone-previews {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  margin-top: 12px;
}

.pi-review-popup__dropzone-previews:empty {
  display: none;
}

.pi-review-popup__dropzone-previews .dz-preview {
  margin: 0;
  width: 132px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e8dfdc;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.pi-review-popup__dropzone-previews .dz-preview .dz-image {
  width: 100%;
  height: 116px;
  border-radius: 6px;
}

.pi-review-popup__dropzone-previews .dz-preview .dz-details {
  position: static;
  opacity: 1;
  min-width: 0;
  max-width: none;
  padding: 0;
  text-align: left;
  color: #766f6e;
  line-height: 1.35;
}

.pi-review-popup__dropzone-previews .dz-preview .dz-details .dz-size {
  margin-bottom: 4px;
  font-size: 12px;
}

.pi-review-popup__dropzone-previews .dz-preview .dz-details .dz-filename {
  white-space: normal;
  word-break: break-word;
}

.pi-review-popup__dropzone-previews .dz-preview .dz-details .dz-filename span,
.pi-review-popup__dropzone-previews .dz-preview .dz-details .dz-size span {
  background: transparent;
  padding: 0;
  border: 0;
}

.pi-review-popup__dropzone-previews .dz-preview .dz-remove {
  position: static;
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 0;
  background: transparent;
  border: 0;
  font-size: 12px;
  color: #f96332;
  opacity: 1;
  text-decoration: none;
}

.pi-review-popup__dropzone-previews .dz-preview .dz-progress,
.pi-review-popup__dropzone-previews .dz-preview .dz-success-mark,
.pi-review-popup__dropzone-previews .dz-preview .dz-error-mark,
.pi-review-popup__dropzone-previews .dz-preview .dz-error-message {
  display: none;
}

#block_photo .dz-default,
#block_photo .dz-message {
  display: none !important;
}

.pi-review-popup__video-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pi-review-popup__video-preview .vd-prev {
  position: relative;
  width: 100px;
}

.pi-review-popup__video-preview .vd-prev img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

.pi-review-popup__video-preview .video_icon {
  position: absolute;
  top: 4px;
  right: 4px;
  border: 0;
  background: rgba(34, 31, 31, 0.65);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.pi-review-popup__notify--hidden {
  display: none !important;
}

.pi-review-popup__notify-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #766f6e;
  cursor: pointer;
}

.pi-review-popup__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.pi-review-popup__body {
  padding: 16px;
}

.pi-review-popup__btn {
  flex: 1;
  min-height: 48px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  border: 0;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  transition: opacity 0.15s ease;
}

.pi-review-popup__btn:hover {
  opacity: 0.92;
}

.pi-review-popup__btn--compact {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 0 18px;
  white-space: nowrap;
}

.pi-review-popup__btn--ghost {
  background: #FEF2E6;
  color: #F96332;
  border: 1px solid #EAE3DD;
  height: 40px;
  width: 206px;
  font-size: 16px;
  font-weight: 400;
}

.pi-pick_review_photo-container {
    display: flex;
    justify-content: flex-end;
}

.pi-review-popup__btn--primary {
    background: #f96332;
    border: 1px solid #f96332;
    color: #ffffff;
    width: 180px;
    display: inline-flex;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
}

.pi-review-popup__btn--primary:hover,
.pi-review-popup__btn--primary:focus,
.pi-review-popup__btn--primary:focus-visible,
.pi-review-popup__btn--primary:active {
    background: #fc9e75;
    border-color: #fc9e75;
    color: #fff;
    outline: none;
    box-shadow: none;
}

.pi-review-popup__btn--primary:active:hover,
.pi-review-popup__btn--primary:active:focus,
.pi-review-popup__btn--primary:active:focus-visible,
.pi-review-popup__btn--primary:hover:active,
.pi-review-popup__btn--primary:focus:active {
    background: #fc9e75;
    border-color: #fc9e75;
    color: #fff;
    outline: none;
    box-shadow: none !important;
}

#button_write.pi-review-popup__btn--primary,
#button_write.pi-review-popup__btn--primary:hover,
#button_write.pi-review-popup__btn--primary:focus,
#button_write.pi-review-popup__btn--primary:focus-visible,
#button_write.pi-review-popup__btn--primary:active,
#button_write.pi-review-popup__btn--primary:active:hover,
#button_write.pi-review-popup__btn--primary:active:focus,
#button_write.pi-review-popup__btn--primary:active:focus-visible,
#button_write.pi-review-popup__btn--primary:hover:active,
#button_write.pi-review-popup__btn--primary:focus:active {
    background: #f96332 !important;
    border-color: #f96332 !important;
    color: #ffffff !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    filter: none !important;
}

#button_write.pi-review-popup__btn--primary:hover,
#button_write.pi-review-popup__btn--primary:focus,
#button_write.pi-review-popup__btn--primary:focus-visible,
#button_write.pi-review-popup__btn--primary:active,
#button_write.pi-review-popup__btn--primary:active:hover,
#button_write.pi-review-popup__btn--primary:active:focus,
#button_write.pi-review-popup__btn--primary:active:focus-visible,
#button_write.pi-review-popup__btn--primary:hover:active,
#button_write.pi-review-popup__btn--primary:focus:active {
    background: #fc9e75 !important;
    border-color: #fc9e75 !important;
}

.pi-review-popup__btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.pi-review-popup__rules {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: #8B8080;
  line-height: 1.5;
  text-align: left;
}

.pi-review-popup__rules a {
  color: #3E77AA;
}

.pi-review-popup .text_danger {
  color: #e05252;
  font-size: 13px;
  margin-top: 4px;
}

.pi-review-popup .text_success {
  color: #3dad4b;
  font-size: 15px;
  text-align: center;
  padding: 24px 0;
}

.pi-review-popup .has-error .pi-review-popup__input,
.pi-review-popup .has-error .pi-review-popup__textarea {
  border-color: #e05252;
}

@media (max-width: 640px) {
  .pi-review-popup {
    padding: 20px 16px 24px;
  }

  .pi-review-popup__close {
    top: 14px;
    right: 14px;
  }

  .pi-review-popup__row {
    flex-direction: column;
  }

  .pi-review-popup__photo-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .pi-review-popup__btn--compact {
    width: 100%;
  }

  .pi-review-popup__stars-row {
    gap: 2px;
  }

  .pi-review-popup__star-item {
    min-width: 0;
  }

  .pi-review-popup__star-icon {
    width: 30px;
    height: 30px;
  }

  .pi-review-popup__star-label {
    font-size: 10px;
  }
}

.pi__video {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.pi__video .slider__btn--prev,
.pi__video .slider__btn--next {
  top: 40%;
}

.pi__video-title {
  font-size: 20px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  margin: 0;
}

.pi__video-title-sub {
  font-size: 16px;
  font-weight: 400;
  color: #766f6e;
}

.pi__video-player {
  background: #f0e6e5;
  height: 545px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.pi__video-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pi__video-main-label {
  font-size: 20px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
}

.pi__video-list {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #e3e3e3;
  overflow: hidden;
}

.pi__video-item {
  flex: 0 0 285px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.pi__video-item-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.pi__video-item--active .pi__video-thumb {
  box-shadow: inset 0 0 0 2px #f96332;
}

.pi__video-item-player[hidden] {
  display: none;
}

.pi__drawing-video-gallery .pi__video-item-player {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 3;
}

.pi__drawing-video-gallery .pi__video-item-player .pi__video-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
  background: #000000;
}

.pi__video-thumb {
  height: 170px;
  background: #f0e6e5;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pi__video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pi__video-thumb-play {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.pi__video-thumb-next {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pi__video-thumb-next-icon {
  width: 48px;
  height: 48px;
  transform: rotate(180deg);
}

.pi__video-label {
  font-size: 20px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  white-space: nowrap;
}

.pi__video-channel {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}

.pi__video-channel-text {
  font-size: 16px;
  color: #221f1f;
  line-height: normal;
  white-space: nowrap;
}

.pi__video-yt-btn {
  display: flex;
  align-items: center;
}

.pi__video-yt-label {
  font-size: 14px;
  color: #ffffff;
  line-height: normal;
  white-space: nowrap;
}

.pi__video-consultation--adaptive {
  display: none;
}

@media (max-width: 1199px) {

  .pi__expand-list,
  .pi__video-consultation--adaptive {
    display: flex;
  }

  .pi__video-consultation:not(.pi__video-consultation--adaptive) {
    display: none;
  }

  .pi__desc,
  .pi__reviews,
  .pi__main,
  .pi__cart-block {
    flex-direction: column;
  }

  .pi__specs,
  .pi__desc-text {
    max-width: 100%;
  }

  .pi__desc {
    align-items: initial;
  }

  .pi__left,
  .pi__right,
  .pi__buy-btn {
    flex: initial;
    width: 100%;
    max-width: 100%;
  }

  .pi__spec-label-wrap {
    flex: 100%;
  }

  .pi__desc-head {
    height: initial;
    flex: initial;
  }

  .pi__product-name {
    font-size: 16px;
  }

  .pi__specs-note,
  .pi__video-label,
  .pi__video-title-sub {
    font-size: 14px;
  }

  .pi__video-thumb {
    height: 104px;
  }

  .pi__video-item {
    flex: 0 0 152px;
  }

  .pi__video-item:first-child {
    margin-left: 16px;
  }

  .pi__video-list {
    gap: 8px;
    overflow: auto;
  }

  .pi__product-badges {
    gap: 8px;
  }

  .pi__map,
  .pi__quick-actions {
    display: none;
  }

  .pi__cart-row {
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
  }

  .pi__cart-row {
    gap: 24px;
  }

  .pi__cart-block,
  .pi__counter-row {
    align-self: stretch;
  }

  .pi__counter-actions {
    display: flex;
  }

  .pi__tabs {
    gap: 16px;
  }

  .pi__cart-block {
    gap: 24px;
  }

  .pi__product-star {
    width: 12px;
    height: 12px;
  }

  .pi__product-reviews,
  .pi__product-review-link,
  .pi__product-article,
  .pi__product-label {
    font-size: 12px;
  }

  .pi__product-meta-left {
    gap: 4px;
  }

  .pi__video-player {
    height: 400px;
  }

  .pi__video-thumb-play {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 767px) {
  .pi__reviews-tabs--adaptive {
    display: flex;
  }

  .pi__reviews-tabs:not(.pi__reviews-tabs--adaptive) {
    display: none;
  }

  .pi__video-consultation {
    flex-direction: column;
    justify-content: initial;
    gap: 16px;
    align-items: initial;
  }

  .pi__video-consultation-btn,
  .pi__reviews-write-btn {
    width: 100%;
  }

  .pi__review-rating {
    flex-direction: column-reverse;
    gaP: 12px;
    align-items: flex-start;
  }

  .pi__video-player {
    height: 191px;
  }

  .pi__video-play {
    width: 40px;
    height: 40px;
  }
}



.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__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.brand-card {
  display: flex;
  width: 332px;
  height: 190px;
  background: #fff;
  padding: 8px;
  border-radius: 8px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.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;
}


/*Information*/
.information {
  font-family: "Fact", sans-serif;
}

.info__container {
  max-width: 1408px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info__breadcrumb {
  display: flex;
  align-items: center;
  gap: 2px;
}

.info__breadcrumb-link {
  font-size: 12px;
  color: #797878;
}

.info__breadcrumb-link:hover {
  color: #f96332;
}

.info__breadcrumb-sep {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.info__breadcrumb-current {
  font-size: 12px;
  color: #333333;
}

.info__title {
  font-size: 24px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  margin: 0;
}

.info__layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.error-page__content,
.sitemap-page__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info__sidebar {
  flex: 0 0 342px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info__sidebar-extra {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.info__sidebox-top {
  display: flex;
  flex-direction: column;
  position: relative;
}

.info__sidebox-top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e3e3e3;
}

.info__sidebox-head {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 64px;
  padding: 24px 16px;
  color: #766f6e;
  font-size: 16px;
  position: relative;
}

.info__sidebox-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e3e3e3;
}

.info__sidebox-menu {
  position: relative;
}

.info__sidebox-nav {
  position: relative;
}

.info__sidebox-nav-list {
  list-style: none;
  padding: 16px 0;
  position: relative;
  margin: 0;
}

.info__sidebox-nav-list::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e3e3e3;
}

.info__sidebox-nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 16px;
  background: #ffffff;
  color: #766f6e;
  font-size: 16px;
}

.info__sidebox-nav-link:hover {
  background: #fff3ed;
  color: #f96332;
}

.info__sidebox-section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0;
  width: 100%;
  background: #fff;
}

.info__sidebox-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: #e3e3e3;
}

.info__sidebox-links {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.info__sidebox-link {
  display: flex;
  align-items: center;
  height: 48px;
  font-size: 16px;
  padding: 16px 0;
  color: #766f6e;
}

.info__sidebox-link:hover {
  color: #f96332;
}

.info__sidebox-ad {
  width: 310px;
  height: 90px;
  margin: 0 16px;
  border-radius: 8px;
  background: #f0e6e5;
}

.info__sidebox-reviews {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 0;
  background: #ffffff;
  /*border-radius: 8px;*/
  border-radius: 0 0 8px 8px;
}

.info__sidebox-reviews-head {
  display: flex;
  align-items: center;
  height: 48px;
  padding: 0 16px 0 48px;
}

.info__sidebox-reviews-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}

.info__sidebox-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info__sidebox-review {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px;
}

.info__sidebox-review-author {
  font-size: 16px;
  color: #221f1f;
}

.info__sidebox-review-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info__sidebox-review-stars {
  display: flex;
  align-items: center;
}

.info__sidebox-review-stars img {
  width: 24px;
  height: 24px;
}

.info__sidebox-review-source {
  font-size: 16px;
  color: #766f6e;
  text-align: right;
}

.info__sidebox-review-text {
  font-size: 16px;
  color: #766f6e;
  line-height: normal;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.info__sidebox-more-wrap {
  padding: 0 16px;
  display: flex;
  justify-content: flex-end;
}

.info__sidebox-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #61729e;
  transition: color 0.2s ease;
}

.info__sidebox-more:hover {
  color: #f96332;
}

.info__sidebox-more:hover .info__sidebox-more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}

.info__sidebox-more-icon {
  width: 24px;
  height: 24px;
  transition: filter 0.2s ease;
}

.review-page__write-box {
  gap: 16px;
}

.review-page__write-actions {
  padding: 0 16px 16px;
}

.review-page__write-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid #f96332;
  background: #f96332;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: rgba(252, 158, 117, 0.24);
  cursor: pointer;
}

.review-page__write-btn:hover,
.review-page__write-btn:focus,
.review-page__write-btn:active,
.review-page__write-btn:focus-visible {
  background: #fc9e75;
  border-color: #fc9e75;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}

.info__sidebox-nav-list--children {
  padding: 0 0 8px 18px;
}

.info__sidebox-nav-list--children::after {
  left: 34px;
}

.info__sidebox-nav-list--children .info__sidebox-nav-link {
  height: 40px;
  font-size: 14px;
}

.info__sidebox-nav-item--active > .info__sidebox-nav-link,
.info__sidebox-nav-link--active {
  color: #F96332;
  font-size: 16px;
  font-weight: 400;
}

.blog-page__layout {
  align-items: flex-start;
}

.blog-page__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.error-page__card,
.sitemap-page__card {
  background: #ffffff;
  border: 1px solid #e8e1df;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(34, 31, 31, 0.06);
}

.error-page__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px;
}

.error-page__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-width: 88px;
  height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f96332 0%, #ff8a5c 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.error-page__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #766f6e;
  max-width: 760px;
}

.error-page__actions {
  margin: 0;
}

.error-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  background: #f96332;
  border: 1px solid #f96332;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.error-page__button:hover,
.error-page__button:focus,
.error-page__button:active,
.error-page__button:focus-visible {
  background: #fc9e75;
  border-color: #fc9e75;
  color: #ffffff;
}

.sitemap-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.sitemap-page__card {
  padding: 24px 28px;
}

.sitemap-page__list,
.sitemap-page__sublist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sitemap-page__item,
.sitemap-page__subitem {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sitemap-page__sublist {
  padding-left: 18px;
  border-left: 1px solid #e8e1df;
}

.sitemap-page__sublist--third {
  margin-top: 4px;
}

.sitemap-page__link {
  font-size: 16px;
  font-weight: 700;
  color: #221f1f;
  line-height: 1.4;
}

.sitemap-page__link:hover,
.sitemap-page__sublink:hover {
  color: #f96332;
}

.sitemap-page__link--label {
  display: block;
}

.sitemap-page__sublink {
  font-size: 15px;
  color: #766f6e;
  line-height: 1.4;
}

.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-page__pagination {
  display: flex;
  justify-content: center;
}

.blog-page__empty {
  margin: 0;
}

.blog-page__description {
  margin-top: 8px;
}

.blog-page__description .seo-text__body > *:first-child {
  margin-top: 0;
}

.blog-card__image-link {
  display: block;
}

.blog-card__image-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card .home__news-card-title {
  color: #221f1f;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .home__news-card-desc {
  color: #766f6e;
}

.blog-article__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  padding: 24px 16px;
  border-radius: 8px;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  color: #8B8080;
  font-size: 14px;
}

.blog-article__meta-item,
.blog-article__timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
}

.blog-article__meta-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.blog-article__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.75;
  color: #221f1f;
}

.blog-article__description img {
  max-width: 100%;
  height: auto;
}

.blog-article__timer {
  align-items: center;
  gap: 16px;
  color: #221f1f;
}

.blog-article__timer--urgent {
  color: #cd2f2f;
}

.blog-article__timer-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.blog-article__timer-grid {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
}

.blog-article__timer-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.blog-article__timer-value {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #9c9191;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: inherit;
  background: #ffffff;
}

.blog-article__timer-unit {
  display: block;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.15;
  color: #221f1f;
}

.blog-article__timer--urgent .blog-article__timer-unit {
  color: #cd2f2f;
}

.blog-article__timer-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: inherit;
}

@media (max-width: 1199px) {
  .blog-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-page .home__news-card:nth-child(n+5) {
    display: flex;
  }

  .blog-page__layout {
    display: block;
  }

  .blog-page__content,
  .blog-article__content {
    overflow: visible;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .blog-page__grid {
    grid-template-columns: 1fr;
  }

  .blog-article__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-article__timer {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .blog-article__timer-label {
    font-size: 22px;
    white-space: normal;
  }

  .blog-article__timer-grid {
    width: 100%;
    justify-content: flex-start;
    gap: 4px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .blog-article__timer-box {
    min-width: 84px;
  }

  .blog-article__timer-value {
    width: 84px;
    height: 92px;
    border-radius: 18px;
    font-size: 24px;
  }

  .blog-article__timer-unit {
    font-size: 14px;
  }

  .blog-article__timer-separator {
    min-width: 12px;
    font-size: 36px;
    padding-top: 24px;
  }
}

.review-page__layout {
  align-items: flex-start;
}

.review-page__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-page__sidebar-reviews {
  gap: 12px;
}

.review-page__sidebar-rating {
  gap: 14px;
}

.review-page__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 0 48px;
}

.review-page__summary-score {
  font-size: 14px;
  color: #221f1f;
  line-height: 1.4;
}

.review-page__summary-score-icon {
  width: 24px;
  height: 24px;
}

.review-page__rating-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 16px 0 48px;
}

.review-page__rating-row {
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  gap: 8px;
  align-items: center;
}

.review-page__rating-row-left {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.review-page__rating-number,
.review-page__rating-count {
  font-size: 14px;
  color: #221f1f;
  line-height: 1;
}

.review-page__rating-star {
  width: 14px;
  height: 14px;
}

.review-page__rating-track {
  height: 4px;
  border-radius: 999px;
  background: #e7e4e4;
  overflow: hidden;
}

.review-page__rating-fill {
  height: 100%;
  border-radius: inherit;
  background: #f96332;
}

.review-page__summary-total {
  display: none;
  margin: 0;
  padding: 0 16px 0 48px;
  font-size: 12px;
  color: #766f6e;
}

.review-page__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px;
  background: #ffffff;
  border-radius: 8px;
}

.review-page__card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #8B8080;
  border-radius: 8px;
}

.review-page__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.review-page__card-head-left {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-page__author {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 1.2;
}

.review-page__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.review-page__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.review-page__star {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.review-page__source {
  font-size: 16px;
  font-weight: 400;
  color: #8B8080;
}

.review-page__date {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 400;
  color: #8B8080;
  text-align: right;
  white-space: nowrap;
}

.review-page__text {
  font-size: 14px;
  line-height: 1.6;
  color: #766f6e;
  white-space: pre-line;
}

.review-page__text--clamped {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 16px;
  font-weight: 400;
  color: #8B8080;
  margin-bottom: 16px;
}

.review-page__card.is-expanded .review-page__text--clamped {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.review-page__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  font-size: 14px;
  font-weight: 400;
  color: #61729E;
  transition: color 0.2s ease;
}

.review-page__more:hover {
  color: #f96332;
}

.review-page__more:hover .review-page__more-icon {
  filter: brightness(0) saturate(100%) invert(55%) sepia(77%) saturate(600%) hue-rotate(336deg) brightness(104%);
}

.review-page__more-icon {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease, filter 0.2s ease;
  transform: rotate(90deg);
}

.review-page__card.is-expanded .review-page__more-icon {
  transform: rotate(270deg);
}

.review-page__empty {
  padding: 32px;
  background: #ffffff;
  border: 1px solid #d7cecc;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  font-size: 16px;
  color: #766f6e;
}

.review-page__pagination {
  display: flex;
  justify-content: center;
}

.customer_avatar {
    display: none;
}

@media (max-width: 1199px) {
  .error-page__content,
  .sitemap-page__content {
    width: 100%;
  }

  .sitemap-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .info__container {
    padding: 12px;
  }

  .error-page__card,
  .sitemap-page__card {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .error-page__badge {
    min-width: 76px;
    height: 40px;
    font-size: 16px;
  }

  .error-page__text {
    font-size: 16px;
  }

  .sitemap-page__sublist {
    padding-left: 14px;
  }
}

@media (max-width: 1199px) {
  .info__layout {
    display: block;
  }

  .info__sidebar {
    display: none;
  }

  .review-page__card-head {
    flex-direction: column;
  }

  .review-page__date {
    text-align: left;
  }
}

/*About us*/
.about_us__sections {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about_us__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 16px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about_us__sidebar-extra {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 8px;
  padding: 16px;
}

.about_us__title {
  font-size: 24px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
  margin: 0 0 32px 0;
}

.about_us__seo-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about_us__seo-body-top_img {
  width: 350px;
  height: 214px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 350px;
}

.about_us__seo-body-top_img img {
  width: 271px;
  height: 165px;
  object-fit: contain;
}

.about_us__seo-body-top {
  display: flex;
  gap: 32px;
}

.about_us__seo-body-top-text {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 16px;
  line-height: 1.77;
}

.about_us__seo-body-top-text-p {
  margin: 0;
}

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

.about_us__promo-card {
  background: #f96332;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 0;
}

.about_us__promo-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.about_us__promo-card-icon {
  flex-shrink: 0;
  width: 64px;
  height: 56px;
}

.about_us__promo-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about_us__promo-card-text {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  line-height: 1.69;
  margin: 0;
}

.about_us__seo-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1.77;
}

.about_us__seo-block-h1 {
  font-family: Fact;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  color: #333333;
}

.about_us__seo-block-h2 {
  font-family: Fact;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.32;
  color: #333333;
}

.about_us__seo-block-p {
  font-family: Fact;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.77;
  color: #000000;
}

.about_us__seo-block-p span {
  font-family: Fact;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.77;
  color: #000000;
}


@media (max-width: 1199px) {
  .about_us__content {
    overflow: visible;
  }

  .about_us__promo-row {
    gap: 8px;
  }

  .about_us__promo-card {
    min-height: 105px;
    padding: 16px;
  }

  .about_us__promo-card-inner {
    gap: 8px;
  }

  .about_us__promo-card-icon {
    width: 29px;
    height: 26px;
  }

  .about_us__promo-card-text {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .about_us__promo-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about_us__seo-body-top {
    display: block;
  }

  .about_us__seo-body-top_img {
    width: 311px;
  }
}

/*pop-up*/
.callback-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20040;
  align-items: center;
  justify-content: center;
}

.callback-popup.is-open {
  display: flex;
}

.callback-popup__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.callback-popup__box {
  position: relative;
  z-index: 2;
  width: 502px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 1;
  font-family: "Fact", sans-serif;
}

.callback-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 16px;
  border-bottom: 1px solid #8b8080;
}

.callback-popup__title {
  font-size: 24px;
  font-weight: 700;
  color: #221f1f;
  line-height: 1;
}

.callback-popup__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callback-popup__close img {
  width: 24px;
  height: 24px;
}

.callback-popup__body {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.callback-popup__desc {
  font-size: 14px;
  color: #8b8080;
  line-height: 1.43;
}

.callback-popup__contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.callback-popup__contact-methods--empty {
  display: none;
}

.callback-popup__contact-methods-title {
  margin: 0;
  font-size: 16px;
  color: #8b8080;
  font-weight: 400;
}

.callback-popup__contact-methods-list {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.callback-popup__contact-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8b8080;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
}

.callback-popup__contact-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.callback-popup__contact-control {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #8b8080;
  border-radius: 50%;
  flex: 0 0 20px;
}

.callback-popup__contact-control:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ee7d00;
  transform: translate(-50%, -50%) scale(0);
  transition: transform .2s ease;
}

.callback-popup__contact-radio:checked+.callback-popup__contact-control {
  border-color: #ee7d00;
}

.callback-popup__contact-radio:checked+.callback-popup__contact-control:before {
  transform: translate(-50%, -50%) scale(1);
}

.callback-popup__contact-text {
  text-decoration: none;
}

.callback-popup__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.callback-popup__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.callback-popup__label {
  font-size: 16px;
  color: #8b8080;
  line-height: 1;
}

.callback-popup__input {
  width: 100%;
  padding: 16px;
  border: 1px solid #8b8080;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Fact", sans-serif;
  color: #221f1f;
  background: #ffffff;
  outline: none;
}

.callback-popup__input:focus {
  border-color: #f96332;
}

.callback-popup__input::placeholder {
  color: #8b8080;
}

.callback-popup__btns {
  display: flex;
  gap: 16px;
}

.callback-popup__btn {
  flex: 1;
  height: 48px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Fact", sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.callback-popup__btn--cancel {
  border: 1px solid #f96332;
  color: #f96332;
  background: none;
}

.callback-popup__btn--submit {
  background: #f96332;
  color: #ffffff;
  border: none;
}

.callback-popup__btn--submit:hover {
  background: #fc9e75;
}

@media (max-width: 767px) {
  .callback-popup__box {
    width: 100%;
    border-radius: initial;
  }

  .callback-popup__body {
    padding: 16px;
  }
}

.callback-success {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20040;
  align-items: center;
  justify-content: center;
}

.callback-success.is-open {
  display: flex;
}

.callback-success__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
}

.callback-success__box {
  position: relative;
  z-index: 2;
  width: 502px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 1;
  font-family: "Fact", sans-serif;
}

.callback-success__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 16px;
  border-bottom: 1px solid #8b8080;
}

.callback-success__title {
  font-size: 24px;
  font-weight: 700;
  color: #221f1f;
  line-height: 1;
}

.callback-success__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.callback-success__close img {
  width: 24px;
  height: 24px;
}

.callback-success__body {
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.callback-success__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.callback-success__text {
  font-size: 14px;
  color: #8b8080;
  line-height: 1.43;
  text-align: center;
}

.callback-success__btn {
  width: 100%;
  height: 48px;
  background: #f96332;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-family: "Fact", sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.callback-success__btn:hover {
  background: #fc9e75;
}

@media (max-width: 767px) {
  .callback-success__box {
    width: 100%;
    border-radius: initial;
  }

  .callback-success__body {
    padding: 16px;
  }
}

.header__action-btn--login-trigger {
  padding: 0;
  border: none;
  background: transparent;
}

.login-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20040;
  align-items: center;
  justify-content: center;
}

.login-popup.is-open {
  display: flex;
}

.login-popup__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

.login-popup__box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 502px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  z-index: 1;
  font-family: "Fact", sans-serif;
}

.login-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 16px;
  border-bottom: 1px solid #8b8080;
}

.login-popup__title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #221f1f;
  line-height: 1.1;
}

.login-popup__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: transparent;
}

.login-popup__close img {
  width: 24px;
  height: 24px;
}

.login-popup__body {
  padding: 24px 32px 32px;
}

.login-popup__error {
  margin-bottom: 16px;
  padding: 12px 16px;
  border: 1px solid #f1b4a0;
  border-radius: 8px;
  background: #fff3ef;
  color: #c14d27;
  font-size: 14px;
  line-height: 1.43;
}

.login-popup__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-popup__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-popup__label {
  font-size: 16px;
  color: #8b8080;
  line-height: 1;
}

.login-popup__input {
  width: 100%;
  padding: 16px;
  border: 1px solid #8b8080;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Fact", sans-serif;
  color: #221f1f;
  background: #ffffff;
  outline: none;
}

.login-popup__input:focus {
  border-color: #f96332;
}

.login-popup__input::placeholder {
  color: #8b8080;
}

.login-popup__password-wrap {
  position: relative;
}

.login-popup__input--password {
  padding-right: 56px;
}

.login-popup__password-toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  color: #221f1f;
  background: transparent;
  border: none;
}

.login-popup__password-toggle i {
  font-size: 16px;
}

.login-popup__submit {
  width: 100%;
  min-height: 48px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: #f96332;
  color: #ffffff;
  font-size: 14px;
  font-family: "Fact", sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.login-popup__submit:hover {
  background: #fc9e75;
}

.login-popup__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.login-popup__link {
  font-size: 13px;
  color: #8b8080;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.login-popup__link:hover {
  color: #f96332;
}

.login-popup__form.is-loading {
  pointer-events: none;
}

.login-popup__form.is-loading .login-popup__submit {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .login-popup {
    align-items: flex-end;
  }

  .login-popup__box {
    max-width: none;
    border-radius: 8px 8px 0 0;
  }

  .login-popup__body {
    padding: 16px;
  }
}

.account-login-page {
  position: fixed;
  inset: 0;
  z-index: 20040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.account-login-page__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

.account-login-page__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 502px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-family: "Fact", sans-serif;
}

.account-login-page__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 24px 20px;
  border-bottom: 1px solid #8b8080;
}

.account-login-page__title {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
}

.account-login-page__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.account-login-page__close img {
  width: 32px;
  height: 32px;
}

.account-login-page__body {
  padding: 32px 38px 45px;
}

.account-login-page__message {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.43;
}

.account-login-page__message--error {
  background: #fff3ef;
  border: 1px solid #f1b4a0;
  color: #c14d27;
}

.account-login-page__message--success {
  background: #eef8ef;
  border: 1px solid #bfd9c0;
  color: #2d6a32;
}

.account-login-page__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-login-page__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-login-page__label {
  font-size: 16px;
  line-height: 1.2;
  color: #8b8080;
  font-weight: 400;
  margin: 0;
}

.account-login-page__password-wrap {
  position: relative;
}

.account-login-page__input {
  width: 100%;
  height: 54px;
  padding: 18px 20px;
  border: 1px solid #8b8080;
  border-radius: 8px;
  background: #ffffff;
  color: #221f1f;
  font-size: 16px;
  line-height: 1.2;
  font-family: "Fact", sans-serif;
  outline: none;
}

.account-login-page__input:focus {
  border-color: #f96332;
}

.account-login-page__input--password {
  padding-right: 72px;
}

.account-login-page__password-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  color: #000000;
}

.account-login-page__password-toggle i {
  font-size: 24px;
}

.account-login-page__submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  background: #f96332;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
  font-family: "Fact", sans-serif;
  transition: background-color 0.2s ease;
}

.account-login-page__submit:hover {
  background: #fc7a53;
}

.account-login-page__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-top: 16px;
}

.account-login-page__link {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #61729e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 767px) {
  .account-login-page {
    padding: 0;
    align-items: flex-end;
  }

  .account-login-page__dialog {
    max-width: none;
    border-radius: 8px 8px 0 0;
  }

  .account-login-page__head {
    min-height: 82px;
    padding: 20px 16px;
  }

  .account-login-page__title {
    font-size: 16px;
  }

  .account-login-page__body {
    padding: 20px 16px 32px;
  }

  .account-login-page__input {
    height: 56px;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
  }

  .account-login-page__submit {
    height: 52px;
    font-size: 18px;
    border-radius: 10px;
  }

  .account-login-page__links {
    gap: 24px;
  }

  .account-login-page__link {
    font-size: 18px;
    text-align: center;
  }
}

.account-auth-page {
  position: fixed;
  inset: 0;
  z-index: 20040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.account-auth-page__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}

.account-auth-page__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 502px;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-family: "Fact", sans-serif;
}

.account-auth-page__dialog--wide {
  max-width: 760px;
}

.account-auth-page__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 30px 16px;
  border-bottom: 1px solid #8b8080;
}

.account-auth-page__title {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #000000;
}

.account-auth-page__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.account-auth-page__close img {
  width: 32px;
  height: 32px;
}

.account-auth-page__body {
  padding: 32px 38px 45px;
}

.account-auth-page__desc {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.45;
  color: #8b8080;
}

.account-auth-page__message {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.43;
}

.account-auth-page__message--error {
  background: #fff3ef;
  border: 1px solid #f1b4a0;
  color: #c14d27;
}

.account-auth-page__message--success {
  background: #eef8ef;
  border: 1px solid #bfd9c0;
  color: #2d6a32;
}

.account-auth-page__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.account-auth-page__form--register {
  gap: 24px;
}

.account-auth-page__section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.account-auth-page__section-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #221f1f;
}

.account-auth-page__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 18px;
}

.account-auth-page__custom-fields {
  display: grid;
  gap: 18px;
}

.account-auth-page__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-auth-page__label {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: #8b8080;
  font-weight: 400;
  margin: 0;
}

.account-auth-page__password-wrap {
  position: relative;
}

.account-auth-page__input,
.account-auth-page__textarea,
.account-auth-page__upload-btn {
  width: 100%;
  border: 1px solid #a99994;
  border-radius: 8px;
  background: #ffffff;
  color: #221f1f;
  font-size: 20px;
  line-height: 1.2;
  font-family: "Fact", sans-serif;
  outline: none;
}

.account-auth-page__input {
  height: 54px;
  padding: 18px 20px;
}

.account-auth-page__textarea {
  min-height: 120px;
  padding: 18px 20px;
  resize: vertical;
}

.account-auth-page__upload-btn {
  min-height: 56px;
  padding: 14px 20px;
  text-align: left;
}

.account-auth-page__input:focus,
.account-auth-page__textarea:focus {
  border-color: #f96332;
}

.account-auth-page__input--password {
  padding-right: 72px;
}

.account-auth-page__password-toggle {
  position: absolute;
  top: 50%;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transform: translateY(-50%);
  color: #000000;
}

.account-auth-page__password-toggle i {
  font-size: 24px;
}

.account-auth-page__field-error {
  font-size: 13px;
  line-height: 1.35;
  color: #c14d27;
}

.account-auth-page__newsletter {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.account-auth-page__toggle-group {
  display: flex;
  gap: 12px;
}

.account-auth-page__toggle-option {
  position: relative;
  flex: 1;
}

.account-auth-page__toggle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.account-auth-page__toggle-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1px solid #a99994;
  border-radius: 14px;
  background: #ffffff;
  color: #221f1f;
  font-size: 18px;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.account-auth-page__toggle-option input:checked+span {
  border-color: #f96332;
  background: #fff3ef;
  color: #f96332;
}

.account-auth-page__choice-list {
  display: grid;
  gap: 10px;
}

.account-auth-page__choice-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #221f1f;
}

.account-auth-page__agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #8b8080;
}

.account-auth-page__agree input {
  margin-top: 4px;
}

.account-auth-page__submit {
  width: 100%;
  height: 48px;
  border: none;
  border-radius: 8px;
  background: #f96332;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
  font-family: "Fact", sans-serif;
  transition: background-color 0.2s ease;
}

.account-auth-page__submit:hover {
  background: #fc7a53;
}

.account-auth-page__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}

.account-auth-page__link {
  font-size: 18px;
  line-height: 1.2;
  color: #61729e;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-align: center;
}

.account-auth-page__calendar-btn {
  height: 72px;
  width: 56px;
  border: 1px solid #a99994;
  border-left: none;
  border-radius: 0 14px 14px 0;
  background: #ffffff;
}

.account-auth-page .input-group {
  display: flex;
  width: 100%;
}

.account-auth-page .input-group .account-auth-page__input {
  border-radius: 14px 0 0 14px;
}

.account-auth-page .input-group-btn {
  display: flex;
}

@media (max-width: 767px) {
  .account-auth-page {
    padding: 0;
    align-items: flex-end;
  }

  .account-auth-page__dialog,
  .account-auth-page__dialog--wide {
    max-width: none;
    max-height: 100vh;
    border-radius: 8px 8px 0 0;
  }

  .account-auth-page__head {
    min-height: 82px;
    padding: 20px 16px;
  }

  .account-auth-page__title {
    font-size: 28px;
  }

  .account-auth-page__body {
    padding: 20px 16px 32px;
  }

  .account-auth-page__field-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .account-auth-page__input,
  .account-auth-page__textarea {
    height: 56px;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 10px;
  }

  .account-auth-page__textarea {
    min-height: 112px;
  }

  .account-auth-page__submit {
    height: 52px;
    font-size: 18px;
    border-radius: 10px;
  }

  .account-auth-page__toggle-option span {
    min-height: 48px;
    border-radius: 10px;
    font-size: 16px;
  }

  .account-auth-page__link {
    font-size: 18px;
  }

  .account-auth-page__calendar-btn {
    height: 56px;
    border-radius: 0 10px 10px 0;
  }
}

/* ============================================================
   OCFilter (ocfilter48) — theme integration with filter-group UI
   ============================================================ */

/* Hide OCFilter's own header/footer in category sidebar; we have custom sidebar header/actions */
.catp__sidebar .ocf-header,
.catp__sidebar .ocf-footer,
.catp__sidebar .ocf-btn-mobile-fixed,
.catp__sidebar .ocf-is-mobile,
.catp__sidebar .ocf-hidden {
  display: none !important;
}

/* Remove OCFilter's default layout gaps/wrappers so filter-groups align */
.catp__sidebar .ocf-content,
.catp__sidebar .ocf-body,
.catp__sidebar .ocf-filter-list {
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
}

#column-left .ocf-content {
  padding: 0 16px;
}

/* Make OCFilter value button look like filter-group option row */
.catp__sidebar .filter-group__option {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  margin: 0;
}

/* filter-group.scss expects a real checkbox input; OCFilter uses buttons, so emulate checkbox visuals via span */
.catp__sidebar .filter-group__checkbox {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #8b8080;
  border-radius: 2px;
  background: #ffffff;
  transition: border-color 0.2s ease;
}

.catp__sidebar .filter-group__option:hover .filter-group__checkbox {
  border-color: #f96332;
}

.catp__sidebar .filter-group__option.ocf-selected .filter-group__checkbox {
  background: #f96332 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23ffffff' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
  border-color: #f96332;
}

/* OCFilter may mark disabled values; dim the option row */
.catp__sidebar .filter-group__option.ocf-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.catp__sidebar .ocf-filter-discard,
.catp__sidebar .ocf-filter-description,
.catp__sidebar .ocf-active-label--hidden {
  display: none !important;
}

/* OCFilter "show more" buttons — make them look like our sidebar links */
.catp__sidebar .ocf-btn-show-values,
.catp__sidebar .ocf-btn-show-filters {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #3579f6;
  padding: 0;
  margin-top: 8px;
}

.catp__sidebar .ocf-btn-show-values:hover,
.catp__sidebar .ocf-btn-show-filters:hover {
  text-decoration: underline;
}

.pi__spec-value .ocf-attribute-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: #f96332;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.pi__spec-value .ocf-attribute-link:hover {
  color: #f96332;
  text-decoration-color: #f96332;
}

/* Slider layout + colors (match filter-group hardcoded design) */
.catp__sidebar .ocf-value-slider {
  margin: 0;
  padding: 0;
}

/* OCFilter uses a namespaced noUiSlider skin (.ocf-noUi-*) */
.catp__sidebar .ocf-noUi-pips,
.catp__sidebar .ocf-noUi-marker,
.catp__sidebar .ocf-noUi-value {
  display: none !important;
  /* remove numbers/ticks under the slider */
}

.catp__sidebar .ocf-noUi-pips {
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.catp__sidebar .ocf-noUi-base::before {
  background-color: #d9d9d9 !important;
}

.catp__sidebar .ocf-noUi-connect::before,
.catp__sidebar .ocf-noUi-handle {
  background-color: #f96332 !important;
}

.catp__sidebar .ocf-noUi-handle {
  box-shadow: none !important;
  border: 0;
  width: 16px;
  height: 16px;
  top: 0;
  right: -10px;
}

.catp__sidebar .ocf-noUi-active {
  box-shadow: 0 0 0 6px rgba(249, 99, 50, 0.25) !important;
}

.catp__sidebar .col-sm-3 {
  padding: 0;
}

.catp__sidebar .ocf-filter-name {
  font-size: 18px;
  font-weight: 500;
  text-transform: none;
}

.catp__sidebar .ocf-filter-header {
  margin: 0 !important;
}

.catp__sidebar .ocf-value-name {
  font-size: 16px;
  margin: 0;
}

.catp__sidebar .ocf-value,
.ocf-value:active,
.ocf-value:focus,
.ocf-value:visited,
.ocf-value:hover {
  margin-bottom: 0 !important;
  /*align-items: flex-start;*/
}

/* ============================================================ */

.clear {
  position: relative;
}

.clear__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 206px;
  height: 36px;
  padding: 0 16px;
  border: 1px solid #eae3dd;
  border-radius: 8px;
  background: #fef2e6;
  font-family: "Fact", sans-serif;
  font-size: 16px;
  color: #f96332;
  cursor: pointer;
  transition: border-color 0.2s ease;
  font-weight: 400;
}

.clear__btn:hover {
  border-color: #f96332;
  color: #fef2e6;
  background: #f96332;
}

/*Contact Page*/
.contact {
  font-family: "Fact", sans-serif;
}

.contact__container {
  max-width: 1408px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__container .cat__breadcrumb {
  margin: 0;
}

.contact-page {
  font-family: sans-serif;
  color: #333;
  padding-bottom: 50px;
}

.page-title {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.search-page__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.search-page__top {
  gap: 16px;
}

.search-page__panel {
  padding: 24px;
  border: 1px solid #e7e2dd;
  border-radius: 16px;
  background: #ffffff;
}

.search-page__form {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.search-page__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-page__field--keyword {
  min-width: 0;
}

.search-page__label,
.search-page__limit-label {
  font-family: "Fact", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #221f1f;
}

.search-page__input,
.search-page__select,
.search-page__limit-select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d9d0c7;
  border-radius: 12px;
  background: #ffffff;
  font-family: "Fact", sans-serif;
  font-size: 16px;
  color: #221f1f;
}

.search-page__input::placeholder {
  color: #8b8080;
}

.search-page__input:focus,
.search-page__select:focus,
.search-page__limit-select:focus {
  outline: none;
  border-color: #f96332;
}

.search-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: flex-end;
}

.search-page__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Fact", sans-serif;
  font-size: 14px;
  color: #4f4a45;
  cursor: pointer;
}

.search-page__checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #f96332;
}

.search-page__checkbox input:disabled+span {
  opacity: 0.45;
}

.search-page__submit {
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: #f96332;
  font-family: "Fact", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  transition: background-color 0.2s ease;
}

.search-page__submit:hover {
  background: #e95828;
}

.search-page__toolbar {
  margin-top: 8px;
}

.search-page__limit {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.search-page__limit-select {
  min-width: 92px;
  width: auto;
  padding-right: 40px;
}

.catp__toolbar .search-page__limit {
  justify-content: flex-end;
}

.search-page__pagination {
  padding-top: 8px;
}

.search-page__empty {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 32px 24px;
  border: 1px solid #e7e2dd;
  border-radius: 16px;
  background: #ffffff;
}

.search-page__empty-title {
  margin: 0;
  font-family: "Fact", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  color: #221f1f;
}

.search-page__empty-text {
  margin: 0;
  font-family: "Fact", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #6d625a;
}

@media (max-width: 1199px) {
  .search-page__form {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 1fr);
  }

  .search-page__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .search-page__toolbar .toolbar-controls {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .search-page {
    padding: 24px 0 48px;
  }

  .search-page__panel {
    padding: 16px;
    border-radius: 12px;
  }

  .search-page__form {
    grid-template-columns: 1fr;
  }

  .search-page__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .search-page__submit {
    width: 100%;
  }

  .search-page__toolbar {
    align-items: flex-start;
  }

  .search-page__toolbar .toolbar-controls {
    width: 100%;
    gap: 12px;
  }

  .search-page__toolbar .sort {
    width: 100%;
  }

  .search-page__toolbar .sort__btn {
    width: 100%;
    justify-content: space-between;
  }

  .search-page__limit,
  .catp__toolbar .search-page__limit {
    width: 100%;
    justify-content: space-between;
  }

  .search-page__limit-select {
    width: auto;
    min-width: 88px;
  }
}

.contact-top-panel {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  width: 36px;
  height: 36px;
  background-color: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.info-text {
  font-size: 14px;
}

.stores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.store-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 24px 20px 8px 20px;
}

.store-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.store-image-placeholder {
  width: 100%;
  height: 300px;
  background-color: #f2e9e7;
  border-radius: 8px;
}

.store-name {
  font-weight: 700;
  font-size: 22px;
  padding: 16px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  margin-bottom: 24px;
}

.tour-container {
  border-radius: 8px;
  background: #fff;
  padding: 16px;
}

.tour-placeholder {
  width: 100%;
  height: 700px;
  background-color: #f2e9e7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tour-map {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.tour-icon {
  opacity: 0.5;
}

.contact-header-block {
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.contact-header-title {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 28px 0;
  font-family: "Fact", sans-serif;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: max-content max-content;
  width: fit-content;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

@media (max-width: 767px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-text {
  font-size: 16px;
  color: #222;
  font-weight: 400;
  line-height: 1.3;
  white-space: normal;
}

@media (max-width: 767px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-header-block {
    padding: 20px;
  }
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: #ff6b35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.contact-text .days {
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 5px;
  font-size: 15px;
}

.store-main-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 28px 0;
}

.store-map-block {
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
  width: 100%;
  height: 738px;
}

.map-wrapper {
  height: 100%;
}

.store-map {
  border: 0;
  border-radius: 8px;
  width: 100%;
  height: 100%;
}

.instruction-popup-open {
  overflow: hidden;
}

.instruction-popup {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 20040;
}

.instruction-popup.is-open {
  display: block;
}

.instruction-popup__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 24, 40, 0.55);
}

.instruction-popup__box {
  position: relative;
  z-index: 2;
  width: min(640px, calc(100% - 32px));
  margin: 80px auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(16, 24, 40, 0.18);
}

.instruction-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #8b8080;
}

.instruction-popup__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}

.instruction-popup__close {
  border: 0;
  background: transparent;
  color: #64748b;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.instruction-popup__body {
  padding: 24px;
}

.instruction-popup__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.instruction-popup__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid #dbe3ea;
  border-radius: 8px;
}

.instruction-popup__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.instruction-popup__type {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3e77aa;
}

.instruction-popup__name {
  font-size: 16px;
  line-height: 1.45;
  color: #1e293b;
  word-break: break-word;
}

.instruction-popup__action {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #f96332;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.instruction-popup__action:hover {
  color: #fff;
  text-decoration: none;
  background: #fc9e75;
}

@media (max-width: 767px) {
  .instruction-popup__box {
    width: calc(100% - 20px);
    margin: 40px auto;
    border-radius: 20px;
  }

  .instruction-popup__head {
    padding: 20px 20px 12px;
  }

  .instruction-popup__body {
    padding: 0 20px 20px;
  }

  .instruction-popup__item {
    align-items: flex-start;
    flex-direction: column;
  }

  .instruction-popup__action {
    width: 100%;
  }
}

.pi__detail--services {
  padding: 0;
  overflow: hidden;
}

.pi__services-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid #ece7e1;
}

.pi__services-summary {
  color: #8B8080;
  font-size: 14px;
  font-weight: 400;
}

.pi__services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
}

.pi__service-item--extra {
  display: none;
}

.pi__service-item--extra.pi__service-item--visible {
  display: block;
}

.pi__service-row,
.pi__service-child {
  display: grid;
  grid-template-columns: 24px 44px 1fr auto;
  gap: 16px;
  align-items: center;
}

.pi__service-children {
  padding: 16px 0 0 16px;
}

.pi__service-child:not(:last-child) {
  margin-bottom: 16px;
}

.pi__service-child {
  cursor: pointer;
  margin: 0;
}

.pi__service-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
}

.pi__service-parent-input,
.pi__service-child-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pi__service-checkbox,
.pi__service-radio {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #777777;
  background: #fff;
}

.pi__service-checkbox {
  border-radius: 4px;
}

.pi__service-radio {
  border-radius: 50%;
}

.pi__service-parent-input:checked+.pi__service-checkbox {
  border-color: #ff6b35;
  background: #ff6b35;
}

.pi__service-parent-input:checked+.pi__service-checkbox::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 8px;
  height: 13px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(40deg);
}

.pi__service-child-input:checked+.pi__service-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #ff6b35;
}

.pi__service-media {
  display: flex;
  align-items: center;
}

.pi__service-image {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 2px;
}

.pi__service-main {
  min-width: 0;
}

.pi__service-name-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.pi__service-name,
.pi__service-child-name {
  font-size: 14px;
  font-weight: 400;
  color: #8B8080;
}

.pi__service-price,
.pi__service-child-price {
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  white-space: nowrap;
}

.pi__service-price-currency {
  margin-left: 4px;
}

.pi__service-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #6680b8;
  border-radius: 50%;
  background: transparent;
  color: #6680b8;
  font-size: 13px;
  line-height: 1;
  padding: 0;
}

.pi__service-arrow {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
}

.pi__service-arrow span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #8d837f;
  border-bottom: 2px solid #8d837f;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.pi__service-item--open .pi__service-arrow span {
  transform: rotate(-135deg);
}

.pi__services-more {
  display: block;
  border: 0;
  background: transparent;
  color: #61729E;
  font-size: 16px;
  font-weight: 400;
  padding-bottom: 16px;
}

.pi__services-more::after {
  content: "↓";
  display: inline-block;
  transition: transform .2s ease;
  font-size: 18px;
  padding: 0 5px;
}

.pi__services-more.is-expanded::after {
  transform: rotate(180deg);
}

.pi__service-modal[hidden] {
  display: none;
}

.pi__service-modal {
  position: fixed;
  inset: 0;
}

.pi__service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.45);
}

.pi__service-modal-dialog {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
}

.pi__service-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: #8d837f;
}

.pi__service-modal-title {
  margin: 0 0 16px;
  font-size: 22px;
  color: #141414;
}

.pi__service-modal-body {
  color: #4a4542;
  line-height: 1.6;
}

body.pi__service-modal-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .pi__services-head {
    padding: 22px 18px;
    flex-wrap: wrap;
  }

  .pi__service-row,
  .pi__service-child {
    grid-template-columns: 38px 60px 1fr;
  }

  .pi__service-arrow,
  .pi__service-price,
  .pi__service-child-price {
    grid-column: 3;
    justify-self: end;
  }

  .pi__service-image {
    width: 60px;
    height: 60px;
  }

  .pi__service-name,
  .pi__service-child-name {
    font-size: 16px;
  }

  .pi__service-price,
  .pi__service-child-price {
    font-size: 20px;
  }

  .pi__service-modal-dialog {
    margin: 6vh 16px 0;
    padding: 22px 18px;
  }
}

.pi__drawing-section {
  scroll-margin-top: var(--teplokram-header-offset, 120px);
}

.pi__drawing-all_content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__drawings-layout {
  display: grid;
  grid-template-columns: minmax(260px, 300px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.pi__drawings-sidebar {
  position: sticky;
  top: 120px;
}

.pi__drawings-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.pi__drawings-card-media {
  position: relative;
  padding: 16px;
  background: #fff;
}

.pi__drawings-card-image_container {
  position: relative;
}

.pi__drawings-card-image {
  width: 100%;
  height: auto;
  display: block;
}

.pi__drawings-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__drawings-specs_additional-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__drawings-specs {
  margin-top: 16px;
  padding-left: 16px;
}

.pi__drawings-specs-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #221f1f;
}

.pi__drawings-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.pi__drawings-spec:last-child {
  margin-bottom: 0;
}

.pi__drawings-spec-label {
  font-size: 13px;
  color: #8d837f;
}

.pi__drawings-spec-value {
  font-size: 15px;
  color: #221f1f;
}

.pi__drawings-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__drawing-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pi__drawing-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 16px;
}

.pi__drawing-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  padding-bottom: 16px;
}

.pi__drawing-title span {
  font-size: 16px;
  font-weight: 400;
  color: #8B8080;
}

.pi__drawing-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.pi__drawing-tour-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #f26a2e;
  color: #f26a2e;
  background: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.pi__drawing-tour-link:hover,
.pi__drawing-tour-link:focus {
  color: #fff;
  background: #f26a2e;
  border-color: #f26a2e;
  text-decoration: none;
}

.pi__drawing-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.pi__drawing-gallery-slider {
  position: relative;
}

.pi__drawing-gallery-track {
  display: flex;
  overflow: hidden;
  border-radius: 8px;
  scroll-behavior: smooth;
}

.pi__drawing-gallery-slider .pi__drawing-gallery-item {
  flex: 0 0 100%;
}

.pi__drawing-gallery-nav {
  position: absolute;
  top: calc(50% - 18px);
  width: 36px;
  height: 36px;
  border: 1px solid #e3e3e3;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.pi__drawing-gallery-nav[disabled] {
  opacity: 0.45;
  cursor: default;
}

.pi__drawing-gallery-nav--prev {
  left: 12px;
}

.pi__drawing-gallery-nav--prev .pi__drawing-gallery-nav-icon {
  transform: rotate(180deg);
}

.pi__drawing-gallery-nav--next {
  right: 12px;
}

.pi__drawing-gallery-nav-icon {
  width: 20px;
  height: 20px;
}

.pi__drawing-gallery-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.pi__drawing-gallery-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #d6d6d6;
  cursor: pointer;
}

.pi__drawing-gallery-dot.is-active {
  background: #f26a2e;
}

.pi__drawing-gallery--single {
  grid-template-columns: 1fr;
}

.pi__drawing-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.pi__drawing-description {
  margin: 0;
  font-size: 22px;
  line-height: 1.6;
  color: #000000;
  font-weight: 500;
}

.pi__drawing-description>*:first-child {
  margin-top: 0;
}

.pi__drawing-description>*:last-child {
  margin-bottom: 0;
}

.pi__drawing-frame {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  min-height: 545px;
}

.pi__drawing-iframe {
  display: block;
  width: 100%;
  min-height: 545px;
  border: 0;
  background: transparent;
}

.pi__drawing-card--empty {
  text-align: center;
}

.pi__drawing-empty {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #756d69;
}

.pi__drawings-video-consultation {
  background: #ecf3fb;
  border: 1px solid #d5e3ee;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: 150px;
  gap: 16px;
}

.pi__drawings-video-consultation-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.pi__drawings-video-consultation-info p {
  margin: 0;
  line-height: 1.4;
}

.pi__drawings-video-consultation-title {
  font-size: 14px;
  font-weight: 700;
  color: #221f1f;
  line-height: normal;
}

.pi__drawings-video-consultation-subtitle {
  font-size: 14px;
  line-height: 1;
}

.pi__drawings-video-consultation-subtitle-text {
  color: #766f6e;
}

.pi__drawings-video-consultation-schedule {
  color: #3e77aa;
}

.pi__drawings-video-consultation-schedule:hover {
  color: #f96332;
}

.pi__drawings-schedule-wrapper {
  position: relative;
  display: inline-block;
}

.pi__drawings-schedule-tooltip {
  position: absolute;
  bottom: 120%;
  left: 0;
  min-width: 220px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid #d5e3ee;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  line-height: 1.4;
  color: #221f1f;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 20;
}

.pi__drawings-schedule-wrapper:hover .pi__drawings-schedule-tooltip {
  opacity: 1;
  visibility: visible;
}

.pi__drawings-video-consultation-btn {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 201px;
  height: 38px;
  padding: 0 16px;
  background: #3e77aa;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.pi__drawings-video-consultation-btn-container {
  display: flex;
  justify-content: center;
}

.pi__drawings-video-consultation-btn:hover {
  background: #0036ad;
}

.pi__drawings-video-consultation-btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.product-card__drawing-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.product-card__drawing-info p {
  margin: 0;
}

.pi__drawings-counter {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  height: 48px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  overflow: hidden;
}

.pi__drawings-counter-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pi__drawings-counter-btn img {
  width: 24px;
  height: 24px;
}

.pi__drawings-counter-value {
  font-size: 16px;
  color: #221f1f;
  line-height: normal;
  left: 45%;
  position: sticky;
  border: 0;
}

.pi__drawings-buy {
  display: flex;
  justify-content: space-between
}

.pi__drawings-buy-btn {
  width: 130px;
  height: 48px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #f96332;
  border-radius: 8px;
  font-size: 12px;
  color: #ffffff;
  transition: background-color 0.2s ease;
  text-transform: uppercase;
}

.pi__drawings-buy-btn.pi__buy-btn--in-cart {
  background-color: #ffffff !important;
  text-decoration: underline !important;
  text-transform: none !important;
  color: #3e77aa;
}

.pi__drawings-buy-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pi__buy-btn--in-cart .pi__buy-btn-label {
  text-decoration: underline;
  text-transform: none;
}

.pi__drawings-unavailable-text {
  font-size: 16px;
  color: #766f6e;
  line-height: normal;
  margin: 0;
}

.pi__drawings-unavailable-row {
  display: flex;
  gap: 32px;
  align-items: center;
  width: 130px;
}

.pi__pi__drawings-cart-block--unavailable-discontinued {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.pi__drawings-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.pi__drawings-price-old-value {
  font-size: 28px;
  text-decoration: line-through;
}

.pi__drawings-price-value {
  font-size: 40px;
}

.pi__drawings-price-old {
  color: #766f6e;
  line-height: normal;
}

.pi__drawings-price {
  color: #f96332;
  line-height: normal;
  margin: 0;
}

@media (max-width: 767px) {
  .pi__drawings-layout {
    grid-template-columns: 1fr;
  }

  .pi__drawings-sidebar {
    position: static;
  }

  .pi__drawing-card {
    padding: 16px;
  }

  .pi__drawing-title {
    font-size: 16px;
    margin-bottom: 0;
  }

  .pi__drawing-card-head {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
  }

  .pi__drawing-tour-link {
    width: 100%;
  }

  .pi__drawing-gallery {
    grid-template-columns: 1fr;
  }

  .pi__drawing-gallery-nav {
    width: 32px;
    height: 32px;
  }

  .pi__drawing-description {
    font-size: 16px;
  }

  .pi__drawing-frame,
  .pi__drawing-iframe {
    min-height: 280px;
  }
}

body.cart-widget-open {
  overflow: hidden;
}

.cart-toast-layer {
  position: fixed;
  inset: 0;
  z-index: 1065;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
}

.cart-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(560px, calc(100vw - 48px));
  padding: 14px 18px;
  border: 1px solid #fde1c9;
  border-radius: 8px;
  background: #fff5e8;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.cart-toast__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex: 1;
}

.cart-toast__title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  color: #2f2f2f;
}

.cart-toast__link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #5c5c5c;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
}

.cart-toast__link:hover {
  color: #f97316;
  text-decoration: underline;
}

.register-success-toast-layer {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 20030;
  display: flex;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.register-success-toast-layer.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
}

.register-success-toast {
  pointer-events: auto;
  width: min(560px, calc(100vw - 48px));
  padding: 16px 22px;
  border: 1px solid #cfe9d7;
  border-radius: 12px;
  background: #f3fff7;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.register-success-toast__text {
  margin: 0;
  color: #1f5135;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

.register-success-toast__text a {
  color: inherit;
  text-decoration: underline;
}

.cart-widget {
  position: fixed;
  inset: 0;
  z-index: 20020;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 16px 24px;
}

.cart-widget.is-open {
  display: flex;
}

.cart-widget-empty__overlay,
.cart-widget-filled__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}

.cart-widget-empty__dialog {
  position: relative;
  z-index: 2;
  width: 500px;
  max-width: calc(100vw - 32px);
}

.cart-widget-filled__dialog {
  position: relative;
  z-index: 2;
  width: min(842px, calc(100vw - 32px));
  height: min(calc(100vh - 84px), 1120px);
}

.cart-widget-empty__panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: inherit;
    overflow: hidden;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.16);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26);
    padding: 0;
}

.cart-widget-filled__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: inherit;
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.16);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26);
  padding: 0;
  height: 100%;
}

.cart-widget-empty__panel {
  align-items: center;
  max-height: 520px;
  padding: 32px;
}

.cart-widget-empty__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.cart-widget-filled__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 11px 12px;
  border-bottom: 1px solid #d9d1ca;
}

.cart-widget-empty__title,
.cart-widget-filled__title {
  margin: 0;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
}

.cart-widget-empty__close,
.cart-widget-filled__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
}

.cart-widget-empty__close img,
.cart-widget-filled__close img {
  width: 24px;
  height: 24px;
  opacity: 0.72;
}

.cart-widget-filled__bulk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 32px 16px 32px;
  background: #ffffff;
}

.cart-widget-filled__bulk-info {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #8B8080;
  font-size: 14px;
  font-weight: 400;
}

.cart-widget-filled__bulk-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: 1px solid #a6a09a;
  border-radius: 3px;
  background: #ffffff;
  color: transparent;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
}

.cart-widget-filled__bulk-mark i {
  opacity: 0;
}

.cart-widget-filled__bulk-mark.is-active {
  border-color: #8e847c;
  background: #8e847c;
  color: #ffffff;
}

.cart-widget-filled__bulk-mark.is-active i {
  opacity: 1;
}

.cart-widget-filled__bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-widget-filled__bulk-icon-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8B8080;
  border-radius: 0;
  min-height: 24px;
}

.cart-widget-filled__bulk-icon-btn i {
    font-size: 20px;
}

.cart-widget-filled__bulk-icon-btn--danger {
  color: #8d827a;
}

.cart-widget-filled__scroll {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 12px;
  overflow-y: auto;
}

.cart-widget-filled__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-widget-filled__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-widget-filled__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cart-widget-filled__continue {
    min-width: 206px;
    min-height: 40px;
    border: 1px solid #EAE3DD;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    background: #FEF2E6;
    color: #61729E;
}

.cart-widget-filled__continue:hover {
    color: #F96332;
}

.cart-widget-filled__checkout-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 8px;
    background: #FEF2E6;
    border: 1px solid #EAE3DD;
}

.cart-widget-filled__checkout-total {
  color: #000000;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
}

.cart-widget-filled__checkout {
  min-width: 230px;
  min-height: 48px;
  border-radius: 8px;
  background: #F96332;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cart-widget-filled__checkout:hover {
    border: 1px solid #F96332;
    background: #ffffff;
    color: #F96332;
}

.cart-widget-filled__related {
  padding-top: 8px;
}

.cart-widget-filled__related .checkout-related-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-widget-filled__related .checkout-heading {
  margin: 0;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
}

.cart-widget-filled__related .opc-related-products {
  overflow: hidden;
}

.cart-widget-filled__related .carousel_related_prodcuts {
  display: block;
}

.cart-widget-filled__related .carousel_related_prodcuts .swiper-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.cart-widget-filled__related .carousel_related_prodcuts .related-item {
  flex: 0 0 173px;
  scroll-snap-align: start;
}

.cart-widget-filled__related .carousel_related_prodcuts .product-thumb {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 8px 8px 10px;
  border: 1px solid #dfd5cd;
  border-radius: 6px;
  background: #ffffff;
}

.cart-widget-filled__related .carousel_related_prodcuts .product-thumb .image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
}

.cart-widget-filled__related .carousel_related_prodcuts .product-thumb .image img {
  max-width: 100%;
  max-height: 112px;
  object-fit: contain;
}

.cart-widget-filled__related .carousel_related_prodcuts .caption {
  gap: 8px;
}

.cart-widget-filled__related .carousel_related_prodcuts .product-name {
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.cart-widget-filled__related .carousel_related_prodcuts .cart-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-widget-filled__related .carousel_related_prodcuts .price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
}

.cart-widget-filled__related .carousel_related_prodcuts .price-old {
  color: #6b7280;
  text-decoration: line-through;
  font-weight: 500;
}

.cart-widget-filled__related .carousel_related_prodcuts .price-new {
  color: #f97316;
}

.cart-widget-filled__related .carousel_related_prodcuts .btn-add-to-cart {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

.cart-widget-filled__related .carousel-related-scrollbar {
  display: none;
}

.cart-widget-empty__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cart-widget-empty__image {
  width: 380px;
  height: auto;
}

.cart-widget-empty__text {
  max-width: 460px;
  margin: 0;
  color: #8B8080;
  font-size: 20px;
  font-weight: 400;
}

.cart-widget__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.cart-widget__dialog {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
}

.cart-widget--empty .cart-widget__dialog--empty {
  width: 500px;
  max-width: calc(100vw - 32px);
}

.cart-widget--filled .cart-widget__dialog--filled {
  width: min(842px, calc(100vw - 32px));
  height: min(calc(100vh - 84px), 1120px);
}

.cart-widget__panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: inherit;
  overflow: hidden;
  border-radius: 6px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.16);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26);
  padding: 0;
}

.cart-widget__panel--empty {
  align-items: center;
  justify-content: center;
  min-height: 520px;
  padding: 32px;
}

.cart-widget__panel--filled {
  min-height: 0;
  padding: 0;
}

.cart-widget__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 11px 12px;
  border-bottom: 1px solid #d9d1ca;
}

.cart-widget__eyebrow {
  margin: 0 0 6px;
  color: #f97316;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cart-widget--filled .cart-widget__eyebrow {
  display: none;
}

.cart-widget__title {
  margin: 0;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.cart-widget__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 0;
}

.cart-widget__close img {
  width: 18px;
  height: 18px;
  opacity: 0.72;
}




.cart-widget__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px 11px 12px;
    border-bottom: 1px solid #d9d1ca;
}

.cart-widget__eyebrow {
    margin: 0 0 6px;
    color: #f97316;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-widget--filled .cart-widget__eyebrow {
    display: none;
}

.cart-widget__title {
    margin: 0;
    color: #111827;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.cart-widget__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 0;
}

.cart-widget__close img {
    width: 18px;
    height: 18px;
    opacity: 0.72;
}







.cart-widget__bulk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 16px 10px 12px;
  background: #ffffff;
  border-bottom: 1px solid #d9d1ca;
}

.cart-widget__bulk-info {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #80756d;
  font-size: 13px;
  font-weight: 400;
}

.cart-widget__bulk-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: #8e847c;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
}

.cart-widget__bulk-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
}

.cart-widget__bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cart-widget__bulk-icon-btn,
.cart-widget__continue,
.cart-widget__checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.cart-widget__bulk-icon-btn {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #7f746c;
  border-radius: 0;
  min-height: 24px;
}

.cart-widget__bulk-icon-btn--danger {
  color: #8d827a;
}

.cart-widget__scroll {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 12px;
  overflow-y: auto;
}

.cart-widget__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-widget__item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border: 1px solid #8B8080;
    border-radius: 8px;
    background: #ffffff;
}

.cart-widget__item-container {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cart-widget__item--voucher {
  grid-template-columns: 18px 56px minmax(0, 1fr) 140px;
}

.cart-widget__item-tools {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding-top: 1px;
}

.cart-widget__item-tools--voucher {
  justify-content: flex-start;
}

.cart-widget__drag,
.cart-widget__menu-toggle,
.cart-widget__qty-btn,
.cart-widget__menu-item {
  border: 0;
  background: transparent;
}

.cart-widget__drag {
  width: 18px;
  height: 28px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: #b3aba4;
}

.cart-widget__drag-dots {
  display: grid;
  grid-template-columns: repeat(2, 4px);
  grid-auto-rows: 4px;
  gap: 2px 2px;
  width: 8px;
  height: 16px;
  margin: 0 auto;
}

.cart-widget__drag-dots span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
}

.cart-widget__check {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin: 0;
}

.cart-widget__check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cart-widget__check-box {
  display: inline-flex;
  width: 24px;
  height: 24px;
  border: 1px solid #bfb4ac;
  border-radius: 3px;
  background: #ffffff;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cart-widget__check input:checked + .cart-widget__check-box {
  border-color: #F96332;
  background: #F96332;
}

.cart-widget__check input:checked + .cart-widget__check-box::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 8px;
    height: 13px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(40deg);
}

.cart-widget__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #ffffff;
}

.cart-widget__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-widget__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 425px;
}

.cart-widget__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.cart-widget__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-widget__name {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.cart-widget__name:hover {
  color: #f97316;
  text-decoration: none;
}

.cart-widget__model,
.cart-widget__recurring,
.cart-widget__option,
.cart-widget__service-item {
  color: #6b7280;
  font-size: 12px;
  line-height: 1.35;
}

.cart-widget__options {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-widget__option-name,
.cart-widget__service-name {
  font-weight: 600;
  color: #374151;
}

.cart-widget__option-value,
.cart-widget__service-value {
  color: #4b5563;
}

.cart-widget__services {
  padding: 0;
  border-top: 1px solid #d9d1ca;
  padding-top: 12px;
}

.cart-widget__services summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
  list-style: none;
}

.cart-widget__services summary::-webkit-details-marker {
  display: none;
}

.cart-widget__services-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding: 8px 0 0;
}

.cart-widget__service-link {
  display: inline-flex;
  width: fit-content;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}

.cart-widget__service-link:hover {
  color: #ea580c;
  text-decoration: none;
}

.cart-widget__menu-wrap {
  position: relative;
  flex-shrink: 0;
}

.cart-widget__menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: 18px;
    height: 18px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.cart-widget__menu-toggle span {
    width: 4px;
    height: 4px;
    background: #111111;
    border-radius: 50%;
}

.cart-widget__menu {
    position: absolute;
    right: 16px;
    top: 0;
    z-index: 2;
    min-width: 205px;
    max-height: 48px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #FEF2E6;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
}

.cart-widget__menu-item {
  display: flex;
  width: 100%;
  border-radius: 8px;
  color: #61729E;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  gap: 8px;
  align-items: center;
}

.cart-widget__menu-item i {
    font-size: 24px;
    color: #61729E;
    font-weight: 400;
}

.cart-widget__menu-item:hover {
    color: #F96332;
}

.cart-widget__side {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.cart-widget__side--voucher {
  justify-content: flex-start;
}

.cart-widget__qty {
    display: inline-flex;
    align-items: center;
    gap: 0;
    min-height: 50px;
    border: 1px solid #E3E3E3;
    border-radius: 6px;
    background: #ffffff;
    overflow: hidden;
    width: 130px;
    justify-content: center;
}

.cart-widget__qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 38px;
  color: #f97316;
  font-size: 20px;
  font-weight: 400;
}

.cart-widget__qty-input {
  width: 34px;
  height: 38px;
  border: 0;
  color: #111827;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  appearance: textfield;
}

.cart-widget__qty-input::-webkit-outer-spin-button,
.cart-widget__qty-input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.cart-widget__price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.cart-widget__price-old {
  color: #8B8080;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-decoration: line-through;
  width: 100%;
}

.cart-widget__price,
.cart-widget__total {
  color: #f97316;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.cart-widget__price {
  font-size: 40px;
  font-weight: 400;
  color: #E6865B;
}

.cart-widget__retail-price,
.checkout-cart__retail-price,
.cart-item-price__retail {
  color: #766f6e;
  font-size: 13px;
  line-height: 1.2;
}

.cart-widget__bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-widget__summary {
  padding: 20px;
  border-radius: 24px;
  background: #f8fafc;
}

.cart-widget__checkout-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px 10px 16px;
  border-radius: 6px;
  background: #fff4e5;
  border: 1px solid #ead9c7;
}

.cart-widget__checkout-total {
  color: #111827;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.cart-widget__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  color: #374151;
  font-size: 15px;
}

.cart-widget__summary-row + .cart-widget__summary-row {
  border-top: 1px solid #e5e7eb;
}

.cart-widget__summary-row--grand {
  color: #111827;
  font-size: 17px;
  font-weight: 700;
}

.cart-widget__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cart-widget__actions--empty {
  justify-content: center;
}

.cart-widget__continue {
  min-width: 170px;
  min-height: 34px;
  padding: 0 16px;
  border: 1px solid #ead9c8;
  background: #fff6ea;
  color: #8d7a6c;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}

.cart-widget__continue:hover {
  border-color: #d9c2a7;
  color: #7d6b5f;
}

.cart-widget__checkout {
  min-width: 176px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 6px;
  background: #f97316;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
}

.cart-widget__checkout:hover {
  background: #ea580c;
  color: #ffffff;
  text-decoration: none;
}

.cart-widget__related {
  padding-top: 8px;
}

.cart-widget__related .checkout-related-products {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-widget__related .checkout-heading {
  margin: 0;
  color: #111827;
  font-size: 18px;
  font-weight: 700;
}

.cart-widget__related .opc-related-products {
  overflow: hidden;
}

.cart-widget__related .carousel_related_prodcuts {
  display: block;
}

.cart-widget__related .carousel_related_prodcuts .swiper-wrapper {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.cart-widget__related .carousel_related_prodcuts .related-item {
  flex: 0 0 173px;
  scroll-snap-align: start;
}

.cart-widget__related .carousel_related_prodcuts .product-thumb {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 8px 8px 10px;
  border: 1px solid #dfd5cd;
  border-radius: 6px;
  background: #ffffff;
}

.cart-widget__related .carousel_related_prodcuts .product-thumb .image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
}

.cart-widget__related .carousel_related_prodcuts .product-thumb .image img {
  max-width: 100%;
  max-height: 112px;
  object-fit: contain;
}

.cart-widget__related .carousel_related_prodcuts .caption {
  gap: 8px;
}

.cart-widget__related .carousel_related_prodcuts .product-name {
  color: #111827;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.cart-widget__related .carousel_related_prodcuts .cart-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-widget__related .carousel_related_prodcuts .price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
}

.cart-widget__related .carousel_related_prodcuts .price-old {
  color: #6b7280;
  text-decoration: line-through;
  font-weight: 500;
}

.cart-widget__related .carousel_related_prodcuts .price-new {
  color: #f97316;
}

.cart-widget__related .carousel_related_prodcuts .btn-add-to-cart {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #111827;
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}

.cart-widget__related .carousel-related-scrollbar {
  display: none;
}

.cart-widget-filled__services {
  padding: 0;
  border-top: 1px solid #d9d1ca;
  grid-column: 1 / -1;
}

.cart-widget-filled__services-head {
  padding: 14px 12px 0;
}

.cart-widget-filled__services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
}

.cart-widget-filled__services-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.cart-widget-filled__services-arrow::before {
  content: '';
  width: 13px;
  height: 13px;
  border-right: 2px solid #8d837f;
  border-bottom: 2px solid #8d837f;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.cart-widget-filled__services.is-expanded .cart-widget-filled__services-arrow::before {
  transform: rotate(-135deg);
}

.cart-widget-filled__services-title {
  color: #111827;
  font-size: 16px;
  font-weight: 400;
}

.cart-widget-filled__services-summary {
  color: #8b8080;
  font-size: 14px;
  font-weight: 400;
}

.cart-widget-filled__services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 12px 0 12px;
}

.cart-widget-filled__services-list[hidden],
.cart-widget-filled__services-list--collapsed {
  display: none !important;
}

.cart-widget-filled__service-item--extra {
  display: none;
}

.cart-widget-filled__service-item--extra.cart-widget-filled__service-item--visible {
  display: block;
}

.cart-widget-filled__service-row,
.cart-widget-filled__service-child {
  display: grid;
  grid-template-columns: 24px 44px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.cart-widget-filled__service-children {
  padding: 16px 0 0 16px;
}

.cart-widget-filled__service-child:not(:last-child) {
  margin-bottom: 16px;
}

.cart-widget-filled__service-child {
  cursor: pointer;
  margin: 0;
}

.cart-widget-filled__service-toggle {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0;
}

.cart-widget-filled__service-parent-input,
.cart-widget-filled__service-child-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cart-widget-filled__service-checkbox,
.cart-widget-filled__service-radio {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #777777;
  background: #fff;
}

.cart-widget-filled__service-checkbox {
  border-radius: 4px;
}

.cart-widget-filled__service-radio {
  border-radius: 50%;
}

.cart-widget-filled__service-parent-input:checked + .cart-widget-filled__service-checkbox {
  border-color: #ff6b35;
  background: #ff6b35;
}

.cart-widget-filled__service-parent-input:checked + .cart-widget-filled__service-checkbox::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 8px;
  height: 13px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(40deg);
}

.cart-widget-filled__service-child-input:checked + .cart-widget-filled__service-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #ff6b35;
}

.cart-widget-filled__service-media {
  display: flex;
  align-items: center;
}

.cart-widget-filled__service-image {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 2px;
}

.cart-widget-filled__service-main {
  min-width: 0;
}

.cart-widget-filled__service-name-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cart-widget-filled__service-name,
.cart-widget-filled__service-child-name {
  font-size: 14px;
  font-weight: 400;
  color: #8b8080;
}

.cart-widget-filled__service-price,
.cart-widget-filled__service-child-price {
  font-size: 22px;
  font-weight: 400;
  color: #000000;
  white-space: nowrap;
}

.cart-widget-filled__service-price-currency {
  margin-left: 4px;
}

.cart-widget-filled__service-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #6680b8;
  border-radius: 50%;
  background: transparent;
  color: #6680b8;
  font-size: 13px;
  line-height: 1;
  padding: 0;
}

.cart-widget-filled__service-arrow {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
}

.cart-widget-filled__service-arrow span {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #8d837f;
  border-bottom: 2px solid #8d837f;
  transform: rotate(45deg);
  transition: transform .2s ease;
}

.cart-widget-filled__service-item--open .cart-widget-filled__service-arrow span {
  transform: rotate(-135deg);
}

.cart-widget-filled__services-more {
  display: block;
  border: 0;
  background: transparent;
  color: #61729E;
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 16px 12px;
  text-align: left;
}

.cart-widget-filled__services-more::after {
  content: "↓";
  display: inline-block;
  transition: transform .2s ease;
  font-size: 18px;
  padding: 0 5px;
}

.cart-widget-filled__services-more.is-expanded::after {
  transform: rotate(180deg);
}

.cart-widget-filled__service-modal[hidden] {
  display: none;
}

.cart-widget-filled__service-modal {
  position: fixed;
  inset: 0;
  z-index: 20040;
}

.cart-widget-filled__service-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20, 20, 20, 0.45);
}

.cart-widget-filled__service-modal-dialog {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 10vh auto 0;
  background: #fff;
  border-radius: 18px;
  padding: 28px;
}

.cart-widget-filled__service-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 28px;
  color: #8d837f;
}

.cart-widget-filled__service-modal-title {
  margin: 0 0 16px;
  font-size: 22px;
  color: #141414;
}

.cart-widget-filled__service-modal-body {
  color: #4a4542;
  line-height: 1.6;
}

.cart-widget-filled__service-modal-open {
  overflow: hidden;
}

.cart-widget__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.cart-widget__empty-image {
  width: 350px;
  height: auto;
}

.cart-widget__empty-title {
  margin: 0;
  color: #111827;
  font-size: 30px;
  font-weight: 700;
}

.cart-widget__empty-text {
  max-width: 460px;
  margin: 0;
  color: #8B8080;
  font-size: 20px;
  font-weight: 400;
}

@media (max-width: 1199px) {
  .cart-widget__item,
  .cart-widget__item--voucher {
    grid-template-columns: 42px 42px 92px minmax(0, 1fr);
  }

  .cart-widget__side {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 767px) {
  .cart-toast {
    width: min(520px, calc(100vw - 24px));
  }

  .register-success-toast {
    width: min(520px, calc(100vw - 24px));
    padding: 14px 18px;
  }

  .register-success-toast__text {
    font-size: 15px;
  }

  .cart-widget {
    padding: 12px;
  }

  .cart-widget-empty__dialog,
  .cart-widget-filled__dialog {
    width: 100%;
    max-height: calc(100vh - 24px);
  }

  .cart-widget-empty__dialog,
  .cart-widget-filled__dialog {
    width: 100%;
    height: auto;
    max-width: none;
  }

  .cart-widget-empty__panel,
  .cart-widget-filled__panel {
    border-radius: 8px;
  }

  .cart-widget-empty__panel {
    min-height: 420px;
  }

  .cart-widget-filled__panel {
    padding: 16px;
  }

  .cart-widget-empty__head,
  .cart-widget-filled__head,
  .cart-widget-filled__bulk,
  .cart-widget-filled__scroll {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cart-widget-filled__scroll {
    gap: 20px;
  }

  .cart-widget-empty__title,
  .cart-widget-filled__title {
    font-size: 24px;
  }

  .cart-widget__item,
  .cart-widget__item--voucher {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cart-widget__item-tools {
    flex-direction: row;
    justify-content: flex-start;
  }

  .cart-widget__thumb {
    width: 100%;
    height: 180px;
  }

  .cart-widget__side {
    align-items: stretch;
  }

  .cart-widget__qty {
    width: 100%;
    justify-content: space-between;
  }

  .cart-widget__qty-input {
    flex: 1;
  }

  .cart-widget__price-block {
    align-items: flex-start;
  }

  .cart-widget-filled__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-widget-filled__checkout-box {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .cart-widget-filled__continue,
  .cart-widget-filled__checkout {
    width: 100%;
  }

  .cart-widget-empty__text {
    font-size: 18px;
  }
}

/* One page checkout */
.opc__container {
    max-width: 1408px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
}
#onepcheckout {
  --opc-accent: #f96332;
  --opc-accent-hover: #e95625;
  --opc-accent-soft: #fff4ee;
  --opc-text: #221f1f;
  --opc-muted: #766f6e;
  --opc-border: #dfd6cf;
  --opc-border-strong: #d0c4bb;
  --opc-surface: #ffffff;
  --opc-shadow: 0 12px 32px rgba(34, 31, 31, 0.06);
  color: var(--opc-text);
  font-family: "Fact", sans-serif;
  padding-bottom: 8px;
}

#onepcheckout .opc-h1 {
  color: var(--opc-text);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  padding: 16px 0;
}

#onepcheckout .breadcrumbs-box {
  margin-bottom: 10px;
}

#onepcheckout .breadcrumb {
  margin-bottom: 0;
  padding: 0;
  background: none;
}

#onepcheckout .breadcrumb > li,
#onepcheckout .breadcrumb > li > a {
  color: #8f8581;
  font-size: 12px;
  font-weight: 500;
}

#onepcheckout .breadcrumb > li > a:hover {
  color: var(--opc-accent);
}

#onepcheckout .error:empty {
  display: none;
}

#onepcheckout .error {
  margin-bottom: 12px;
}

#onepcheckout .checkout-col-center {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: nowrap;
}

#onepcheckout .checkout-col-left {
  flex: 1 1 auto;
  min-width: 0;
  width: auto !important;
}

#onepcheckout .checkout-col-fix-right {
  flex: 0 0 332px;
  width: 332px !important;
  align-self: flex-start;
  position: sticky;
  top: 18px;
  border-radius: 8px;
}

#onepcheckout .checkout-col-top,
#onepcheckout .checkout-col-bottom {
  margin-left: 0;
  margin-right: 0;
}

#onepcheckout .checkout-col-top > [class*="opc_block_"],
#onepcheckout .checkout-col-left > [class*="opc_block_"],
#onepcheckout .checkout-col-bottom > [class*="opc_block_"] {
  margin-bottom: 12px !important;
  padding-left: 0;
  padding-right: 0;
}

#onepcheckout .checkout-col-left [class*="opc_block_"] {
  background: var(--opc-surface);
  border: 1px solid rgba(223, 214, 207, 0.9);
  border-radius: 14px;
  box-shadow: var(--opc-shadow);
  padding: 16px 18px;
}

#onepcheckout .checkout-col-left [class*="opc_block_"] + [class*="opc_block_"] {
  margin-top: 12px;
}

#onepcheckout .checkout-col-left .two-column {
  background: none;
  border: 0;
  box-shadow: none;
  padding: 0;
}

#onepcheckout .checkout-col-left .two-column > .row-flex {
  display: flex;
  gap: 12px;
}

#onepcheckout .checkout-col-left .two-column .opc-left-column,
#onepcheckout .checkout-col-left .two-column .opc-right-column {
  min-width: 0;
  gap: 12px;
}

#onepcheckout .checkout-col-left .two-column .opc-left-column > div,
#onepcheckout .checkout-col-left .two-column .opc-right-column > div {
  margin-bottom: 0 !important;
}

#onepcheckout .checkout-col-fix-right .totals-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 16px;
  background: var(--opc-surface);
  border: 1px solid rgba(223, 214, 207, 0.9);
  border-radius: 8px;
  box-shadow: var(--opc-shadow);
}

#onepcheckout .checkout-heading,
#onepcheckout .title-text-next .opc-cart-title {
  display: block;
  margin-bottom: 14px;
  color: var(--opc-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

#onepcheckout .title-text-next {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

#onepcheckout .opc-cart-weight {
  color: var(--opc-muted);
  font-size: 13px;
  font-weight: 500;
}

#onepcheckout .form-group {
  margin-bottom: 12px;
}

#onepcheckout .form-control,
#onepcheckout select.form-control,
#onepcheckout textarea.form-control,
#onepcheckout input.form-control,
#onepcheckout input[type="text"],
#onepcheckout input[type="email"],
#onepcheckout input[type="tel"],
#onepcheckout input[type="password"],
#onepcheckout input[type="number"],
#onepcheckout select,
#onepcheckout textarea {
  height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--opc-border-strong);
  border-radius: 8px;
  background: #ffffff;
  color: var(--opc-text);
  font-size: 14px;
  box-shadow: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

#onepcheckout textarea.form-control,
#onepcheckout textarea {
  min-height: 120px;
  height: auto;
  resize: vertical;
}

#onepcheckout .form-control::placeholder,
#onepcheckout input::placeholder,
#onepcheckout textarea::placeholder {
  color: #9b948f;
}

#onepcheckout .form-control:hover,
#onepcheckout select:hover,
#onepcheckout textarea:hover,
#onepcheckout input:hover {
  border-color: var(--opc-accent);
}

#onepcheckout .form-control:focus,
#onepcheckout select:focus,
#onepcheckout textarea:focus,
#onepcheckout input:focus {
  border-color: var(--opc-accent);
  box-shadow: 0 0 0 3px rgba(249, 99, 50, 0.12);
  outline: none;
}

#onepcheckout .input-group {
  width: 100%;
}

#onepcheckout .input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#onepcheckout .input-group-btn .btn {
  height: 42px;
  min-width: 42px;
  border: 1px solid var(--opc-border-strong);
  border-left: 0;
  background: #f8f7f6;
  color: var(--opc-text);
}

#onepcheckout .input-group-btn .btn:hover {
  background: #f1ece8;
}

#onepcheckout .btn,
#onepcheckout .opc-btn {
  height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 40px;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

#onepcheckout .btn-primary,
#onepcheckout .opc-btn-primary,
#onepcheckout #button-register {
  background: var(--opc-accent);
  border-color: var(--opc-accent);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(249, 99, 50, 0.16);
}

#onepcheckout .btn-primary:hover,
#onepcheckout .opc-btn-primary:hover,
#onepcheckout #button-register:hover {
  background: var(--opc-accent-hover);
  border-color: var(--opc-accent-hover);
}

#onepcheckout .btn-default {
  background: #faf6f2;
  border-color: #eadfd6;
  color: var(--opc-text);
}

#onepcheckout .btn-default:hover {
  background: #f3ebe5;
  border-color: #e0d1c7;
}

#onepcheckout .opc-alert-danger,
#onepcheckout .alert-warning,
#onepcheckout .alert-danger {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(249, 99, 50, 0.18);
  background: #fff7f3;
  color: var(--opc-text);
  box-shadow: none;
}

#onepcheckout .opc-alert-danger svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

#onepcheckout .opc-alert-danger .close {
  margin-left: auto;
  opacity: 0.7;
}

#onepcheckout .opc-alert-danger .close:hover {
  opacity: 1;
}

#onepcheckout .chm-radio,
#onepcheckout .chm-checkbox {
  margin: 0;
}

#onepcheckout .radio.chm-radio > label,
#onepcheckout .checkbox .chm-checkbox,
#onepcheckout .group-checkbox .chm-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px !important;
  margin-bottom: 0;
  border: 1px solid var(--opc-border);
  border-radius: 12px;
  background: #ffffff;
  color: var(--opc-text);
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

#onepcheckout .radio.chm-radio > label:hover,
#onepcheckout .checkbox .chm-checkbox:hover,
#onepcheckout .group-checkbox .chm-checkbox:hover {
  border-color: rgba(249, 99, 50, 0.45);
  background: #fffaf7;
  box-shadow: 0 10px 20px rgba(34, 31, 31, 0.04);
}

#onepcheckout .radio.chm-radio:has(input:checked) > label,
#onepcheckout .checkbox:has(input:checked) .chm-checkbox,
#onepcheckout .group-checkbox:has(input:checked) .chm-checkbox {
  border-color: rgba(249, 99, 50, 0.6);
  background: var(--opc-accent-soft);
  box-shadow: 0 12px 24px rgba(249, 99, 50, 0.08);
}

#onepcheckout .radio.chm-radio input[type="radio"],
#onepcheckout .checkbox input[type="checkbox"],
#onepcheckout .group-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  border: 2px solid #c9beb4;
  background: #ffffff;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

#onepcheckout .radio.chm-radio input[type="radio"] {
  border-radius: 50%;
}

#onepcheckout .checkbox input[type="checkbox"] {
  border-radius: 6px;
}

#onepcheckout .radio.chm-radio input[type="radio"]:checked {
  border-color: var(--opc-accent);
  background-color: #ffffff;
  background-image: radial-gradient(circle, var(--opc-accent) 0 5px, transparent 5.5px);
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: inset 0 0 0 2px #ffffff, 0 0 0 1px rgba(249, 99, 50, 0.25);
}

#onepcheckout .checkbox input[type="checkbox"]:checked,
#onepcheckout .group-checkbox input[type="checkbox"]:checked {
  border-color: var(--opc-accent);
  background: var(--opc-accent);
  box-shadow: inset 0 0 0 2px #ffffff;
}

#onepcheckout .radio.chm-radio input[type="radio"]:focus,
#onepcheckout .checkbox input[type="checkbox"]:focus,
#onepcheckout .group-checkbox input[type="checkbox"]:focus {
  box-shadow: 0 0 0 3px rgba(249, 99, 50, 0.12);
}

#onepcheckout .radio.chm-radio img {
  margin-top: 1px;
  flex: 0 0 auto;
}

#onepcheckout .shipping-method,
#onepcheckout .payment-method {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#onepcheckout .shipping_method_title {
  margin: 8px 0 2px;
  color: var(--opc-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

#onepcheckout .text-info-pm {
  margin-top: 10px;
  color: var(--opc-muted);
  font-size: 13px;
  line-height: 1.5;
}

#onepcheckout .custom-field {
  margin-bottom: 12px;
}

#onepcheckout .custom-field .opc-label,
#onepcheckout .control-label,
#onepcheckout .checkout-agree {
  color: var(--opc-text);
  font-size: 13px;
  font-weight: 500;
}

#onepcheckout .checkout-agree {
  margin-top: 4px;
}

#onepcheckout .cart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#onepcheckout .cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(223, 214, 207, 0.8);
}

#onepcheckout .cart-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

#onepcheckout .cart-item-left {
  flex: 0 0 68px;
}

#onepcheckout .cart-item-left img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  border-radius: 12px;
  background: #fffaf7;
  border: 1px solid #efe5de;
}

#onepcheckout .cart-item-center {
  flex: 1 1 auto;
  min-width: 0;
  gap: 4px;
}

#onepcheckout .cart-item-prod-name {
  color: var(--opc-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

#onepcheckout .cart-item-prod-name a:hover {
  color: var(--opc-accent);
}

#onepcheckout .product-model,
#onepcheckout .cart-prod-info-reward,
#onepcheckout .cart-item-option-name,
#onepcheckout .cart-item-option-value,
#onepcheckout .text-cart-item-price,
#onepcheckout .text-cart-item-total {
  color: var(--opc-muted);
  font-size: 12px;
  line-height: 1.4;
}

#onepcheckout .cart-item-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}

#onepcheckout .cart-item-option {
  display: flex;
  gap: 4px;
}

#onepcheckout .cart-item-price-quantity {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

#onepcheckout .ch-cart-quantity {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--opc-border);
  border-radius: 8px;
}

#onepcheckout .ch-cart-quantity .form-control {
  width: 72px;
  text-align: center;
  border: 0;
  padding: 0;
}

#onepcheckout .btn-quantity-minus,
#onepcheckout .btn-quantity-plus,
#onepcheckout .btn-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 8px;
  /*border: 1px solid var(--opc-border);*/
  background: #ffffff;
  color: var(--opc-text);
}

#onepcheckout .btn-quantity-minus:hover,
#onepcheckout .btn-quantity-plus:hover {
  border-color: var(--opc-accent);
  background: var(--opc-accent-soft);
}

#onepcheckout .btn-remove {
  width: 42px;
  height: 42px;
  border-color: rgba(249, 99, 50, 0.22);
  color: var(--opc-accent);
}

#onepcheckout .btn-remove:hover {
  background: rgba(249, 99, 50, 0.08);
  border-color: rgba(249, 99, 50, 0.42);
}

#onepcheckout .cart-totals {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

#onepcheckout .cart-item-price,
#onepcheckout .cart-item-total {
  color: var(--opc-text);
  font-size: 13px;
  font-weight: 700;
}

#onepcheckout .totals-inner .checkout-cart-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#onepcheckout .text-checkout-modules {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--opc-accent);
  font-size: 14px;
  font-weight: 600;
}

#onepcheckout .text-checkout-modules:hover {
  color: var(--opc-accent-hover);
}

#onepcheckout .icon-arrow-down {
  width: 16px;
  height: 16px;
}

#onepcheckout .cart-coupon,
#onepcheckout .cart-voucher,
#onepcheckout .cart-reward {
  padding-top: 4px;
}

#onepcheckout .cart-coupon .btn,
#onepcheckout .cart-voucher .btn,
#onepcheckout .cart-reward .btn {
  min-width: 52px;
  padding: 0 12px;
}

#onepcheckout .checkout-totals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#onepcheckout .free-shipping-inner {
  padding: 12px;
  border-radius: 12px;
  background: #faf6f2;
  border: 1px solid #eadfd6;
}

#onepcheckout .free-ship-progress-bar {
  height: 8px;
  border-radius: 999px;
  background: #eee4dc;
  overflow: hidden;
}

#onepcheckout .free-ship-bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff8a55, var(--opc-accent));
}

#onepcheckout .free-ship-info {
  margin-top: 8px;
  color: var(--opc-muted);
  font-size: 13px;
  line-height: 1.4;
}

#onepcheckout .free-ship-info.active-free-ship {
  color: #2f7d4a;
  font-weight: 600;
}

#onepcheckout .table_total {
  margin-bottom: 0;
}

#onepcheckout .table_total tr td {
  border-top: 0;
  padding: 7px 0;
}

#onepcheckout .table_total .total-title,
#onepcheckout .table_total .total-text {
  color: var(--opc-text);
  font-size: 14px;
}

#onepcheckout .table_total .total-title {
  font-weight: 500;
}

#onepcheckout .table_total .total-text {
  font-weight: 700;
  text-align: right;
}

#onepcheckout .table_total .total-last {
  font-size: 16px;
  font-weight: 700;
}

#onepcheckout .confirm-block {
  margin-top: 4px;
}

#onepcheckout .confirm-block .opc-btn-primary,
#onepcheckout .confirm-block #button-register {
  width: 100%;
  height: 48px;
  font-size: 15px;
  font-weight: 700;
}

#onepcheckout .checkout-col-fix-right .form-group {
  margin-bottom: 12px;
}

#onepcheckout .checkout-col-fix-right .panel-collapse {
  padding-top: 4px;
}

#onepcheckout .checkout-col-fix-right .btn-primary {
  box-shadow: none;
}

#onepcheckout .checkout-col-fix-right .total-last,
#onepcheckout .checkout-col-fix-right .total-text {
  font-size: 16px;
}

#onepcheckout #opc-payment {
  display: none !important;
}

/* checkout/success */
.checkout-success {
  padding: 24px 0 80px;
  background:
    radial-gradient(circle at top left, rgba(249, 99, 50, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 140, 0, 0.08), transparent 26%),
    #f5f5f5;
  font-family: "Fact", sans-serif;
}

.checkout-success .cat__container {
  display: block;
}

.checkout-success__card {
  max-width: 920px;
  margin: 18px auto 0;
  padding: 40px 48px;
  border: 1px solid rgba(249, 99, 50, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 248, 244, 0.96) 100%);
  box-shadow: 0 24px 60px rgba(34, 31, 31, 0.08);
}

.checkout-success__eyebrow {
  margin-bottom: 8px;
  color: #f96332;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-success__title {
  margin-bottom: 18px;
  color: #221f1f;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.1;
}

.checkout-success__message {
  max-width: 720px;
  color: #555770;
  font-size: 16px;
  line-height: 1.7;
}

.checkout-success__message p + p {
  margin-top: 12px;
}

.checkout-success__message a {
  color: #f96332;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-success__message a:hover,
.checkout-success__message a:focus,
.checkout-success__message a:focus-visible {
  color: #e54f1f;
}

.checkout-success__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.checkout-success__button.btn.btn-primary {
  min-width: 220px;
  padding: 0 28px;
  border: 1px solid #f96332;
  border-radius: 12px;
  background: #f96332;
  box-shadow: 0 10px 18px rgba(249, 99, 50, 0.18);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 46px;
  text-align: center;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease;
}

.checkout-success__button.btn.btn-primary:hover,
.checkout-success__button.btn.btn-primary:focus,
.checkout-success__button.btn.btn-primary:focus-visible,
.checkout-success__button.btn.btn-primary:active,
.checkout-success__button.btn.btn-primary:active:focus {
  background: #fc9e75;
  border-color: #fc9e75;
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(249, 99, 50, 0.24);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .checkout-success__card {
    padding: 30px 28px;
  }

  .checkout-success__title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .checkout-success {
    padding: 18px 0 64px;
  }

  .checkout-success__card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .checkout-success__title {
    font-size: 26px;
  }

  .checkout-success__actions {
    justify-content: stretch;
  }

  .checkout-success__button.btn.btn-primary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 1199px) {
  #onepcheckout .checkout-col-center {
    flex-wrap: wrap;
  }

  #onepcheckout .checkout-col-fix-right {
    width: 100% !important;
    flex: 1 1 100%;
    position: static;
  }
}

@media (max-width: 991px) {
  #onepcheckout .opc-h1 {
    font-size: 26px;
  }

  #onepcheckout .checkout-col-left [class*="opc_block_"],
  #onepcheckout .checkout-col-fix-right .totals-inner {
    padding: 16px;
  }

  #onepcheckout .checkout-col-left .two-column > .row-flex {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  #onepcheckout .checkout-col-center {
    gap: 10px;
  }

  #onepcheckout .checkout-col-left [class*="opc_block_"],
  #onepcheckout .checkout-col-fix-right .totals-inner {
    border-radius: 12px;
  }

  #onepcheckout .checkout-heading,
  #onepcheckout .title-text-next .opc-cart-title {
    font-size: 16px;
  }

  #onepcheckout .cart-item {
    flex-direction: column;
  }

  #onepcheckout .cart-item-price-quantity {
    width: 100%;
    align-items: stretch;
  }

  #onepcheckout .cart-totals {
    align-items: flex-start;
    text-align: left;
  }

  #onepcheckout .ch-cart-quantity {
    width: 100%;
  }

  #onepcheckout .ch-cart-quantity .form-control {
    flex: 1 1 auto;
    width: auto;
  }

  #onepcheckout .confirm-block .opc-btn-primary,
  #onepcheckout .confirm-block #button-register {
    height: 46px;
  }
}

@media (max-width: 1199px) {
  .cat__breadcrumb,
  .brand__breadcrumb,
  .info__breadcrumb,
  .pi .cat__breadcrumb {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-wrap: nowrap;
    justify-content: flex-start;
    white-space: nowrap;
    padding-bottom: 2px;
  }

  .cat__breadcrumb::-webkit-scrollbar,
  .brand__breadcrumb::-webkit-scrollbar,
  .info__breadcrumb::-webkit-scrollbar,
  .pi .cat__breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .cat__breadcrumb-link,
  .cat__breadcrumb-current,
  .brand__breadcrumb-link,
  .brand__breadcrumb-current,
  .info__breadcrumb-link,
  .info__breadcrumb-current,
  .pi .cat__breadcrumb-link,
  .pi .cat__breadcrumb-current {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .cat__breadcrumb-sep,
  .brand__breadcrumb-sep,
  .info__breadcrumb-sep,
  .pi .cat__breadcrumb-sep {
    flex-shrink: 0;
  }

  .pi .cat__top {
    gap: 8px;
  }
}
/*# sourceMappingURL=styles.css.map */
