@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Roboto:wght@400;500&display=swap");
/*
 * Реестр стилей (вручную): .cursor/frontend/css.md и при макетах — .cursor/frontend/index.md
 */
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

::-moz-selection {
  background-color: #2F6AFF;
  color: #fff;
}

::selection {
  background-color: #2F6AFF;
  color: #fff;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #000000;
  background-color: #ffffff;
}

ul {
  margin: 0;
}
ul li {
  margin: 0;
}

h1 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  color: #000000;
}

h2 {
  font-size: 1rem;
  line-height: 148%;
  color: #000000;
}

h5 {
  font-size: 0.875rem;
  line-height: 126%;
  letter-spacing: -0.02em;
  color: #7B7B7B;
}

p {
  margin: 0;
}

.wrapper {
  overflow: hidden;
}

.hide {
  display: none;
  -webkit-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
  opacity: 0;
}

.mobile-hide {
  display: block;
}
.mobile-show {
  display: none;
}

.link-nondecor a:hover {
  text-decoration: none;
}

/* ---------------------------------------- buttons ---------------------------------------- */
.btn {
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.btn-fill {
  font-size: 1rem;
  line-height: 112%;
  color: #ffffff;
  border-radius: 33px;
  border: 0;
  padding: 11px 20px 11px 20px;
  width: 100%;
  background-color: #4399FF;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.btn-fill:hover {
  color: #ffffff;
  background-color: #2656FF;
}
.btn-outline {
  font-size: 1rem;
  line-height: 112%;
  color: #4399FF;
  border-radius: 33px;
  border: 0;
  padding: 11px 20px 11px 20px;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1px #4399ff inset;
          box-shadow: 0 0 0 1px #4399ff inset;
}
.btn-outline:hover {
  font-weight: 500;
  color: #2656FF;
  background-color: #E8EDFF;
}
.btn-dropdown {
  color: #000000;
  border-radius: 0;
  border: 0;
  padding: 0;
  width: 20px;
  height: 24px;
  background-color: transparent;
}
.btn-category {
  font-size: 1rem;
  font-weight: 400;
  line-height: 125%;
  color: #7B7B7B;
  border: 0;
  border-radius: 200px 0 0 200px;
  padding: 0;
  width: 220px;
  height: 44px;
  background-color: #F4F5F9;
  position: relative;
}
.btn-category:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 0.5em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
}
.btn-profile {
  font-size: 1rem;
  font-weight: 400;
  line-height: 125%;
  color: #CDCDCD;
  border: 0;
  padding: 0 18px 0 0;
  background: transparent;
  position: relative;
}
.btn-profile:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 0.5em solid;
  border-right: 0.4em solid transparent;
  border-bottom: 0;
  border-left: 0.4em solid transparent;
}
.btn-cart-page {
  font-size: 0.875rem;
  line-height: 24px;
  color: #085CFF;
  border-radius: 0 33px 33px 0;
  border: 1px solid #E6EDF5;
  padding: 0 52px 0 44px;
  height: 40px;
  background-color: #F1F2F8;
  -webkit-box-shadow: 0 2px 4px rgba(125, 206, 241, 0.16);
          box-shadow: 0 2px 4px rgba(125, 206, 241, 0.16);
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.btn-cart-page:hover {
  color: #ffffff;
  background-color: #2656FF;
}
.btn-checkout {
  font-size: 0.875rem;
  line-height: 24px;
  color: #ffffff;
  border-radius: 33px;
  border: 0;
  padding: 11px 40px 11px 40px;
  background-color: #4E6AFF;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
  position: relative;
}
.btn-checkout:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 20px;
  background-color: #fff;
}
.btn-checkout:hover {
  color: #ffffff;
  background-color: #2656FF;
  text-decoration: none;
}
.btn-checkout span:not(:last-of-type) {
  margin-right: 54px;
}


/* ---------------------------------------- form control ---------------------------------------- */
.input-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  position: relative;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.input-control:focus {
  border: double 2px transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)), -webkit-gradient(linear, left top, right top, from(#E781C2), color-stop(#FDA8B0), to(#FFC5B5));
  background-image: -o-linear-gradient(white, white), -o-linear-gradient(left, #E781C2, #FDA8B0, #FFC5B5);
  background-image: linear-gradient(white, white), linear-gradient(to right, #E781C2, #FDA8B0, #FFC5B5);
  outline: none;
}
.input-control::-webkit-input-placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
  opacity: 1;
}
.input-control::-moz-placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
  opacity: 1;
}
.input-control:-ms-input-placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
  opacity: 1;
}
.input-control::-ms-input-placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
  opacity: 1;
}
.input-control::placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
  opacity: 1;
}

.textarea-control {
  display: block;
  width: 100%;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  position: relative;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  resize: none;
}
.textarea-control:focus {
  border: double 2px transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)), -webkit-gradient(linear, left top, right top, from(#E781C2), color-stop(#FDA8B0), to(#FFC5B5));
  background-image: -o-linear-gradient(white, white), -o-linear-gradient(left, #E781C2, #FDA8B0, #FFC5B5);
  background-image: linear-gradient(white, white), linear-gradient(to right, #E781C2, #FDA8B0, #FFC5B5);
  outline: none;
}
.textarea-control::-webkit-input-placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
}
.textarea-control::-moz-placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
}
.textarea-control:-ms-input-placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
}
.textarea-control::-ms-input-placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
}
.textarea-control::placeholder {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #7B7B7B;
}

.forgot-password {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  color: #4399FF;
  text-align: center;
  margin-bottom: 28px;
}

.agreement-text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 18px;
  color: #7B7B7B;
  text-align: center;
  letter-spacing: -0.01em;
  margin-top: 28px;
}
.agreement-text a {
  color: #000;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px #D9D9D9 solid;
  border-radius: 8px;
  outline: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 8px 22px 8px 18px;
  background: url("../img/select-arrow.svg") no-repeat right 0px center/22px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #7B7B7B;
  cursor: pointer;
}

.checkout__form .select2-container--default .select2-selection--single {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px #D9D9D9 solid;
  border-radius: 8px;
  outline: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 8px 22px 8px 22px;
  background-color: unset;
  border: 1px #D9D9D9 solid;
  border-radius: 8px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #7B7B7B;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.checkout__form .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: -3px;
  right: -1px;
  width: 22px;
  height: 41px;
  background: url("../img/select-arrow.svg") no-repeat right 0px center / 22px;
}
.checkout__form .select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.checkout__form .select2-container--default .select2-selection--single .select2-selection__rendered {
  display: unset;
  color: unset;
  line-height: unset;
  padding-left: unset;
  padding-right: unset;
  overflow: unset;
  text-overflow: unset;
  white-space: unset;
}
.checkout__form .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: unset;
}

.form-control {
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 23px;
  color: #7B7B7B;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 8px;
}


/* ---------------------------------------- modals ---------------------------------------- */
.modalPost {
  position: relative;
}
.modalPost-dialog {
  max-width: 1256px;
  margin: 2rem auto;
}
.modalPost-window {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
          box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
}
.modalPost-window.woocommerce-Price-amount {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #4399FF;
  margin: 30px 0 0 0;
}
.modalPost-window del .woocommerce-Price-amount {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  margin-right: 4px;
}
.modalPost-window del .woocommerce-Price-amount:before {
  top: 7px;
}
.modalPost-close {
  background-color: #F1F7FF;
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 1.25rem;
  font-weight: 300;
  color: #000000;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
  border: 1px #ffffff solid;
  border-radius: 100%;
  width: 28px;
  height: 28px;
  z-index: 5;
}
.modalPost-close span {
  display: block;
  line-height: 80%;
  width: 20px;
  height: 16px;
  margin: auto;
}
.modalPost-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.modalPost-body--left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60%;
          flex: 0 0 60%;
  min-width: 0;
  overflow: hidden;
  max-height: 704px;
  background-color: #F1F7FF;
}
.modalPost-body--right {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  max-height: 704px;
  padding-right: 40px;
  padding-left: 50px;
  overflow: scroll;
  overflow-x: hidden;
  scrollbar-color: #e8f1fc #fbfdff;
  scrollbar-width: thin;
}
.modalPost-body--right::-webkit-scrollbar {
  width: 8px;
}
.modalPost-body--right::-webkit-scrollbar-track {
  background-color: #fbfdff;
}
.modalPost-body--right::-webkit-scrollbar-thumb {
  background-color: #e8f1fc;
  background-clip: content-box;
}
.modalPost-body--right .content-text {
  padding-top: 22px;
}
.modalPost-body--right .content-text h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 134%;
  margin-bottom: 16px;
}
.modalPost-body--right .content-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #6D6A6A;
}
.modalPost-body--right .content-text p:not(:last-of-type) {
  margin-bottom: 16px;
}
.modalPost-body--right .content-text p:last-of-type {
  margin-bottom: 28px;
}
.modalPost-body--right .content-text ul {
  list-style: none;
}
.modalPost-body--right .content-text ul:not(:last-child) {
  margin-bottom: 28px;
}
.modalPost-body--right .content-text li {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 132%;
  letter-spacing: -0.01em;
  color: #6D6A6A;
  padding-left: 14px;
}
.modalPost-body--right .content-text li:not(:last-child) {
  margin-bottom: 6px;
}
.modalPost-body--right .content-text li:before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 2px;
  height: 2px;
  background-color: #6D6A6A;
  border-radius: 100%;
}
.modalPost-body--right .content-price {
  font-size: 0.813rem;
  line-height: 130%;
  letter-spacing: -0.02em;
  color: #6D6A6A;
  margin-bottom: 38px;
  position: relative;
}
.modalPost-body--right .content-price:before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 4px;
  width: calc(100% - 80px);
  height: 1px;
  background-color: #ECECEC;
}
.modalPost-body--right .content-price strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 132%;
  color: #4399FF;
  margin-bottom: 6px;
}
.modalPost-body--right .content-price ul {
  position: relative;
}
.modalPost-body--right .content-price ul li {
  display: block;
  position: relative;
}
.modalPost-body--right .content-price ul li:before {
  content: "";
  position: absolute;
  bottom: 6px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ECECEC;
}
.modalPost-body--right .content-price ul li .toc-page {
  display: block;
  float: right;
  font-family: "Montserrat", sans-serif;
  color: #4399FF;
  background-color: #fff;
  padding-left: 12px;
  position: relative;
}
.modalPost-body--right .content-price .chapter {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 132%;
  position: relative;
  padding-right: 12px;
  background-color: #fff;
}
.modalPost-body--right .content-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 40px;
}
.modalPost-body--right .content-buttons button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 6px);
          flex: 0 0 calc(50% - 6px);
}
.modalPost-body--right .content-buttons button:not(:last-of-type), .modalPost-body--right .content-buttons .ajax_add_to_cart {
  margin-right: 12px;
}
.modalPost-body--right .content-buttons .intystore-sm-store-support-btn {
  margin-top: 0;
}
.modalPost-body--right .content-buttons .added_to_cart.wc-forward {
  display: none;
}
.modalPost-body--right .content-action {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, auto) minmax(0, 1fr);
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
  padding-bottom: 22px;
}
.modalPost-body--right .content-action--icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-grid-column: 1;
      grid-column: 1;
  -ms-grid-row: 1;
      grid-row: 1;
}
.modalPost-body--right .content-action--icons span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #B5BED1;
  cursor: pointer;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.modalPost-body--right .content-action--icons span:hover {
  color: #F86BB7;
}
.modalPost-body--right .content-action--icons span:hover path {
  stroke: #F86BB7;
}
.modalPost-body--right .content-action--icons svg {
  margin-right: 8px;
}
.modalPost-body--right .content-action--icons svg path {
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.modalPost-body--right .content-action > a {
  -ms-grid-column: 2;
      grid-column: 2;
  -ms-grid-row: 1;
      grid-row: 1;
  justify-self: end;
  -ms-grid-row-align: center;
  align-self: center;
  margin: 0;
  text-align: right;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: underline;
}
@media (max-width: 575.98px) {
  .modalPost-body--right .content-action {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .modalPost-body--right .content-action > a {
    -ms-grid-column: 1;
        grid-column: 1;
    -ms-grid-row: 2;
        grid-row: 2;
    justify-self: start;
    text-align: left;
  }
}
.modalPost-image {
  position: relative;
  height: 704px;
  border: 0;
  overflow: hidden;
  background-color: #F1F7FF;
}
.modalPost-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modalPost-slider .swiper-slide {
  position: relative;
  height: 704px;
  border: 0;
  overflow: hidden;
  background-color: #F1F7FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modalPost-slider .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modalPost-slider .swiper-navigation--prev, .modalPost-slider .swiper-navigation--next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50);
      -ms-transform: translateY(-50);
          transform: translateY(-50);
  outline: none;
  width: 30px;
  height: 30px;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
  z-index: 2;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.modalPost-slider .swiper-navigation--prev:hover:before, .modalPost-slider .swiper-navigation--next:hover:before {
  -webkit-filter: invert(1);
          filter: invert(1);
}
.modalPost-slider .swiper-navigation--prev {
  left: 18px;
}
.modalPost-slider .swiper-navigation--prev:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: url("../img/slider-arrow-prev.svg") center/cover no-repeat;
}
.modalPost-slider .swiper-navigation--next {
  right: 18px;
}
.modalPost-slider .swiper-navigation--next:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  background: url("../img/slider-arrow-next.svg") center/cover no-repeat;
}
.modalPost-head {
  padding-top: 16px;
  padding-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid #ECECEC;
}
.modalPost-head--image {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 100%;
  overflow: hidden;
  background-color: #F1F7FF;
  margin-right: 12px;
}
.modalPost-head--image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modalPost-head--autor {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 134%;
}
.modalPost-head--autor a {
  color: inherit;
}
.modalPost-head--location {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 148%;
  color: #7B7B7B;
  display: flex;
  flex-direction: row;
}
.modalPost-head--location .street_1 {
  order: 2;
}
.modalPost-head--location .city {
  position: relative;
  order: 1;
}
.modalPost-bottom {
  padding-top: 24px;
  margin-bottom: 20px;
  border-top: 1px solid #ECECEC;
}
.modalPost-bottom .bottom-comments .comment-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.modalPost-bottom .bottom-comments .comment-item:last-of-type {
  margin-bottom: 35px;
}
.modalPost-bottom .bottom-comments .comment-item--top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin-bottom: 8px;
}
.modalPost-bottom .bottom-comments .comment-item--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modalPost-bottom .bottom-comments .comment-item--avatar {
  position: relative;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 100%;
  overflow: hidden;
  background-color: #F1F7FF;
  margin-right: 0;
}
.modalPost-bottom .bottom-comments .comment-item--avatar img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modalPost-bottom .bottom-comments .comment-item--name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 112%;
  color: #4E6AFF;
  letter-spacing: -0.01em;
}
.modalPost-bottom .bottom-comments .comment-item--date {
  font-family: "Montserrat", sans-serif;
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 112%;
  color: #BCBCBC;
  letter-spacing: -0.01em;
}
.modalPost-bottom .bottom-comments .comment-item--text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 112%;
  color: #6D6A6A;
  letter-spacing: -0.01em;
  padding-left: 32px;
}
.modalPost-bottom .bottom-write {
  background-color: #F1F7FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0;
  position: relative;
}
.modalPost-bottom .bottom-write:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 100%;
  background-color: #F1F7FF;
}
.modalPost-bottom .bottom-write:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 100%;
  background-color: #F1F7FF;
}
.modalPost-bottom .bottom-write .must-log-in {
  background-color: #A660CA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  font-size: 14px;
  color: #fff;
  padding: 0;
  position: relative;
  z-index: 1;
  transition: .8s all;
  cursor: pointer;
}
.modalPost-bottom .bottom-write .must-log-in:hover, .modalPost-bottom .bottom-write .must-log-in:hover:before, .modalPost-bottom .bottom-write .must-log-in:hover:after {
  background-color: #9141CD;
}
.modalPost-bottom .bottom-write .must-log-in:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 100%;
  background-color: #A660CA;
  transition: .8s all;
}
.modalPost-bottom .bottom-write .must-log-in:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 100%;
  background-color: #A660CA;
  transition: .8s all;
}
.modalPost-bottom .bottom-write .must-log-in a {
  font-size: 14px;
  color: #fff;
}
.modalPost-bottom .bottom-write .must-log-in a:hover {
  text-decoration: none;
}

.must-log-in .loader {
  position: relative;
  width: 14px;
  height: 14px;
  margin-right: 10px;
}
.must-log-in .loader:after {
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  content: " ";
  display: inline-block;
  background: center center no-repeat;
  background-size: cover;
  border-radius: 50%;
  border: .2em solid;
  -webkit-background-clip: padding-box;
  border-color: currentColor currentColor currentColor transparent;

  -webkit-transition: all .3s;
  transition: all .3s;
  transition-timing-function: ease-in;

  -webkit-animation: ld-cycle 1s infinite linear;
  animation: ld-cycle 1s infinite linear;
}
.modalPost-bottom .bottom-write .form-control {
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 125%;
  color: #7B7B7B;
  letter-spacing: -0.02em;
  padding: 12px 50px 12px 0px;
}
.modalPost-bottom .bottom-write .submit {
  position: absolute;
  bottom: 6px;
  right: 0;
  width: 30px;
  height: 30px;
  background: url('../img/icons/icon_send.svg') center / cover no-repeat;
  border: 0;
  text-indent: -9999px;
}
/*.comment-form {
  position: relative;
}*/

.modalLogin-dialog {
  max-width: 468px;
  margin: 2rem auto;
}
.modalLogin-dialog .mfp-close {
  display: none;
}
.modalLogin-header .mfp-close, .modalSupport-header .mfp-close {
  display: block;
}
.modalLogin-window {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  -webkit-box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
          box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
}
.modalLogin-window:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: -o-linear-gradient(359.33deg, #FBC7A7 9.81%, #A660CA 94.33%);
  background: linear-gradient(90.67deg, #FBC7A7 9.81%, #A660CA 94.33%);
}
.modalLogin-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 36px 0 26px 0;
}
.modalLogin-header img {
  max-width: 100%;
}
.modalLogin-header--title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 100%;
  color: #000000;
  margin-top: 28px;
}
.modalLogin-body {
  padding: 0 88px 48px 88px;
}
.modalLogin-body .input-control {
  margin-bottom: 12px;
}

.modalSupport-window {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  -webkit-box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
          box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
}
.modalSupport-window:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 48px;
  background: -o-linear-gradient(359.33deg, #FBC7A7 9.81%, #A660CA 94.33%);
  background: linear-gradient(90.67deg, #FBC7A7 9.81%, #A660CA 94.33%);
}
.modalSupport-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 30px 24px 30px;
}
.modalSupport-header--avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 100%;
  overflow: hidden;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
  margin-right: 14px;
}
.modalSupport-header--avatar img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modalSupport-header--title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 114%;
  color: #4E6AFF;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.modalSupport-body {
  position: relative;
  padding: 0 30px 24px 30px;
  z-index: 1;
}
.modalSupport-body .input-control {
  margin-bottom: 14px;
}
.modalSupport-body .textarea-control {
  margin-bottom: 24px;
}


/* ---------------------------------------- navbar ---------------------------------------- */
.navbar {
  padding: 0;
  height: 100%;
  position: relative;
}
.navbar__floating {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 78px;
  background-color: #ffffff;
  display: block;
  padding: 18px 0 18px 0;
  z-index: 9;
  -webkit-box-shadow: 0 -5px 14px rgba(0, 0, 0, 0.24);
          box-shadow: 0 -5px 14px rgba(0, 0, 0, 0.24);
}
.navbar__menu {
  font-size: 0;
}
.navbar__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1061;
}
.navbar__link a {
  color: #ffffff;
}
.navbar__link a:first-child {
  margin-right: 28px;
}
.navbar__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 1.438rem;
  font-weight: 600;
  line-height: 104%;
  color: #000000;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
.navbar__logo a {
  color: #000000;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.navbar__logo a:hover {
  color: #4399FF;
  text-decoration: none;
}
.navbar__cat-and-search {
  display: flex;
  flex-direction: row;
  /*padding-left: 42px;*/
}
.navbar__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 44px;
  padding: 0 16px 0 40px;
  background-color: #F4F5F9;
  border-radius: 0 200px 200px 0;
  position: relative;
}
.navbar__search:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 14px);
  background-color: #D9D9D9;
}
.navbar__search svg {
  margin-right: 20px;
  width: 19px;
  color: #ccc;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.navbar__search .form-control {
  width: 100%;
  height: 100%;
  display: block;
  background-color: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 400;
  line-height: 125%;
  color: #7B7B7B;
  letter-spacing: -0.02em;
  padding: 12px 0.75rem;
}
.navbar__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.navbar__icons span {
  display: block;
  background-color: #F4F5F9;
  width: 38px;
  height: 38px;
  border-radius: 100%;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.navbar__icons span:not(:last-of-type) {
  margin-right: 30px;
}
.navbar__icons span:hover {
  background-color: #4399FF;
  cursor: pointer;
}
.navbar__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1rem;
  font-weight: 400;
  line-height: 125%;
  letter-spacing: -0.02em;
}
.navbar__profile-login {
  display: block;
  position: relative;
  color: #7B7B7B;
  margin-right: 28px;
  cursor: pointer;
}
.navbar__profile-login:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -34px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url("../img/icons/icon_profile.svg") center/cover no-repeat;
}
.navbar__profile-login:after {
  content: "/";
  position: absolute;
  top: 50%;
  right: -17px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.navbar__profile-registration {
  display: block;
  position: relative;
  color: #4399FF;
}
.navbar__profile-dropdown {
  position: relative;
  width: 100%;
  border: 0;
  border-radius: 10px;
  color: #212529;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  z-index: 8;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0 4px 74px rgba(143, 155, 185, 0.25);
          box-shadow: 0 4px 74px rgba(143, 155, 185, 0.25);
  margin-top: 8px !important;
  overflow: hidden;
}
.navbar__profile-dropdown.menu-user li:first-child {
  background: -webkit-gradient(linear, left top, right top, from(#AB66C9), to(#EFB9AD));
  background: -o-linear-gradient(left, #AB66C9 0%, #EFB9AD 100%);
  background: linear-gradient(90deg, #AB66C9 0%, #EFB9AD 100%);
  margin-bottom: 10px;
}
.navbar__profile-dropdown.menu-user li:first-child .navbar__profile-item {
  color: #fff;
  font-weight: 500;
  padding: 12px 20px;
}
.navbar__profile-dropdown.menu-user li:first-child .navbar__profile-item:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #AB66C9), color-stop(120%, #EFB9AD));
  background: -o-linear-gradient(left, #AB66C9 50%, #EFB9AD 120%);
  background: linear-gradient(90deg, #AB66C9 50%, #EFB9AD 120%);
}
.navbar__profile-dropdown.menu-user li:last-child .navbar__profile-item {
  padding: 14px 20px 14px 20px;
  margin-top: 6px;
}
.navbar__profile-dropdown.menu-user li:last-child .navbar__profile-item:before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0;
  width: calc(100% - 20px);
  height: 1px;
  background-color: #D9D9D9;
}
.navbar__profile-item {
  display: block;
  position: relative;
  width: 100%;
  padding: 12px 20px;
  clear: both;
  font-weight: 400;
  color: #7B7B7B;
  text-align: inherit;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  background-color: transparent;
  border: 0;
  -webkit-transition: 0.4s all;
  -o-transition: 0.4s all;
  transition: 0.4s all;
}
.navbar__profile-item:hover {
  background-color: #F1F7FF;
  text-decoration: none;
}
.navbar__cart {
  position: relative;
  margin-right: 34px;
}
.navbar__cart-count {
  position: absolute;
  top: 0;
  right: -12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  min-width: 23px;
  min-height: 23px;
  background-color: #9D6CCE;
  border-radius: 100%;
}
.xoo-wsc-basket {
  display: none !important;
}

.navbar-toggler {
  padding: 0;
  outline: none;
}

#nav-icon {
  display: none;
  width: 30px;
  height: 18px;
  margin: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  cursor: pointer;
  z-index: 1061;
  outline: none;
}
#nav-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 30px;
  background: #ffffff;
  border-radius: 10px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
#nav-icon span:nth-child(1) {
  top: 0;
}
#nav-icon span:nth-child(2), #nav-icon span:nth-child(3) {
  top: 8px;
}
#nav-icon span:nth-child(4) {
  top: 16px;
}
#nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.menu__category {
  position: relative;
  width: 100%;
  border: 0;
  color: #212529;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  z-index: 8;
  width: 220px;
  -webkit-box-shadow: 0px 34px 74px rgba(143, 155, 185, 0.25);
          box-shadow: 0px 34px 74px rgba(143, 155, 185, 0.25);
}
.menu__category-wrap {
  position: absolute;
  top: calc(100% + 8px);
  left: 348px;
  display: none;
  width: calc(100% - 348px);
}
.menu__category-item {
  display: block;
  width: 100%;
  padding: 8px 10px;
  clear: both;
  font-weight: 500;
  color: #A3A7AB;
  text-align: inherit;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  background-color: transparent;
  border: 0;
  overflow: hidden;
}
.menu__category-item:hover, .menu__category-item:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #4399FF;
}
.menu__category-submenu {
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  background-color: #fff;
  padding: 10px 16px;
  width: 862px;
  min-width: 600px;
  height: 100%;
  min-height: 420px;
  overflow-y: auto;
  z-index: 1003;
}
.menu__category-flex {
  -webkit-column-count: 3;
     -moz-column-count: 3;
          column-count: 3;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.menu__category-group {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin-bottom: 24px;
  width: 100%;
}
.menu__category-group h3 {
  font-size: 1rem;
  line-height: 24px;
  font-weight: 500;
  color: #4399FF;
  background-color: #F6F7FF;
  padding: 8px 11px;
  width: 100%;
}
.menu__category-group a {
  display: block;
  font-size: 0.875rem;
  color: #7B7B7B;
  padding: 4px 11px;
}

/* ---------------------------------------- profile ---------------------------------------- */
.profile {
  position: relative;
  padding-top: 126px;
}
.profile__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profile__card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 272px;
          flex: 0 0 272px;
}
.profile__card-header--block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.profile__card-header--avatar {
  position: relative;
  width: 105px;
  height: 105px;
  border-radius: 100%;
  /* Оригинальный border отключён, чтобы его место заняло градиентное кольцо статуса */
  border: 0;
  margin-bottom: 14px;
}
.profile__card-header--avatar img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.profile__card-header--title {
  text-align: center;
  margin-bottom: 36px;
}
.profile__card-header--title a {
  color: #000;
  text-decoration: none;
}
.profile__card-header--title h1 {
  margin-bottom: 4px;
}
.profile__card-header--title span {
  font-size: 0.875rem;
  line-height: 140%;
  color: #7B7B7B;
}
.profile__card-header--buttons {
  margin-bottom: 38px;
}
.profile__card-header--buttons button:not(:last-child) {
  margin-bottom: 10px;
}
.profile__card-header--info {
  margin-bottom: 30px;
}
.profile__card-header--info span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  line-height: 125%;
  color: #4399FF;
  letter-spacing: -0.02em;
  cursor: pointer;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
  padding-left: 4px;
}
.profile__card-header--info span:hover {
  color: #2656FF;
}
.profile__card-header--info span:hover circle, .profile__card-header--info span:hover path {
  stroke: #2656FF;
}
.profile__card-header--info span svg {
  margin-right: 6px;
}
.profile__card-header--info span svg circle, .profile__card-header--info span svg path {
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.profile__card-header--info .text-more {
  position: relative;
}
.profile__card-header--info .text-more:before {
  content: "";
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: -o-linear-gradient(bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.profile__card-header--info .text-more.text-more-show:before {
  content: none;
}
.profile__card-header--text {
  padding: 0 4px;
  margin-bottom: 14px;
  overflow: hidden;
}
.profile__card-header--text p {
  font-size: 1rem;
  line-height: 125%;
  color: #7B7B7B;
  letter-spacing: -0.02em;
}
.profile__card-header--text p:not(:last-of-type) {
  margin-bottom: 20px;
}
.profile__card-header--statistics .statistics-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1rem;
  font-weight: 500;
  line-height: 124%;
  color: #282828;
  padding: 10px 10px 10px 0;
}
.profile__card-header--statistics .statistics-item:not(:last-of-type) {
  margin-bottom: 6px;
}
.profile__card-header--statistics .statistics-item img {
  margin-right: 6px;
}
.profile__card-header--statistics .statistics-item span {
  display: inline-block;
}
.profile__card-header--statistics .statistics-item span span {
  display: inline-block;
}
.profile__card-header--statistics .statistics-item a {
  color: #282828;
  transition: .8s all;
}
.profile__card-header--statistics .statistics-item a:hover {
  color: #4399FF;
  text-decoration: none;
}
.profile__card-header .statistics-item--text {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.statistics-item--text .city {
  order: 1;
  position: relative;
  margin-right: 4px;
}
.statistics-item--text .street_1 {
  order: 2;
}
.profile__card-header .statistics-item--text .street_1 {
  font-size: 14px;
  font-weight: 400;
  color: #7B7B7B;
}
.statistics-item--text .state, .statistics-item--text .country, .modalPost-head--location .state, .modalPost-head--location .country {
  display: none !important;
}
.profile__content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 272px);
          flex: 0 0 calc(100% - 272px);
  max-width: calc(100% - 120px);
  overflow: hidden;
  padding-left: 60px;
  padding-right: 60px;
}
.profile__content-products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  margin-bottom: 34px;
}
.profile__content-products .products__slider {
  min-width: 0;
  max-width: 100%;
}
.profile__content-products .products__item {
  width: 88px;
  cursor: pointer;
}
.profile__content-products .products__item:hover .products__item-image {
  -webkit-box-shadow: 0 6px 20px rgba(26, 105, 149, 0.25);
          box-shadow: 0 6px 20px rgba(26, 105, 149, 0.25);
}
.profile__content-products .products__item:hover .products__item-title {
  color: #2656FF;
}
.profile__content-products .products__item-image {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 23px;
  border: 3px solid #D6D8EA;
  overflow: hidden;
  margin-bottom: 8px;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.profile__content-products .products__item-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile__content-products .products__item-title {
  text-align: center;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.profile__content-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none; /* 07.01.2023 — кабинет; на витрине см. .intystore-sm-store-feed-tabs--ig */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 24px;
}
/* Витрина /store/{slug}/: табы «Посты / Товары» (перекрывает display:none выше). */
.profile__content-tabs.intystore-sm-store-feed-tabs--ig {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-bottom: 20px;
}
.profile__content-tabs.intystore-sm-store-feed-tabs--ig .intystore-sm-store-feed-tabs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  border-bottom: 0;
  overflow: visible;
  white-space: normal;
}
.profile__content-tabs.intystore-sm-store-feed-tabs--ig li {
  margin: 0;
  display: inline-block;
}
.profile__content-tabs .tabs__item {
  display: inline-block;
  font-size: 0.875rem;
  color: #000000;
  text-transform: uppercase;
  padding: 4px 15px;
  border-radius: 30px;
  border: 1px solid #4399FF;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.profile__content-tabs .tabs__item:hover {
  color: #2656FF;
  background-color: #E8EDFF;
  border: 1px solid #2656FF;
  text-decoration: none;
}
.profile__content-tabs .tabs__item.active {
  color: #ffffff;
  background-color: #2656FF;
}
/* Витрина /store/…: chip-кнопки «Все / Посты / Товары» (перекрывают .tabs__item выше). */
.profile__content-tabs.intystore-sm-store-feed-tabs--ig .tabs__item.intystore-sm-store-feed-tab {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 5px 14px;
  min-height: 30px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  text-transform: none;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: 1px solid #d4d2d2;
  background: #ffffff;
  color: #475569;
  -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  -webkit-transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, -webkit-box-shadow 0.15s ease;
  -o-transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.profile__content-tabs.intystore-sm-store-feed-tabs--ig .tabs__item.intystore-sm-store-feed-tab:hover:not(.active) {
  color: #334155;
  border-color: #c4c2c2;
  background: #f8f8f8;
  -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
          box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}
.profile__content-tabs.intystore-sm-store-feed-tabs--ig .tabs__item.intystore-sm-store-feed-tab.active {
  color: #ffffff;
  border-color: #4399ff;
  background: #4399ff;
  -webkit-box-shadow: 0 1px 4px rgba(38, 86, 255, 0.28);
          box-shadow: 0 1px 4px rgba(38, 86, 255, 0.28);
}
/* Рубрики в шапке карточки (.profile__card-header): компактные метки-«табы», без ссылок. */
.profile__card-header--catalog-cats {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}
.intystore-sm-store-header-cat-tabs__kicker {
  display: block;
  margin: 0 0 6px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #94a3b8;
}
.intystore-sm-store-header-cat-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px 8px;
  margin: 0;
  max-width: 100%;
}
.intystore-sm-store-header-cat-tabs__item {
  display: inline-block;
  padding: 2px 9px 3px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  color: #64748b;
  letter-spacing: 0.02em;
  -webkit-user-select: none;
      -moz-user-select: none;
       -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.profile__card-header--statistics .statistics-item--store-address-and-cats {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0;
}
.profile__card-header--statistics .statistics-item--store-address-and-cats .profile__card-header--catalog-cats {
  width: 100%;
  max-width: 280px;
}
.profile__card-header--catalog-cats-mobile {
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
}
.profile__card-header--catalog-cats-mobile .profile__card-header--catalog-cats {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

/* Витрина: партнёры доставки в шапке (логотипы / чипы; по умолчанию блок пустой — данные через фильтр intystore_sm_store_delivery_partners). */
.profile__card-header--delivery-partners {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}
.intystore-sm-store-header-delivery__kicker {
  display: block;
  margin: 0 0 6px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #94a3b8;
}
.intystore-sm-store-header-delivery-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 14px;
  margin: 0;
  max-width: 100%;
}
.intystore-sm-store-header-delivery-logos__item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
.intystore-sm-store-header-delivery-logos__link {
  display: inline-block;
  line-height: 0;
  border-radius: 6px;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.intystore-sm-store-header-delivery-logos__link:hover {
  opacity: 0.82;
}
.intystore-sm-store-header-delivery-logos__img {
  display: block;
  max-height: 28px;
  width: auto;
  max-width: 88px;
  -o-object-fit: contain;
     object-fit: contain;
}
.intystore-sm-store-header-delivery-logos__text {
  display: inline-block;
  padding: 2px 9px 3px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.3;
  color: #64748b;
  letter-spacing: 0.02em;
}
.profile__card-header--delivery-partners-mobile {
  width: 100%;
  max-width: 100%;
  margin-top: 8px;
}
.profile__card-header--delivery-partners-mobile .profile__card-header--delivery-partners {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.profile__card-header--statistics .statistics-item--store-delivery-partners {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/* Витрина: рубрики товаров магазина (только подписи, без ссылок). */
.intystore-sm-store-category-chips {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 10px;
  max-width: 100%;
}
.intystore-sm-store-category-chips__item {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #ececec;
  background: #fafafa;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: #b0aeae;
  letter-spacing: 0.01em;
}

/* Витрина: левая колонка — рубрики каталога (спокойная карточка). */
.intystore-sm-store-sidebar-panel--categories {
  margin: 0 0 18px;
  padding: 12px 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: -webkit-gradient(linear, left top, left bottom, from(#fcfcfd), to(#f4f5f8));
  background: -o-linear-gradient(top, #fcfcfd 0%, #f4f5f8 100%);
  background: linear-gradient(180deg, #fcfcfd 0%, #f4f5f8 100%);
  -webkit-box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.intystore-sm-store-sidebar-panel__kicker {
  margin: 0 0 8px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
}
.intystore-sm-store-sidebar-catlist {
  list-style: none;
  margin: 0;
  padding: 0;
}
.intystore-sm-store-sidebar-catlist__row {
  margin: 0;
  padding: 0;
  line-height: 1.35;
}
.intystore-sm-store-sidebar-catlist__row + .intystore-sm-store-sidebar-catlist__row {
  margin-top: 4px;
}
.intystore-sm-store-sidebar-catlist__link {
  display: inline-block;
  padding: 3px 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  -webkit-transition: color 0.15s ease, border-color 0.15s ease;
  -o-transition: color 0.15s ease, border-color 0.15s ease;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.intystore-sm-store-sidebar-catlist__link:hover {
  color: #2656ff;
  border-bottom-color: rgba(38, 86, 255, 0.25);
}
.intystore-sm-store-sidebar-catlist__text {
  display: inline-block;
  padding: 3px 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
}

/* Награды продавца: кольцо значков у аватара. */
.intystore-sm-vendor-avatar-frame {
  /* Больше лица: аватар + белая внутренняя кайма 3px + 4px цвета; бейджи на новом «орбите» */
  --intystore-avatar-px: 118px;
  --intystore-level-ring-outer-px: 7px;
  --intystore-badge-outer: calc(var(--intystore-avatar-px) / 2 + var(--intystore-level-ring-outer-px) + 2px);
  position: relative;
  display: inline-block;
  margin-bottom: 14px;
}
.intystore-sm-vendor-avatar-frame .profile__card-header--avatar {
  position: relative;
  width: var(--intystore-avatar-px);
  height: var(--intystore-avatar-px);
  min-width: var(--intystore-avatar-px);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 var(--intystore-avatar-px);
  flex: 0 0 var(--intystore-avatar-px);
  margin-bottom: 0;
}
/* Градиентная обводка статуса: псевдоэлемент + кольцо совпадает с `0 0 0 3px #fff` + `0 0 0 7px` из inline-стилей. */
.intystore-sm-vendor-avatar-frame[style*="--intystore-level-ring-gradient"] .profile__card-header--avatar::after {
  content: "";
  position: absolute;
  top: calc( -1 * var(--intystore-level-ring-outer-px) );
  right: calc( -1 * var(--intystore-level-ring-outer-px) );
  bottom: calc( -1 * var(--intystore-level-ring-outer-px) );
  left: calc( -1 * var(--intystore-level-ring-outer-px) );
  border-radius: 50%;
  background: var(--intystore-level-ring-gradient);
  -webkit-mask: radial-gradient(
    circle at 50% 50%,
    transparent 0,
    transparent calc(var(--intystore-avatar-px) / 2 + 3px),
    #fff calc(var(--intystore-avatar-px) / 2 + 3.5px),
    #fff calc(var(--intystore-avatar-px) / 2 + 6.5px),
    transparent calc(var(--intystore-avatar-px) / 2 + 7px)
  );
          mask: radial-gradient(
    circle at 50% 50%,
    transparent 0,
    transparent calc(var(--intystore-avatar-px) / 2 + 3px),
    #fff calc(var(--intystore-avatar-px) / 2 + 3.5px),
    #fff calc(var(--intystore-avatar-px) / 2 + 6.5px),
    transparent calc(var(--intystore-avatar-px) / 2 + 7px)
  );
  pointer-events: none;
  z-index: 1;
}
.intystore-sm-vendor-badges {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
  z-index: 3;
}
.intystore-sm-vendor-badges__item {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  pointer-events: auto;
  z-index: 4;
  -webkit-transform: rotate(var(--intystore-badge-angle, 0deg)) translateY( calc( -1 * var(--intystore-badge-outer) ) ) rotate(calc(-1 * var(--intystore-badge-angle, 0deg)));
      -ms-transform: rotate(var(--intystore-badge-angle, 0deg)) translateY( calc( -1 * var(--intystore-badge-outer) ) ) rotate(calc(-1 * var(--intystore-badge-angle, 0deg)));
          transform: rotate(var(--intystore-badge-angle, 0deg)) translateY( calc( -1 * var(--intystore-badge-outer) ) ) rotate(calc(-1 * var(--intystore-badge-angle, 0deg)));
}
/* Цвет ачивки влияет на сам статусный ободок через `--intystore-level-ring-gradient`;
   у бейджа не рисуем отдельный blur/halo, чтобы не подменять градиент кольца внешним свечением. */
.intystore-sm-vendor-badges__item .intystore-sm-vendor-badges__btn {
  position: relative;
  z-index: 2;
}
.intystore-sm-vendor-badges__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12), 0 0 0 3px #ffffff, 0 0 0 4px rgba(226, 232, 240, 0.95);
          box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12), 0 0 0 3px #ffffff, 0 0 0 4px rgba(226, 232, 240, 0.95);
  color: #64748b;
  cursor: default;
  -webkit-transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  transition: -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
  -o-transition: transform 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  transition: transform 0.15s ease, box-shadow 0.15s ease, -webkit-transform 0.15s ease, -webkit-box-shadow 0.15s ease;
}
.intystore-sm-vendor-badges__btn:hover,
.intystore-sm-vendor-badges__btn:focus {
  -webkit-transform: scale(1.06);
      -ms-transform: scale(1.06);
          transform: scale(1.06);
  -webkit-box-shadow: 0 2px 8px rgba(38, 86, 255, 0.18), 0 0 0 3px #ffffff, 0 0 0 4px rgba(67, 153, 255, 0.4);
          box-shadow: 0 2px 8px rgba(38, 86, 255, 0.18), 0 0 0 3px #ffffff, 0 0 0 4px rgba(67, 153, 255, 0.4);
  outline: none;
}
.intystore-sm-vendor-badges__item[style*="--intystore-badge-color"] .intystore-sm-vendor-badges__btn {
  color: var(--intystore-badge-color);
  -webkit-box-shadow: 0 1px 4px rgba(15, 23, 42, 0.15), 0 0 0 3px #ffffff, 0 0 0 4.5px var(--intystore-badge-color);
          box-shadow: 0 1px 4px rgba(15, 23, 42, 0.15), 0 0 0 3px #ffffff, 0 0 0 4.5px var(--intystore-badge-color);
}
.intystore-sm-vendor-badges__item[style*="--intystore-badge-color"] .intystore-sm-vendor-badges__btn:hover,
.intystore-sm-vendor-badges__item[style*="--intystore-badge-color"] .intystore-sm-vendor-badges__btn:focus {
  -webkit-box-shadow: 0 2px 10px rgba(15, 23, 42, 0.18), 0 0 0 3px #ffffff, 0 0 0 5.5px var(--intystore-badge-color);
          box-shadow: 0 2px 10px rgba(15, 23, 42, 0.18), 0 0 0 3px #ffffff, 0 0 0 5.5px var(--intystore-badge-color);
}

/* Стилизованная подсказка проекта: открывается ВНИЗ (чтобы не уезжать под верхнее меню),
   фон #4399ff, стрелка указывает ВВЕРХ на иконку, поверх всех элементов (z-index 9999). */
.intystore-sm-vendor-tooltip {
  position: relative;
}
.intystore-sm-vendor-tooltip::after {
  content: attr(data-intystore-tooltip-title) " — " attr(data-intystore-tooltip-text);
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  bottom: auto;
  -webkit-transform: translateX(-50%) translateY(-4px);
      -ms-transform: translateX(-50%) translateY(-4px);
          transform: translateX(-50%) translateY(-4px);
  min-width: 160px;
  max-width: 240px;
  padding: 8px 10px;
  font-size: 0.7rem;
  line-height: 1.35;
  font-weight: 500;
  color: #ffffff;
  background: #4399ff;
  border-radius: 10px;
  -webkit-box-shadow: 0 8px 24px rgba(67, 153, 255, 0.32), 0 1px 3px rgba(15, 23, 42, 0.18);
          box-shadow: 0 8px 24px rgba(67, 153, 255, 0.32), 0 1px 3px rgba(15, 23, 42, 0.18);
  text-align: center;
  white-space: normal;
  letter-spacing: 0.01em;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.18s ease, visibility 0.18s ease, -webkit-transform 0.18s ease;
  -o-transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease;
  transition: opacity 0.18s ease, visibility 0.18s ease, transform 0.18s ease, -webkit-transform 0.18s ease;
  z-index: 9999;
}
.intystore-sm-vendor-tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  bottom: auto;
  width: 10px;
  height: 10px;
  background: #4399ff;
  border-radius: 2px;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  opacity: 0;
  visibility: hidden;
  -webkit-box-shadow: -1px -1px 2px rgba(15, 23, 42, 0.08);
          box-shadow: -1px -1px 2px rgba(15, 23, 42, 0.08);
  -webkit-transition: opacity 0.18s ease, visibility 0.18s ease;
  -o-transition: opacity 0.18s ease, visibility 0.18s ease;
  transition: opacity 0.18s ease, visibility 0.18s ease;
  z-index: 9999;
}
.intystore-sm-vendor-tooltip:hover::after,
.intystore-sm-vendor-tooltip:focus::after,
.intystore-sm-vendor-tooltip:focus-within::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0);
      -ms-transform: translateX(-50%) translateY(0);
          transform: translateX(-50%) translateY(0);
}
.intystore-sm-vendor-tooltip:hover::before,
.intystore-sm-vendor-tooltip:focus::before,
.intystore-sm-vendor-tooltip:focus-within::before {
  opacity: 1;
  visibility: visible;
}
/* Tooltip должен лежать поверх любых соседей: выводим из stacking context бейджа на время показа.
   transform на `__item` создаёт собственный context — без подъёма z-index родителей tooltip
   уезжает под секции/меню на странице. Поднимаем frame/ul/item только пока подсказка активна. */
.intystore-sm-vendor-avatar-frame:has(.intystore-sm-vendor-tooltip:hover),
.intystore-sm-vendor-avatar-frame:has(.intystore-sm-vendor-tooltip:focus),
.intystore-sm-vendor-avatar-frame:has(.intystore-sm-vendor-tooltip:focus-within) {
  z-index: 9999;
}
.intystore-sm-vendor-badges:has(.intystore-sm-vendor-tooltip:hover),
.intystore-sm-vendor-badges:has(.intystore-sm-vendor-tooltip:focus),
.intystore-sm-vendor-badges:has(.intystore-sm-vendor-tooltip:focus-within) {
  z-index: 9999;
}
.intystore-sm-vendor-badges__item:has(.intystore-sm-vendor-tooltip:hover),
.intystore-sm-vendor-badges__item:has(.intystore-sm-vendor-tooltip:focus),
.intystore-sm-vendor-badges__item:has(.intystore-sm-vendor-tooltip:focus-within) {
  z-index: 9999;
}
.intystore-sm-vendor-badges__item--rare .intystore-sm-vendor-badges__btn {
  color: #2563eb;
  -webkit-box-shadow: 0 1px 4px rgba(37, 99, 235, 0.2), 0 0 0 3px #ffffff, 0 0 0 4px rgba(147, 197, 253, 0.9);
          box-shadow: 0 1px 4px rgba(37, 99, 235, 0.2), 0 0 0 3px #ffffff, 0 0 0 4px rgba(147, 197, 253, 0.9);
}
.intystore-sm-vendor-badges__item--epic .intystore-sm-vendor-badges__btn {
  color: #7c3aed;
  -webkit-box-shadow: 0 1px 5px rgba(124, 58, 237, 0.22), 0 0 0 3px #ffffff, 0 0 0 4px rgba(196, 181, 253, 0.95);
          box-shadow: 0 1px 5px rgba(124, 58, 237, 0.22), 0 0 0 3px #ffffff, 0 0 0 4px rgba(196, 181, 253, 0.95);
}
.intystore-sm-vendor-badges__item--more .intystore-sm-vendor-badges__more {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #475569;
}
.intystore-sm-vendor-badges__ico {
  display: block;
  width: 15px;
  height: 15px;
  line-height: 0;
}
.intystore-sm-vendor-badges__ico svg {
  display: block;
  width: 15px;
  height: 15px;
}

/* Витрина: flex-обёртка (сайдбар слева + шапка/лента), как dokan-store-wrap. */
.intystore-sm-store-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 100%;
}
.intystore-sm-store-wrap.layout-left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.intystore-sm-store-wrap.layout-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 20px;
}
.intystore-sm-store-wrap .intystore-sm-store-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  width: 220px;
  max-width: 32%;
  min-width: 0;
}
.intystore-sm-store-wrap .profile__wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
@media (max-width: 991px) {
  .intystore-sm-store-wrap.layout-left,
  .intystore-sm-store-wrap.layout-right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intystore-sm-store-wrap .intystore-sm-store-sidebar {
    width: 100%;
    max-width: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

/* Уровни 1–15: кольцо вокруг аватара (box-shadow на .profile__card-header--avatar). */
.intystore-sm-vendor-avatar-frame .profile__card-header--avatar {
  -webkit-transition: -webkit-box-shadow 0.25s ease;
  transition: -webkit-box-shadow 0.25s ease;
  -o-transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--1 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #e5e7eb;
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #e5e7eb;
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--2 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #d1d5db;
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #d1d5db;
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--3 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #cbd5e1;
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #cbd5e1;
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--4 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #6600ff;
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #6600ff;
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--5 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #7dd3fc;
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #7dd3fc;
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--6 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #38bdf8, 0 0 14px rgba(14, 165, 233, 0.3);
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #38bdf8, 0 0 14px rgba(14, 165, 233, 0.3);
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--7 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #4399ff, 0 0 16px rgba(67, 153, 255, 0.4);
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #4399ff, 0 0 16px rgba(67, 153, 255, 0.4);
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--8 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #3b82f6, 0 0 18px rgba(37, 99, 235, 0.35);
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #3b82f6, 0 0 18px rgba(37, 99, 235, 0.35);
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--9 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #6366f1, 0 0 20px rgba(99, 102, 241, 0.38);
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #6366f1, 0 0 20px rgba(99, 102, 241, 0.38);
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--10 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #8b5cf6, 0 0 22px rgba(124, 58, 237, 0.4);
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #8b5cf6, 0 0 22px rgba(124, 58, 237, 0.4);
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--11 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #a855f7, 0 0 24px rgba(147, 51, 234, 0.42);
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #a855f7, 0 0 24px rgba(147, 51, 234, 0.42);
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--12 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #d946ef, 0 0 26px rgba(192, 38, 211, 0.45);
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #d946ef, 0 0 26px rgba(192, 38, 211, 0.45);
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--13 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #f472b6, 0 0 28px rgba(236, 72, 153, 0.45);
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #f472b6, 0 0 28px rgba(236, 72, 153, 0.45);
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--14 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #fb923c, 0 0 32px rgba(249, 115, 22, 0.5);
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #fb923c, 0 0 32px rgba(249, 115, 22, 0.5);
}
.intystore-sm-vendor-avatar-frame.intystore-sm-vendor-level--15 .profile__card-header--avatar {
  -webkit-box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #fbbf24, 0 0 36px rgba(245, 158, 11, 0.55), 0 0 6px rgba(251, 191, 36, 0.9) inset;
          box-shadow: 0 0 0 3px #ffffff, 0 0 0 7px #fbbf24, 0 0 36px rgba(245, 158, 11, 0.55), 0 0 6px rgba(251, 191, 36, 0.9) inset;
}

.profile__content-tabs ul {
  list-style: none;
  white-space: nowrap;
  overflow: auto;
  font-size: 0;
}
.profile__content-tabs li {
  display: inline-block;
  margin: 0 5px;
}
.profile__content-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 18px;
  grid-row-gap: 18px;
}
.profile__content-posts .post__item {
  aspect-ratio: 1;
  position: relative;
  /*width: 100%;*/
  /*height: calc(286px + 559.3 * (100vw - 1440px) / 1920);*/
  border-radius: 9px;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  background-color: #f2f3f7;
}
.profile__content-posts .post__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: .8s all;
  z-index: 2;
}
.profile__content-posts .post__item img:hover {
  transform: translate(-50%, -50%) scale(1.05);
}
.post__item .wlt-product-likes-product, .post__item .single_add_to_cart_button {
  opacity: 0;
}


/* ---------------------------------------- main ---------------------------------------- */
.main__stores {
  max-width: 1128px;
  margin: 0 auto 80px auto;
}
.main__stores a {
  color: inherit;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.main__stores a:hover {
  color: #4399FF;
}
.main__slider {
  position: relative;
}
.main__slider:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background: -o-linear-gradient(180.09deg, #FFFFFF 8.55%, rgba(255, 255, 255, 0) 93.85%);
  background: linear-gradient(269.91deg, #FFFFFF 8.55%, rgba(255, 255, 255, 0) 93.85%);
  z-index: 2;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.main__stores-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  margin-bottom: 32px;
}
.main__stores-block {
  max-width: 150px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.main__stores-block:hover .main__stores-image img {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
      -ms-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}
.main__stores-image {
	border: 1px solid;
    border-color: #0000000f; /* 07.01.2023 */
  position: relative;
  width: 138px;
  height: 138px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 10px;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.main__stores-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
  z-index: 2;
}
.main__stores-icons {
  font-size: 0;
  margin-bottom: 20px;
}
.main__stores-icons img {
  display:none;
  max-width: 25px;
  margin: 0 4px;
}
.main__stores-name {
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.main__products {
  display: grid;
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  max-width: 1128px;
  margin: 0 auto 70px auto;
}
.main__products-item {
  aspect-ratio: 1;
  position: relative;
  border: 0;
  overflow: hidden;
  cursor: pointer;
  background-color: #f2f3f7;
}
.main__products-item:nth-child(9n+2) {
  grid-area: span 2/span 2;
}
.main__products-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
  z-index: 2;
}
.main__products-item img:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.05);
      -ms-transform: translate(-50%, -50%) scale(1.05);
          transform: translate(-50%, -50%) scale(1.05);
}


/* ---------------------------------------- store list ---------------------------------------- */
.store__list {
  display: grid;
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  grid-auto-rows: 1fr;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-flow: dense;
  max-width: 1128px;
  margin: 0 auto 80px auto;
}
.store__list a {
  color: inherit;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.store__list a:hover {
  color: #4399FF;
}
.store__list-title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 24px;
  color: #282828;
  text-align: center;
  margin-bottom: 48px;
}
.store__list-margin {
  margin-bottom: 48px;
}


/* ---------------------------------------- registration ---------------------------------------- */
.registration__wrapper {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
.registration__logo {
  text-align: center;
  margin-bottom: 120px;
  margin-bottom: calc(44px + 306 * (100vw - 1440px) / 1920);
}
.registration__logo img {
  max-width: 100%;
}
.registration__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 24px;
  color: #282828;
  text-align: center;
  margin-bottom: 48px;
}
.registration__text {
  margin-bottom: 34px;
}
.registration__text p {
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: -0.02em;
  text-align: center;
}
.registration__text p:not(:last-of-type) {
  margin-bottom: 18px;
}
.registration__role {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}
.registration__role:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1px;
  height: 90%;
  background-color: #CA8CBB;
}
.registration__role .radio-label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #7B7B7B;
  cursor: pointer;
  margin-bottom: 0;
}
.registration__role input[type=radio] {
  position: absolute;
  opacity: 0;
}
.registration__role input[type=radio] + .radio-label:before {
  content: "";
  background: #ffffff;
  border-radius: 100%;
  border: 1px solid #B060C2;
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
  top: 2px;
  margin-right: 6px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.registration__role input[type=radio]:checked + .radio-label {
  font-weight: 500;
  color: #000000;
}
.registration__role input[type=radio]:checked + .radio-label:before {
  border: 2px solid #fff;
  background: -o-linear-gradient(207.9deg, #F2BCAA 3.02%, #EA7093 54.9%, #BB7AC1 96.6%);
  background: linear-gradient(242.1deg, #F2BCAA 3.02%, #EA7093 54.9%, #BB7AC1 96.6%);
  -webkit-box-shadow: 0px 2px 6px 0px rgba(200, 221, 241, 0.7);
          box-shadow: 0px 2px 6px 0px rgba(200, 221, 241, 0.7);
}
.registration__role input[type=radio]:focus + .radio-label:before {
  outline: none;
}
.registration__role input[type=radio]:disabled + .radio-label:before {
  -webkit-box-shadow: inset 0 0 0 4px #f4f4f4;
          box-shadow: inset 0 0 0 4px #f4f4f4;
  border-color: #b4b4b4;
  background: #b4b4b4;
}
.registration__role input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}
.registration__input-margin {
  margin-bottom: 20px;
}
.registration__input-margin input:not(:last-of-type) {
  margin-bottom: 4px;
}
.registration__agreement {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: -0.01em;
  text-align: center;
  color: #7B7B7B;
  margin-top: 120px;
  margin-bottom: 62px;
}
.registration__agreement a {
  color: #4399FF;
}

.profile.forgot-page {
  padding-top: 200px;
}
.profile.forgot-page .registration__wrapper {
  max-width: 332px;
}
.profile.forgot-page .registration__logo {
  margin-bottom: 70px;
}
.profile.forgot-page .registration__title {
  margin-bottom: 32px;
}

.woocommerce-password-strength {
  font-size: 13px;
  line-height: 20px;
  text-align: left !important;
  margin-top: 6px;
  margin-bottom: 6px;
}
.woocommerce-password-hint {
  display: block;
  font-size: 13px;
  line-height: 20px;
}


/* ---------------------------------------- cart page ---------------------------------------- */
.cart__wrapper {
  max-width: 1080px;
  margin: 0 auto 80px auto;
}
.cart__table {
  position: relative;
  width: 100%;
  margin-bottom: 28px;
}
.cart__table-thead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 0.813rem;
  line-height: 23px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #7B7B7B;
  margin-bottom: 8px;
}
.cart__width-remove {
  width: 64px;
}
.cart__width-thumbnail {
  width: 90px;
}
.cart__width-name {
  padding-left: 42px;
  width: 366px;
}
.cart__width-price {
  text-align: center;
  width: 130px;
}
.cart__width-quantity {
  text-align: center;
  width: 250px;
}
.cart__width-subtotal {
  text-align: center;
  width: 180px;
}
.cart__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F1F2F8;
  border-radius: 5px;
  overflow: hidden;
}
.cart__item:not(:last-of-type) {
  margin-bottom: 10px;
}
.cart__remove {
  width: 64px;
  height: 90px;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
.cart__remove:hover {
  background-color: #B572C4 !important;
}
.cart__remove:hover svg rect {
  fill: #fff;
}
.cart__remove a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.cart__thumbnail-img {
  position: relative;
  width: 90px;
  height: 90px;
  border: 0;
  overflow: hidden;
}
.cart__thumbnail-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cart__title {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
  margin-bottom: 2px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-clamp: 1;
  box-orient: vertical;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.cart__variation {
  font-size: 0.875rem;
  line-height: 18px;
  letter-spacing: -0.01em;
  color: #7B7B7B;
  margin-bottom: 0;
}
.cart__variation dd {
  margin-bottom: 0;
}
.cart__quantity {
  position: relative;
  font-size: 0;
}
.cart__quantity:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background-color: #fff;
}
.cart__quantity:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background-color: #fff;
}
.cart__quantity-input {
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  border-top: 1px #DADADA solid;
  border-right: 0;
  border-bottom: 1px #DADADA solid;
  border-left: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  color: #7B7B7B;
  text-align: center;
  position: relative;
  z-index: 1;
  appearance: textfield;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}
.cart__quantity-minus, .cart__quantity-plus {
  width: 40px;
  height: 40px;
  display: inline-block;
  color: #A0A0A0;
  padding: 6px;
  background: #fff;
  margin-right: 0;
  font-size: 22px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
}
.cart__quantity-minus {
  border-radius: 9px 0 0 9px;
  border: 1px solid #DADADA;
}
.cart__quantity-plus {
  border-radius: 0 9px 9px 0;
  border: 1px solid #DADADA;
}
.cart__price {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: #4399FF;
  position: relative;
}
.cart__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cart__coupon {
  font-size: 0;
}
.cart__coupon input {
  position: relative;
  z-index: 1;
  font-size: 0.875rem;
  line-height: 24px;
  color: #7B7B7B;
  border: 1px solid #E6EDF5;
  border-radius: 33px 0 0 33px;
  height: 40px;
  text-align: center;
  width: 160px;
  -webkit-box-shadow: inset 0 0 12px rgba(119, 124, 126, 0.21);
          box-shadow: inset 0 0 12px rgba(119, 124, 126, 0.21);
}
.cart__coupon input::-webkit-input-placeholder {
  color: #7B7B7B;
  opacity: 1;
}
.cart__coupon input::-moz-placeholder {
  color: #7B7B7B;
  opacity: 1;
}
.cart__coupon input:-ms-input-placeholder {
  color: #7B7B7B;
  opacity: 1;
}
.cart__coupon input::-ms-input-placeholder {
  color: #7B7B7B;
  opacity: 1;
}
.cart__coupon input::placeholder {
  color: #7B7B7B;
  opacity: 1;
}


/* ---------------------------------------- checkout page ---------------------------------------- */
.checkout__wrapper {
  max-width: 594px;
  margin: 0 auto 80px auto;
}
.checkout__input-margin60 {
  margin-bottom: 20px;
}
.checkout__input-margin12 {
  margin-bottom: 12px;
}
.checkout__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 24px;
  color: #282828;
  text-align: center;
  margin-bottom: 48px;
}
.checkout__form .wc_payment_methods {
  margin-bottom: 40px;
}

/* ---------------------------------------- ЛК покупателя — визуальная параллель кабинету продавца INTYSTORE_SM (/dashboard/) ---------------------------------------- */
/* Ширина как у /dashboard/: без горизонтального вылета (WC layout 30%/68% + float, flex без min-width) */
body.woocommerce-account #primary.site-main,
body.woocommerce-account main.site-main {
  max-width: 100%;
  overflow-x: clip;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body.woocommerce-account .intystore-customer-page.intystore-sm-vendor-shell,
body.woocommerce-account .intystore-customer-page.intystore-customer-shell {
  max-width: 100%;
  overflow-x: clip;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body.woocommerce-account .woocommerce-MyAccount-navigation,
body.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: 100% !important;
  max-width: 100% !important;
}
body.woocommerce-account .woocommerce-MyAccount-content {
  min-width: 0;
  display: block;
  clear: none;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
body.woocommerce-account .intystore-sm-vendor-outer > .woocommerce {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
/* Внешняя полоса + панель + flex навигации — инлайн плагина intystore-sm-vendor-dashboard на ЛК (см. is_customer_account_shell) */
body.woocommerce-account .intystore-customer-page-heading {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 768px) {
  body.woocommerce-account .intystore-customer-page-heading {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.woocommerce-account .intystore-customer-page-heading .store__list-title {
  text-align: left;
  margin-bottom: 0;
}
body.woocommerce-account .intystore-customer-page-heading .entry-title {
  color: #0f172a;
  font-weight: 600;
  letter-spacing: -0.02em;
}
/* Карточки обзора ЛК — те же токены, что body.intystore-sm-vendor-dashboard .intystore-sm-vendor-dash-card (плагин не грузит body-класс на ЛК покупателя) */
body.woocommerce-account .intystore-sm-vendor-shell .intystore-sm-vendor-dash-hero {
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
}
body.woocommerce-account .intystore-sm-vendor-shell .intystore-sm-vendor-dash-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 22px;
  -webkit-box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
          box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  border: 1px solid #e8edf3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
body.woocommerce-account .intystore-sm-vendor-shell .intystore-sm-vendor-dash-card-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  background: -webkit-gradient(linear, left top, right bottom, from(#eef2ff), to(#e0e7ff));
  background: -o-linear-gradient(top left, #eef2ff, #e0e7ff);
  background: linear-gradient(145deg, #eef2ff, #e0e7ff);
}
body.woocommerce-account .intystore-sm-vendor-shell .intystore-sm-vendor-dash-card-icon img {
  display: block;
  width: 24px;
  height: 24px;
}
body.woocommerce-account .intystore-sm-vendor-shell .intystore-sm-vendor-dash-card-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #0f172a;
  line-height: 1.3;
}
body.woocommerce-account .intystore-sm-vendor-shell .intystore-sm-vendor-dash-card-desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0 0 16px 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
body.woocommerce-account .intystore-sm-vendor-shell .intystore-sm-vendor-dash-card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}
body.woocommerce-account .intystore-customer-account__navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 72px;
}
body.woocommerce-account .intystore-customer-account__content {
  padding: 0;
  max-width: 100%;
  min-width: 0;
}
body.woocommerce-account .intystore-customer-breadcrumbs-wrap {
  margin-bottom: 18px;
}
body.woocommerce-account .intystore-customer-breadcrumbs-wrap .breadcrumb {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px 10px;
  padding: 10px 16px;
  margin: 0;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 999px;
  -webkit-box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
  list-style: none;
}
body.woocommerce-account .intystore-customer-breadcrumbs-wrap .breadcrumb-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.8125rem;
  color: #64748b;
}
body.woocommerce-account .intystore-customer-breadcrumbs-wrap .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  display: inline-block;
  padding: 0 8px 0 0;
  color: #cbd5e1;
  font-weight: 400;
}
body.woocommerce-account .intystore-customer-breadcrumbs-wrap .breadcrumb-item.active {
  color: #0f172a;
  font-weight: 600;
}
body.woocommerce-account .intystore-customer-breadcrumbs-wrap .breadcrumb-item a {
  color: inherit;
  text-decoration: none;
}
body.woocommerce-account .intystore-customer-breadcrumbs-wrap .breadcrumb-item a:hover {
  color: #2656ff;
}
@media (min-width: 992px) {
  body.woocommerce-account .intystore-customer-account__content {
    padding: 4px 0 0 0;
  }
}
/* .checkout__title темы (центр, большой margin) — в ЛК как у SM */
body.woocommerce-account .woocommerce-MyAccount-content .checkout__title,
body.woocommerce-account .intystore-customer-dashboard .checkout__title {
  text-align: left;
  color: #0f172a;
  margin-bottom: 14px;
  margin-top: 4px;
}
/* Заголовки контента — как .checkout__title в кабинете SM (левое выравнивание) */
body.woocommerce-account .woocommerce-MyAccount-content > h2,
body.woocommerce-account .woocommerce-MyAccount-content > h3,
body.woocommerce-account .woocommerce-MyAccount-content header h2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-order-details__title,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-column__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  color: #0f172a;
  text-align: left;
  margin: 0 0 14px 0;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
body.woocommerce-account .woocommerce-MyAccount-content > p:not(.woocommerce-form-row):not(.form-row) {
  font-size: 1rem;
  line-height: 150%;
  color: #64748b;
  margin: 0 0 16px 0;
}
body.woocommerce-account .woocommerce-MyAccount-content fieldset {
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 16px 18px 8px;
  margin: 0 0 24px 0;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}
body.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  padding: 0 8px;
  margin-bottom: 0;
}
/* Поля форм WC — те же отступы и радиусы, что .input-control */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row {
  position: relative;
  margin: 0 0 16px 0;
  padding: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 125%;
  color: #0f172a;
  letter-spacing: -0.02em;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-form-row .required {
  color: #e781c2;
}
body.woocommerce-account .woocommerce-MyAccount-content input.input-text,
body.woocommerce-account .woocommerce-MyAccount-content input[type="text"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="email"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="tel"],
body.woocommerce-account .woocommerce-MyAccount-content input[type="number"],
body.woocommerce-account .woocommerce-MyAccount-content select,
body.woocommerce-account .woocommerce-MyAccount-content textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0f172a;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"] {
  padding-right: 108px;
}
body.woocommerce-account .woocommerce-MyAccount-content .password-input {
  position: relative;
  display: block;
}
body.woocommerce-account .woocommerce-MyAccount-content .password-input input {
  padding-right: 108px;
}
body.woocommerce-account .woocommerce-MyAccount-content .password-input input:focus {
  border: 1px solid #c7d2fe;
  background-image: none;
  -webkit-box-shadow: 0 0 0 3px rgba(38, 86, 255, 0.08);
          box-shadow: 0 0 0 3px rgba(38, 86, 255, 0.08);
  outline: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input {
  position: absolute;
  right: 8px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  height: 32px;
  min-width: 0;
  margin: 0;
  padding: 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #64748b;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.02em;
  cursor: pointer;
  z-index: 2;
}
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input::before {
  /* Unicode escapes: UTF-8 без кириллицы в файле (избегаем mojibake при неверной кодировке ответа) */
  content: "\041F\043E\043A\0430\0437\0430\0442\044C";
  position: static;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input::after {
  content: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input.display-password::before {
  content: "\0421\043A\0440\044B\0442\044C";
}
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input:hover,
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input:focus {
  border-color: #c7d2fe;
  background: #eef2ff;
  color: #2656ff;
  outline: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input:hover::before,
body.woocommerce-account .woocommerce-MyAccount-content .show-password-input:focus::before {
  color: #2656ff;
}
body.woocommerce-account .woocommerce-MyAccount-content textarea {
  min-height: 120px;
  resize: vertical;
}
body.woocommerce-account .woocommerce-MyAccount-content input.input-text:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="text"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="email"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="password"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="tel"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content select:focus,
body.woocommerce-account .woocommerce-MyAccount-content textarea:focus {
  border: 1px solid #c7d2fe;
  background-color: #fff;
  background-image: none;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(38, 86, 255, 0.12);
          box-shadow: 0 0 0 3px rgba(38, 86, 255, 0.12);
}
body.woocommerce-account .woocommerce-MyAccount-content .clear {
  clear: both;
  height: 0;
  margin: 0;
  padding: 0;
}
/* Кнопки WC в ЛК — как .btn-fill / отступы */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button,
body.woocommerce-account .woocommerce-MyAccount-content button.button,
body.woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button,
body.woocommerce-account .woocommerce-MyAccount-content a.button {
  display: inline-block;
  width: auto;
  min-width: 200px;
  max-width: 100%;
  font-size: 1rem;
  line-height: 112%;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 33px;
  border: 0;
  padding: 11px 28px;
  margin: 8px 12px 8px 0;
  background-color: #2656ff;
  -webkit-box-shadow: 0 4px 14px rgba(38, 86, 255, 0.28);
          box-shadow: 0 4px 14px rgba(38, 86, 255, 0.28);
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  -o-transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:focus,
body.woocommerce-account .woocommerce-MyAccount-content button.button:hover,
body.woocommerce-account .woocommerce-MyAccount-content button.button:focus,
body.woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button:hover,
body.woocommerce-account .woocommerce-MyAccount-content a.button:hover {
  color: #ffffff;
  background-color: #1d4ed8;
  -webkit-box-shadow: 0 6px 18px rgba(38, 86, 255, 0.35);
          box-shadow: 0 6px 18px rgba(38, 86, 255, 0.35);
  outline: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button--alt,
body.woocommerce-account .woocommerce-MyAccount-content a.button.cancel {
  color: #2656ff;
  font-weight: 600;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1px #c7d2fe inset;
          box-shadow: 0 0 0 1px #c7d2fe inset;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button--alt:hover,
body.woocommerce-account .woocommerce-MyAccount-content a.button.cancel:hover {
  color: #1d4ed8;
  background-color: #eef2ff;
  -webkit-box-shadow: 0 0 0 1px #a5b4fc inset;
          box-shadow: 0 0 0 1px #a5b4fc inset;
}
/* Таблицы — как .intystore-sm-vendor-table-shell в кабинете продавца */
body.woocommerce-account .woocommerce-MyAccount-content .shop_table,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-details {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 0 24px 0;
  font-size: 1rem;
  line-height: 125%;
  color: #0f172a;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
          box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
body.woocommerce-account .woocommerce-MyAccount-content .shop_table thead th,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-details thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}
body.woocommerce-account .woocommerce-MyAccount-content .shop_table tbody td,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-details tbody td,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table tbody th {
  padding: 14px 18px;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
  color: #334155;
}
body.woocommerce-account .woocommerce-MyAccount-content .shop_table tbody tr:last-child td,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table tbody tr:last-child th {
  border-bottom: 0;
}
body.woocommerce-account .woocommerce-MyAccount-content .shop_table a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .shop_table a:hover {
  color: #2656ff;
  text-decoration: underline;
}
/* Кнопки в ячейках таблицы заказов — стиль .btn-outline проекта */
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td .woocommerce-button,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td a.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  min-width: 0;
  max-width: 100%;
  height: 44px;
  min-height: 44px;
  margin: 4px 8px 4px 0;
  padding: 0 18px;
  border: 0;
  border-radius: 33px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 112%;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
  word-break: break-word;
  text-decoration: none;
  background: #ffffff;
  color: #4399FF;
  -webkit-box-shadow: 0 0 0 1px #4399ff inset;
          box-shadow: 0 0 0 1px #4399ff inset;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, -webkit-box-shadow 0.2s ease;
  -o-transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td .woocommerce-button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td .woocommerce-button:focus,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td a.button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td a.button:focus {
  color: #1d4ed8;
  background: #eef2ff;
  -webkit-box-shadow: 0 0 0 1px #4399ff inset, 0 4px 12px rgba(38, 86, 255, 0.18);
          box-shadow: 0 0 0 1px #4399ff inset, 0 4px 12px rgba(38, 86, 255, 0.18);
  outline: none;
}
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td .woocommerce-button.button-primary,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td .woocommerce-button.pay,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td a.button.pay {
  color: #ffffff;
  background: #2656ff;
  -webkit-box-shadow: 0 4px 14px rgba(38, 86, 255, 0.28);
          box-shadow: 0 4px 14px rgba(38, 86, 255, 0.28);
}
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td .woocommerce-button.button-primary:hover,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td .woocommerce-button.pay:hover,
body.woocommerce-account .woocommerce-MyAccount-content .shop_table td a.button.pay:hover {
  color: #ffffff;
  background: #1d4ed8;
  -webkit-box-shadow: 0 6px 18px rgba(38, 86, 255, 0.35);
          box-shadow: 0 6px 18px rgba(38, 86, 255, 0.35);
}
@media (max-width: 575.98px) {
  body.woocommerce-account .woocommerce-MyAccount-content .shop_table td .woocommerce-button,
  body.woocommerce-account .woocommerce-MyAccount-content .shop_table td a.button {
    width: auto;
    padding: 0 14px;
    font-size: 0.8125rem;
    margin: 4px 6px 4px 0;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content .shop_table .nobr {
  white-space: normal;
}
@media (min-width: 992px) {
  body.woocommerce-account .woocommerce-MyAccount-content .shop_table .nobr {
    white-space: nowrap;
  }
}
body.woocommerce-account .woocommerce-MyAccount-content .order-status {
  display: inline-block;
  padding: 0.35em 0.65em;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #f1f5f9;
  color: #0f172a;
}
/* Уведомления WC */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
  padding: 14px 18px;
  margin: 0 0 20px 0;
  border-radius: 12px;
  font-size: 0.9375rem;
  line-height: 140%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message {
  border-color: #c7d2fe;
  background: #eef2ff;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-error {
  border-color: #fecaca;
  background: #fef2f2;
}
/* Дашборд: сетка карточек — разметка как у SM (`intystore-sm-vendor-dash-quick` + `mb-4` в шаблоне) */
body.woocommerce-account .intystore-customer-dashboard__quick {
  margin-bottom: 28px;
}
body.woocommerce-account .intystore-customer-dashboard__meta a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}
body.woocommerce-account .intystore-customer-dashboard__meta a:hover {
  color: #2656ff;
  text-decoration: underline;
}
body.woocommerce-account .intystore-customer-dashboard .text-muted {
  color: #64748b;
}
body.woocommerce-account .intystore-customer-dashboard__copy {
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #64748b;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid #e8edf3;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
          box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
body.woocommerce-account .intystore-customer-dashboard__copy a {
  color: #2656ff;
  font-weight: 600;
  text-decoration: none;
}
body.woocommerce-account .intystore-customer-dashboard__copy a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
/* Оболочка таблиц: инлайн плагина + горизонтальный скролл на узких экранах */
body.woocommerce-account .intystore-sm-vendor-shell .intystore-sm-vendor-table-shell {
  overflow-x: auto;
  overflow-y: visible;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}
body.woocommerce-account .intystore-customer-table-shell {
  background: #ffffff;
  border-radius: 16px;
  overflow-x: auto;
  overflow-y: visible;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e8edf3;
  -webkit-box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
          box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  margin: 0 0 24px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body.woocommerce-account .intystore-customer-table-shell .shop_table {
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  width: 100%;
  min-width: 0;
  table-layout: auto;
}
/* Пагинация заказов — как .intystore-sm-vendor-pagination */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination {
  margin-top: 24px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button {
  min-width: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.875rem;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button--previous {
  margin-right: 8px;
}
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button--next {
  margin-left: 8px;
}
/* ЛК покупателя: секция «Адреса» (список + редактирование) — как у SM */
body.woocommerce-account .intystore-customer-addresses__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 18px;
  padding: 22px;
  margin-bottom: 20px;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 18px;
  -webkit-box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
          box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
body.woocommerce-account .intystore-customer-addresses__intro-main {
  min-width: 0;
}
body.woocommerce-account .intystore-customer-addresses__intro .checkout__title {
  margin-bottom: 0 !important;
  margin-top: 0;
}
body.woocommerce-account .intystore-customer-addresses__lead {
  margin: 8px 0 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 720px;
}
body.woocommerce-account .intystore-customer-addresses__summary {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  min-width: 118px;
  padding: 14px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #f8fafc;
  text-align: center;
}
body.woocommerce-account .intystore-customer-addresses__summary-value {
  display: block;
  margin-bottom: 4px;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0f172a;
}
body.woocommerce-account .intystore-customer-addresses__summary-label {
  display: block;
  font-size: 0.75rem;
  line-height: 1.3;
  color: #64748b;
}
body.woocommerce-account .intystore-customer-addresses__eyebrow,
body.woocommerce-account .intystore-customer-addresses__state,
body.woocommerce-account .intystore-customer-account-edit__eyebrow {
  display: inline-block;
  margin: 0 0 8px 0;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
body.woocommerce-account .intystore-customer-address-edit {
  max-width: 100%;
}
body.woocommerce-account .intystore-customer-address-edit__hero.intystore-sm-vendor-dash-hero--with-tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
}
body.woocommerce-account .intystore-customer-address-edit__hero .intystore-sm-vendor-dash-hero-main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 240px;
          flex: 1 1 240px;
  min-width: 0;
}
body.woocommerce-account .intystore-customer-address-edit__hero .intystore-sm-vendor-dash-hero-tools {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
body.woocommerce-account .intystore-customer-address-edit .intystore-sm-vendor-icon-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 48px;
  height: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  text-decoration: none !important;
  -webkit-transition: background 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  -o-transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
body.woocommerce-account .intystore-customer-address-edit .intystore-sm-vendor-icon-btn:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  -webkit-box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
          box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}
body.woocommerce-account .intystore-customer-address-edit__title {
  margin-top: 0;
  margin-bottom: 8px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: #0f172a;
}
body.woocommerce-account .intystore-customer-address-edit__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #64748b;
  max-width: 720px;
}
body.woocommerce-account .intystore-customer-address-edit .woocommerce-address-fields__field-wrapper {
  display: block;
  margin-bottom: 8px;
}
body.woocommerce-account .intystore-customer-address-edit__fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 12px minmax(0, 1fr) 12px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
  row-gap: 14px;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 18px 18px 22px;
  background: #f8fafc;
}
body.woocommerce-account .intystore-customer-address-edit__section-head {
  grid-column: 1 / -1;
  margin: 0 0 4px 0;
}
body.woocommerce-account .intystore-customer-address-edit__section-head--location {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}
body.woocommerce-account .intystore-customer-address-edit__section-head h3 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0f172a;
}
body.woocommerce-account .intystore-customer-address-edit__section-head p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row {
  float: none;
  width: auto;
  position: relative;
  margin-bottom: 0;
}
/* Полная ширина сетки только у строк, помеченных WC как wide (страна, улица, телефон, email и т.д.); не у всех `.address-field` — иначе город/регион/индекс схлопываются в одну колонку */
body.woocommerce-account .intystore-customer-address-edit__fields .form-row-wide {
  grid-column: 1 / -1;
}
body.woocommerce-account .intystore-customer-address-edit__fields #billing_country_field,
body.woocommerce-account .intystore-customer-address-edit__fields #shipping_country_field,
body.woocommerce-account .intystore-customer-address-edit__fields #billing_address_1_field,
body.woocommerce-account .intystore-customer-address-edit__fields #shipping_address_1_field,
body.woocommerce-account .intystore-customer-address-edit__fields #billing_phone_field,
body.woocommerce-account .intystore-customer-address-edit__fields #billing_email_field,
body.woocommerce-account .intystore-customer-address-edit__fields #shipping_phone_field,
body.woocommerce-account .intystore-customer-address-edit__fields #billing_company_field,
body.woocommerce-account .intystore-customer-address-edit__fields #shipping_company_field {
  grid-column: 1 / -1;
}
/* INTYSTORE: единый плавающий лейбл (эталон — фильтры `/my-orders/`).
   Применяется к WC-разметке `<p class="form-row"><label>…</label><span class="woocommerce-input-wrapper"><input class="input-text"></span></p>`.
   Визуально совпадает с универсальным `.intystore-float-input` (см. блок ниже в этом файле). */
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input,
body.woocommerce-account .intystore-customer-account-edit__fields .form-row.intystore-float-input {
  position: relative;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper,
body.woocommerce-account .intystore-customer-account-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper .input-text,
body.woocommerce-account .intystore-customer-account-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper .input-text {
  height: 56px;
  min-height: 56px;
  width: 100%;
  padding: 14px 18px 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #0f172a;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper textarea.input-text,
body.woocommerce-account .intystore-customer-account-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper textarea.input-text {
  height: auto;
  min-height: 96px;
  padding-top: 22px;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper .input-text:focus,
body.woocommerce-account .intystore-customer-account-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper .input-text:focus {
  border-color: #4399ff;
  outline: none;
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px rgba(67, 153, 255, 0.12);
          box-shadow: 0 0 0 3px rgba(67, 153, 255, 0.12);
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input label:not(.screen-reader-text),
body.woocommerce-account .intystore-customer-account-edit__fields .form-row.intystore-float-input label:not(.screen-reader-text) {
  position: absolute;
  left: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: 0;
  padding: 0 4px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.2;
  color: #94a3b8;
  opacity: 1;
  background: transparent;
  pointer-events: none;
  z-index: 2;
  -webkit-transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, -webkit-transform 0.18s ease, background 0.18s ease, border-radius 0.18s ease, padding 0.18s ease;
  -o-transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, transform 0.18s ease, background 0.18s ease, border-radius 0.18s ease, padding 0.18s ease;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, transform 0.18s ease, background 0.18s ease, border-radius 0.18s ease, padding 0.18s ease;
  transition: top 0.18s ease, font-size 0.18s ease, color 0.18s ease, transform 0.18s ease, background 0.18s ease, border-radius 0.18s ease, padding 0.18s ease, -webkit-transform 0.18s ease;
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input:focus-within label:not(.screen-reader-text),
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input:has(.woocommerce-input-wrapper input:not(:placeholder-shown)) label:not(.screen-reader-text),
body.woocommerce-account .intystore-customer-account-edit__fields .form-row.intystore-float-input:focus-within label:not(.screen-reader-text),
body.woocommerce-account .intystore-customer-account-edit__fields .form-row.intystore-float-input:has(.woocommerce-input-wrapper input:not(:placeholder-shown)) label:not(.screen-reader-text) {
  top: 0;
  -webkit-transform: translateY(-50%) scale(0.82);
      -ms-transform: translateY(-50%) scale(0.82);
          transform: translateY(-50%) scale(0.82);
  font-size: 0.875rem;
  color: #4399ff;
  background: #fff;
  border-radius: 12px;
  padding: 0 6px;
  opacity: 0.92;
}
/* WC может кратко подставить видимый placeholder до/после i18n — скрываем, плавающий лейбл несёт смысл */
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper .input-text::-webkit-input-placeholder {
  color: transparent;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper .input-text::-moz-placeholder {
  color: transparent;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper .input-text:-ms-input-placeholder {
  color: transparent;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row.intystore-float-input .woocommerce-input-wrapper .input-text::placeholder {
  color: transparent;
}
/* Страна / регион (`country_to_state`): лейбл всегда в «поднятом» виде, как `--always`-вариант. */
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) {
  position: relative;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) label:not(.screen-reader-text) {
  position: absolute;
  left: 18px;
  top: 0;
  z-index: 2;
  margin: 0;
  padding: 0 6px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  color: #4399ff;
  background: #fff;
  border-radius: 12px;
  pointer-events: none;
  -webkit-transform: translateY(-50%) scale(0.82);
      -ms-transform: translateY(-50%) scale(0.82);
          transform: translateY(-50%) scale(0.82);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  opacity: 0.92;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) .woocommerce-input-wrapper select,
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) .woocommerce-input-wrapper .select2-selection--single {
  height: 56px;
  min-height: 56px;
  padding: 14px 18px 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #0f172a;
  -webkit-box-shadow: none;
          box-shadow: none;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) .woocommerce-input-wrapper .select2-selection--single .select2-selection__rendered {
  line-height: 1.4;
  padding: 0;
  color: #0f172a;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) .woocommerce-input-wrapper .select2-selection--single .select2-selection__arrow {
  height: 56px;
  right: 8px;
}
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) .woocommerce-input-wrapper select:focus,
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) .woocommerce-input-wrapper .select2-container--focus .select2-selection--single,
body.woocommerce-account .intystore-customer-address-edit__fields .form-row:has(select.country_to_state) .woocommerce-input-wrapper .select2-container--open .select2-selection--single {
  border-color: #4399ff;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(67, 153, 255, 0.12);
          box-shadow: 0 0 0 3px rgba(67, 153, 255, 0.12);
}
@media (max-width: 991.98px) {
  body.woocommerce-account .intystore-customer-address-edit__fields {
    -ms-grid-columns: minmax(0, 1fr) 12px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
body.woocommerce-account .intystore-customer-address-edit__actions {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body.woocommerce-account .intystore-customer-address-edit__actions .btn {
  min-width: 0;
}

/* ЛК: просмотр заказа (`view-order.php`) — hero + карточки как у дашборда SM */
body.woocommerce-account .intystore-customer-view-order {
  max-width: 100%;
}
body.woocommerce-account .intystore-customer-view-order .intystore-sm-vendor-dash-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px 22px;
  -webkit-box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
          box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  border: 1px solid #e8edf3;
}
body.woocommerce-account .intystore-customer-view-order__hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
}
body.woocommerce-account .intystore-customer-view-order__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
body.woocommerce-account .intystore-customer-view-order__title {
  margin: 0 0 8px 0;
}
body.woocommerce-account .intystore-customer-view-order__notes {
  margin-bottom: 20px;
}
body.woocommerce-account .intystore-customer-view-order__notes-title {
  margin: 0 0 14px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}
body.woocommerce-account .intystore-customer-view-order__notes-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
body.woocommerce-account .intystore-customer-view-order__notes-list > li {
  margin: 0 0 12px 0;
  padding: 12px 14px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e8edf3;
}
body.woocommerce-account .intystore-customer-view-order__notes-list > li:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .intystore-customer-view-order__body.intystore-sm-vendor-dash-card .woocommerce-order-details,
body.woocommerce-account .intystore-customer-view-order__body.intystore-sm-vendor-dash-card .woocommerce-order-details * {
  max-width: 100%;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-order-details {
  margin: 0;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-order-details > *:first-child {
  margin-top: 0;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-order-details .woocommerce-order-details__title,
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-column__title {
  margin: 0 0 14px 0;
  padding-top: 4px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-order-details .woocommerce-order-details__title:not(:first-child),
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-column__title:not(:first-child) {
  margin-top: 22px;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-table--order-details,
body.woocommerce-account .intystore-customer-view-order__body table.shop_table.order_details {
  margin: 0 0 18px 0;
  border-collapse: separate;
  border-spacing: 0;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-table--order-details th,
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-table--order-details td,
body.woocommerce-account .intystore-customer-view-order__body table.shop_table.order_details th,
body.woocommerce-account .intystore-customer-view-order__body table.shop_table.order_details td {
  padding: 12px 14px;
  vertical-align: top;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-table--order-details thead th,
body.woocommerce-account .intystore-customer-view-order__body table.shop_table.order_details thead th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  border-bottom: 1px solid #e2e8f0;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-table--order-details tbody tr + tr th,
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-table--order-details tbody tr + tr td,
body.woocommerce-account .intystore-customer-view-order__body table.shop_table.order_details tbody tr + tr th,
body.woocommerce-account .intystore-customer-view-order__body table.shop_table.order_details tbody tr + tr td {
  border-top: 1px solid #f1f5f9;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-customer-details,
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-columns--addresses {
  margin: 18px 0 0 0;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-columns--addresses {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 20px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-column--billing-address address,
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-column--shipping-address address {
  margin: 0;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  font-style: normal;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #334155;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-order-downloads,
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-order-again {
  margin-top: 18px;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-order-again .button,
body.woocommerce-account .intystore-customer-view-order__body a.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  margin: 6px 8px 0 0;
  border-radius: 33px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 112%;
  text-decoration: none;
  border: 0;
  background: #fff;
  color: #4399FF;
  -webkit-box-shadow: 0 0 0 1px #4399ff inset;
          box-shadow: 0 0 0 1px #4399ff inset;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
body.woocommerce-account .intystore-customer-view-order__body .woocommerce-order-again .button:hover,
body.woocommerce-account .intystore-customer-view-order__body a.button:hover {
  background: #E8EDFF;
  color: #2656FF;
}
@media (max-width: 767.98px) {
  body.woocommerce-account .intystore-customer-view-order__body .woocommerce-columns--addresses {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: 1fr;
  }
}
body.woocommerce-account .intystore-customer-table-shell .woocommerce-button.button,
body.woocommerce-account .intystore-customer-table-shell a.woocommerce-button.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: auto;
  min-width: 0;
  height: 44px;
  min-height: 44px;
  padding: 0 14px;
  margin: 4px 6px 4px 0;
  border-radius: 33px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 112%;
  text-align: center;
  text-decoration: none;
  border: 0;
  background: #fff;
  color: #4399FF;
  -webkit-box-shadow: 0 0 0 1px #4399ff inset;
          box-shadow: 0 0 0 1px #4399ff inset;
  -webkit-transition: 0.8s all;
  -o-transition: 0.8s all;
  transition: 0.8s all;
}
body.woocommerce-account .intystore-customer-table-shell .woocommerce-button.button:hover,
body.woocommerce-account .intystore-customer-table-shell a.woocommerce-button.button:hover {
  background: #E8EDFF;
  color: #2656FF;
}
body.woocommerce-account .intystore-order-vendors {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
body.woocommerce-account .intystore-order-vendors__link {
  color: #2656ff;
  font-weight: 600;
  text-decoration: none;
}
body.woocommerce-account .intystore-order-vendors__link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  body.woocommerce-account .intystore-order-vendors {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    text-align: right;
  }
}

/* Карточка отзыва: аватар слева, один «пузырь» (шапка + текст), галочка верификации */
#reviews.intystore-product-reviews-wrap .commentlist .comment-item.comment_container {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}
#reviews.intystore-product-reviews-wrap .commentlist .comment-item--message-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
}
#reviews.intystore-product-reviews-wrap .commentlist .comment-item--avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 36px;
  height: 36px;
  margin-top: 4px;
  border-radius: 50%;
  overflow: hidden;
  background: #e8edf3;
}
#reviews.intystore-product-reviews-wrap .commentlist .comment-item--avatar img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#reviews.intystore-product-reviews-wrap .commentlist .comment-item--bubble {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  padding: 8px 12px 10px;
  background: #f1f5f9;
  border-radius: 14px 14px 14px 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
  color: #334155d4;
}
#reviews.intystore-product-reviews-wrap .commentlist .comment-item--bubble-head {
  margin: 0 0 4px 0;
  padding: 0;
}
#reviews.intystore-product-reviews-wrap .commentlist .comment-item--bubble-body {
  margin: 0;
  padding: 0;
}
#reviews.intystore-product-reviews-wrap .commentlist .comment-item--bubble-head .meta,
#reviews.intystore-product-reviews-wrap .commentlist .intystore-review__meta {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.2;
  color: #334155;
}
#reviews.intystore-product-reviews-wrap .commentlist .intystore-review__meta-main {
  min-width: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#reviews.intystore-product-reviews-wrap .commentlist .woocommerce-review__author {
  font-weight: 600;
  color: #0f172a;
  letter-spacing: -0.01em;
}
#reviews.intystore-product-reviews-wrap .commentlist .intystore-review__time {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #94a3b8;
  white-space: nowrap;
}
#reviews.intystore-product-reviews-wrap .commentlist .intystore-review__verified-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15px;
  height: 15px;
  margin: 0 0 0 1px;
  border-radius: 50%;
  background: #3897f0;
  -webkit-box-shadow: 0 0 0 1px rgba(56, 151, 240, 0.25);
          box-shadow: 0 0 0 1px rgba(56, 151, 240, 0.25);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
#reviews.intystore-product-reviews-wrap .commentlist .intystore-review__verified-badge svg {
  display: block;
  margin: 0 auto;
}
#reviews.intystore-product-reviews-wrap .commentlist .comment-item--bubble-body .description {
  margin: 0;
}
#reviews.intystore-product-reviews-wrap .commentlist .comment-item--bubble-body .star-rating {
  float: none;
  margin: 0 0 6px 0;
}

/* ЛК: «Профиль» (edit-account) — как у адресов */
body.woocommerce-account .intystore-customer-account-edit {
  max-width: 100%;
}
body.woocommerce-account .intystore-customer-account-edit__head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
}
body.woocommerce-account .intystore-customer-account-edit__title {
  margin-top: 0;
  margin-bottom: 8px;
  text-align: left;
}
body.woocommerce-account .intystore-customer-account-edit__lead {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #64748b;
  max-width: 720px;
}
body.woocommerce-account .intystore-customer-account-edit__sections {
  display: -ms-grid;
  display: grid;
  gap: 16px;
}
body.woocommerce-account .intystore-customer-account-edit__section {
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 18px 18px 20px;
  background: #f8fafc;
}
body.woocommerce-account .intystore-customer-account-edit__section-head {
  margin-bottom: 16px;
}
body.woocommerce-account .intystore-customer-account-edit__section-head h3 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0f172a;
}
body.woocommerce-account .intystore-customer-account-edit__section-head p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
}
body.woocommerce-account .intystore-customer-account-edit__fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}
body.woocommerce-account .intystore-customer-account-edit__fields .form-row {
  position: relative;
  float: none;
  width: auto;
}
body.woocommerce-account .intystore-customer-account-edit__fields .form-row-wide {
  grid-column: 1 / -1;
}
body.woocommerce-account .intystore-customer-account-edit__fields--security {
  -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 16px;
}
body.woocommerce-account .intystore-customer-account-edit__fields--security .form-row-wide {
  grid-column: auto;
}
body.woocommerce-account .intystore-customer-account-edit__fields--security .form-row {
  margin: 0;
}
body.woocommerce-account .intystore-customer-account-edit__fields--security label {
  display: block;
  margin: 0 0 8px 0;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  color: #334155;
}
body.woocommerce-account .intystore-customer-account-edit__fields--security .password-input {
  display: block;
  position: relative;
  width: 100%;
}
body.woocommerce-account .intystore-customer-account-edit__fields--security .password-input .input-text {
  width: 100%;
  min-height: 48px;
  padding-right: 96px;
  border-radius: 15px;
  background: #fff;
}
@media (max-width: 991.98px) {
  body.woocommerce-account .intystore-customer-account-edit__fields--security {
    -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 575.98px) {
  body.woocommerce-account .intystore-customer-account-edit__fields,
  body.woocommerce-account .intystore-customer-account-edit__fields--security {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: 1fr;
  }
  body.woocommerce-account .intystore-customer-account-edit__fields .form-row-wide,
  body.woocommerce-account .intystore-customer-account-edit__fields--security .form-row-wide {
    grid-column: 1 / -1;
  }
}
body.woocommerce-account .intystore-customer-account-edit__hint {
  display: block;
  margin-top: 8px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}
body.woocommerce-account .intystore-customer-account-edit__actions {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
body.woocommerce-account .intystore-customer-account-edit__actions .btn {
  min-width: 0;
}
/* Адреса: сетка списка без legacy `u-column*` / `col-*` из WooCommerce */
body.woocommerce-account .intystore-customer-addresses__grid.woocommerce-Addresses {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  margin-bottom: 8px;
  width: 100%;
}
body.woocommerce-account .intystore-customer-addresses__grid .woocommerce-Address {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0;
}
body.woocommerce-account .woocommerce-Addresses .woocommerce-Address,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
          box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
body.woocommerce-account .intystore-customer-addresses__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body.woocommerce-account .intystore-customer-addresses__card-head {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
body.woocommerce-account .intystore-customer-addresses__card.is-missing {
  border-color: #fed7aa;
  background: #fffaf5;
}
body.woocommerce-account .woocommerce-Address-title.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 16px 0;
}
body.woocommerce-account .intystore-customer-addresses__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  min-width: 0;
}
body.woocommerce-account .intystore-customer-addresses__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: -o-linear-gradient(305deg, #eef2ff, #e0e7ff);
  background: linear-gradient(145deg, #eef2ff, #e0e7ff);
  position: relative;
}
body.woocommerce-account .intystore-customer-addresses__icon::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 14px;
  height: 18px;
  border: 2px solid #2656ff;
  border-radius: 8px 8px 10px 10px;
}
body.woocommerce-account .intystore-customer-addresses__icon::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 15px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #2656ff;
}
body.woocommerce-account .woocommerce-Address-title.title h2,
body.woocommerce-account .woocommerce-Address-title.title h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}
body.woocommerce-account .intystore-customer-addresses__card-title p {
  margin: 6px 0 0 0;
  max-width: 420px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #64748b;
}
body.woocommerce-account .intystore-customer-addresses__state {
  margin-bottom: 6px;
  color: #94a3b8;
}
body.woocommerce-account .intystore-customer-addresses__card.is-complete .intystore-customer-addresses__state {
  color: #16a34a;
}
body.woocommerce-account .intystore-customer-addresses__card.is-missing .intystore-customer-addresses__state {
  color: #ea580c;
}
body.woocommerce-account .woocommerce-Address-title.title .edit {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2656ff;
  text-decoration: none;
}
body.woocommerce-account .woocommerce-Address-title.title .intystore-customer-addresses__action {
  color: #2656ff;
  margin: 0;
  white-space: nowrap;
}
body.woocommerce-account .woocommerce-Address-title.title .edit:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
body.woocommerce-account .woocommerce-Address-title.title .intystore-customer-addresses__action:hover {
  color: #1d4ed8;
  text-decoration: none;
}
body.woocommerce-account .woocommerce-Address address {
  font-style: normal;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
}
body.woocommerce-account .woocommerce-Address address.is-empty {
  color: #94a3b8;
}
body.woocommerce-account .intystore-customer-addresses__card-actions {
  margin-top: auto;
  padding-top: 18px;
}
/* Заметки к заказу (view-order) */
body.woocommerce-account .woocommerce-OrderUpdates {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
}
body.woocommerce-account .woocommerce-OrderUpdate-inner {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
  -webkit-box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
          box-shadow: 0 1px 4px rgba(15, 23, 42, 0.04);
}
body.woocommerce-account .woocommerce-OrderUpdate-meta {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0 0 8px 0;
}
/* Редактирование адреса — «карточка» полей как у SM product-card */
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
          box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 24px;
  -webkit-box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
          box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}
@media (max-width: 575.98px) {
  body.woocommerce-account .intystore-customer-addresses__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 18px;
  }
  body.woocommerce-account .intystore-customer-addresses__summary {
    width: 100%;
  }
  body.woocommerce-account .intystore-customer-addresses__grid.woocommerce-Addresses,
  body.woocommerce-account .intystore-customer-address-edit__fields,
  body.woocommerce-account .intystore-customer-account-edit__fields {
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
  }
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields,
  body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm {
    padding: 18px;
  }
  body.woocommerce-account .intystore-customer-address-edit__actions,
  body.woocommerce-account .intystore-customer-account-edit__actions {
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button,
  body.woocommerce-account .woocommerce-MyAccount-content button.button,
  body.woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button,
  body.woocommerce-account .woocommerce-MyAccount-content a.button {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    margin-left: 0;
  }
  body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination .woocommerce-button {
    width: auto;
  }
}

/* ---------------------------------------- footer ---------------------------------------- */
.footer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 100px;
}
.footer__menu ul {
  list-style: none;
  font-size: 0;
}
.footer__menu li {
  display: inline-block;
  font-size: 1rem;
  line-height: 125%;
  letter-spacing: -0.02em;
  color: #7B7B7B;
}
.footer__menu li:not(:last-of-type) {
  margin-right: 20px;
}
.footer__menu li a {
  color: #7B7B7B;
}
.footer__inty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #7B7B7B;
}
.footer__inty img {
  margin: 0 10px;
}


.bottom-write > div {
  width: 100%;
}
.anycomment-app .anycomment-summary {
  display: none;
}


.modalPost-loader {
  -webkit-animation: rotate 2s linear infinite;
  animation: rotate 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px 0 0 -25px;
  width: 50px;
  height: 50px;
}
.modalPost-loader .path {
  stroke: #2F6AFF;
  stroke-linecap: round;
  -webkit-animation: dash 1.5s ease-in-out infinite;
  animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}


.entry-content {
  padding-top: 48px;
}

.mfp-bg {
  z-index: 1064 !important;
}
.mfp-wrap {
  z-index: 1065 !important;
}
.mfp-container {
  z-index: 1066 !important;
}
.mfp-content {
  z-index: 1067 !important;
}

body.single-product .wlt-product-likes-button svg._wcpl_heart {
  width: unset !important;
  height: unset !important;
  border-radius: unset !important;
  border: unset !important;
  box-shadow: unset !important;
  background: unset !important;
  padding: unset !important;
}
.wlt-product-likes-product {
  margin: 0 12px 0 0 !important;
  position: relative !important;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem !important;
  font-weight: 600;
  color: #B5BED1;
}
.wlt-product-likes-product .wlt-product-likes-liked {
  font-size: inherit !important;
}
span.wlt-product-likes-button.unlike path.wcpl_heart {
  fill: #F86BB7;
  stroke: #F86BB7;
}



.white-popup {
  box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
}
.ld-ext-left.running {
  padding-left: unset !important;
}

.dokan-support-login-wrapper {
  padding: 20px 40px !important;
}

.widget_dokna_product_search {
  width: 100%;
}
.ajaxsearchform-dokan .input-group {
  display: flex;
  flex-wrap: unset;
  flex-direction: row;
  align-items: center;
}

.dgwt-wcas-ico-magnifier {
  display: none;
}
.dgwt-wcas-search-wrapp {
  max-width: unset !important;
  min-width: unset !important;
}


/* ---------------------------------------- prices ---------------------------------------- */
.content-price .woocommerce-Price-amount {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
  color: #4399FF;
  padding-left: 4px;
  padding-right: 6px;
  position: relative;
  background-color: #fff;
  /*margin: 30px 0 0 0;*/
}
.content-price del .woocommerce-Price-amount {
  position: relative;
  font-size: 1rem;
  font-weight: 400;
  color: #000;
  /*margin-right: 8px;*/
}
.content-price del .woocommerce-Price-amount:before {
  content: '';
  border-bottom: 2px solid #4399FF;
  position: absolute;
  top: 9px;
  left: 3px;
  width: 100%;
}

.cart__table .woocommerce-Price-amount {
  display: inline-block;
  font-size: 1rem;
  font-weight: 500;
  color: #4399FF;
}

.cart__checkout .woocommerce-Price-amount {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 24px;
}




.dokan-product-short-description {
  display: none;
}

.dokan-form-group #post-excerpt {
  display: none;
}

.modal.modal-single {
  display: unset;
  position: relative;
  z-index: 8;
}
.modal.modal-single.modal-store-page {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}
.modal.modal-single.modal-store-page.show {
  display: block;
}
.modal.modal-single.modal-store-page .modalPost-dialog {
  margin: 2rem auto;
}
.modal-open.modal-single {
  position: relative;
  overflow: unset;
  width: 100%;
  margin-bottom: 80px;
}

.modal-single .button21 {
  display: none;
}
.modal-single .cart {
  display: none;
}
.modal-single .modalPost-dialog {
  margin: 0 auto;
}
.modal-single .modalPost-window {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.single-product.profile__content {
  margin: 0 auto;
  max-width: 1256px;
  padding: unset;
}
.single-product .profile__content-posts .post__item {
  aspect-ratio: 1;
  height: unset;
}
.single-product .single-product-vendor-link {
  display: block;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 112%;
  margin: 20px 0;
  padding: 10px;
  color: #ffffff;
  background-color: #A167CC;
  transition: .8s all;
  border-radius: 5px;
}
.single-product .single-product-vendor-link:hover {
  background-color: #9141CD;
  text-decoration: none;
}



.wc-block-product-categories-list--depth-0 {
  color: #212529;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
}
.wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item > a {
  display: block;
  width: 100%;
  padding: 8px 10px;
  clear: both;
  font-weight: 500;
  color: #A3A7AB;
  text-align: inherit;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  background-color: transparent;
  border: 0;
  overflow: hidden;
}
.wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item > a:hover, .wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item > a:focus {
  color: #ffffff;
  text-decoration: none;
  background-color: #4399FF;
}

.wc-block-product-categories-list--depth-1 {
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: #fff;
  padding: 10px 16px;
  width: 862px;
  min-width: 600px;
  height: 100%;
  min-height: 420px;
  overflow-y: auto;
  z-index: 1003;
  grid-template-columns: repeat(3, 1fr);
  /*grid-template-rows: 1fr;*/
  grid-template-rows: 0fr;
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.wc-block-product-categories-list--depth-1 > .wc-block-product-categories-list-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  width: 100%;
}
.wc-block-product-categories-list--depth-1 > .wc-block-product-categories-list-item:not(:last-of-type) {
  margin-bottom: 24px;
}
.wc-block-product-categories-list--depth-1 > .wc-block-product-categories-list-item > a:first-child {
  display: block;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 500;
  color: #4399FF;
  background-color: #F6F7FF;
  padding: 8px 11px;
  margin-bottom: 0.5rem;
  width: 100%;
}

.wc-block-product-categories-list--depth-2 {
  list-style: none;
}
.wc-block-product-categories-list--depth-2 .wc-block-product-categories-list-item a {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #7B7B7B;
  padding: 4px 11px;
}


.button.loading {
  position: relative;
  color: #4399FF;
}
.button.loading:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transform-origin: center center;
  color: #fff;
  margin: auto;
  width: 100%;
  height: 100%;
  width: 14px;
  height: 14px;
  display: inline-block;
  background: center center no-repeat;
  background-size: cover;
  border-radius: 50%;
  border: .2em solid;
  -webkit-background-clip: padding-box;
  border-color: currentColor currentColor currentColor transparent;
  -webkit-transition: all .3s;
  transition: all .3s;
  transition-timing-function: ease-in;
  -webkit-animation: rotate 1s infinite linear;
  animation: rotate 1s infinite linear;
}


/* ---------------------------------------- woocommerce notices ---------------------------------------- */
.woocommerce-notices-wrapper {
  margin-bottom: 0px;
}
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
  background-color: transparent !important;
  border: 1px #eff0f6 solid;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 8px 23px 0px rgba(34, 60, 80, 0.04);
  list-style: none;
}
.woocommerce-message {
  color: #4fc890;
}
.woocommerce-error {
  color: #c84f4f;
}
.woocommerce-NoticeGroup .woocommerce-NoticeGroup-checkout {
  margin-bottom: 40px;
}


/* ---------------------------------------- side cart woocommerce ---------------------------------------- */
.xoo-wsc-header {
  padding: 10px 20px 10px 20px;
  background: linear-gradient(90deg, #A761CB 3.71%, #FCC8A8 100%);
  position: relative;
}
.xoo-wsch-top {
  justify-content: flex-start;
}
.xoo-wscb-count {
  position: relative;
  line-height: unset;
  text-align: unset;
}
.xoo-wsch-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 24px;
  color: #FFFFFF;
}
span.xoo-wsch-text {
  margin-left: unset;
}
span.xoo-wsch-close {
  font-size: 26px;
  right: unset;
  left: -40px;
  width: 22px;
  height: 22px;
  display: none;
}
span.xoo-wsch-close:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background: url('../img/icons/icon_side-cart_cross.svg') center / cover no-repeat;
}
.xoo-wsc-product {
  padding: 10px 6px;
}
.xoo-wsc-img-col {
  width: 90px;
}
.xoo-wsc-sum-col {
  padding-left: 10px;
}
span.xoo-wsc-pname, span.xoo-wsc-pname a {
  font-size: 0.875rem;
  line-height: 14px;
  font-weight: 400;
  letter-spacing: -0.01em;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.xoo-wsc-sm-left > :not(:last-child) {
  padding-bottom: 2px;
}
.xoo-wsc-product dl.variation dd, .xoo-wsc-product dl.variation dt {
  font-style: normal;
}
.xoo-wsc-qty-price {
  font-size: 0.875rem;
  margin-top: 6px;
}
.xoo-wsc-qty-price span:last-of-type > span {
  color: #4399FF;
}
.xoo-wsc-body, .xoo-wsc-body span.amount, .xoo-wsc-body a {
  font-size: 0.875rem;
}
.xoo-wsc-sm-right {
  max-width: 20px;
}
span.xoo-wsc-smr-del {
  margin-top: 0;
  width: 20px;
  height: 20px;
  background-color: #F1F2F8;
  transition: .8s all;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
span.xoo-wsc-smr-del svg rect {
  fill: #B572C4;
  transition: .8s all;
}
span.xoo-wsc-smr-del:hover {
  background-color: #B572C4;
}
span.xoo-wsc-smr-del:hover svg rect {
  fill: #ffffff;
}
.xoo-wsc-footer, .xoo-wsc-footer a, .xoo-wsc-footer .amount {
  font-size: unset;
}
.xoo-wsc-footer {
  padding: 10px 6px;
}
.xoo-wsc-ft-totals {
  font-size: 1rem;
  border-bottom: 1px solid #eee;
}
span.xoo-wsc-ft-amt-label {
  font-weight: 500;
}
.xoo-wsc-ft-amt-value {
  color: #4E6AFF;
}
.xoo-wsc-ft-buttons-cont {
  padding: 25px 0 25px 0;
}
a.xoo-wsc-ft-btn {
  align-self: center;
  justify-self: center;
}
.xoo-wsc-ft-btn-continue {
  font-size: 1rem;
  line-height: 112%;
  color: #4399FF;
  border-radius: 33px;
  border: 0;
  padding: 11px 20px 11px 20px;
  width: 100%;
  max-width: 250px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1px #4399ff inset;
          box-shadow: 0 0 0 1px #4399ff inset;
}
.xoo-wsc-ft-btn-continue:hover {
  font-weight: 500;
  color: #2656FF;
  background-color: #E8EDFF;
}
.xoo-wsc-ft-btn-cart {
  font-size: 1rem;
  line-height: 112%;
  color: #fff;
  border-radius: 33px;
  border: 0;
  padding: 11px 20px 11px 20px;
  width: 100%;
  max-width: 250px;
  background: linear-gradient(90.22deg, #A660CA 5.12%, #F4BFAA 91.88%);
  margin-bottom: 40px;
}
.xoo-wsc-ft-btn-cart:hover {
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}
.xoo-wsc-ft-btn-checkout {
  font-size: 1rem;
  line-height: 112%;
  color: #ffffff;
  border-radius: 33px;
  border: 0;
  padding: 11px 20px 11px 20px;
  width: 100%;
  max-width: 250px;
  background-color: #4399FF;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
  position: relative;
}
.xoo-wsc-ft-btn-checkout:before {
  content: '';
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 338px;
  height: 1px;
  background-color: #eee;
}
.xoo-wsc-ft-btn-checkout:hover {
  color: #ffffff;
  background-color: #2656FF;
}
.xoo-wsc-cart-active span.xoo-wsch-close {
  display: block;
}

/* CUSTOM RSR CSS */
.woocommerce-result-count{display: none;} /* 07.01.2023 */
.payment_method_tinkoff img {width: 130px;} /* 12.01.2023 */
.woocommerce-MyAccount-navigation {width: auto; float: left;} /* 13.01.2023 */
.woocommerce-MyAccount-navigation ul li{list-style: none;}
.woocommerce-MyAccount-content{width: auto;    display: flow-root;clear: right;margin-left: 20%;}
.woocommerce-MyAccount-content label {display: block;margin-bottom: 0.5rem;}
.woocommerce-MyAccount-content p {margin-bottom: 10px;margin-right: 20px;display: inline-block; }
.woocommerce-MyAccount-content fieldset{margin-top:30px;}
.dokan-account-migration-lists{border: none !important}
.dokan-btn {background: -webkit-gradient(linear, left top, right top, from(#AB66C9), to(#EFB9AD))  !important;
background: -o-linear-gradient(left, #AB66C9 0%, #EFB9AD 100%) !important;
background: linear-gradient(90deg, #AB66C9 0%, #EFB9AD 100%) !important;
margin-bottom: 10px !important;
padding: 12px 15px !important;
border: none !important;
margin-top: 20px;}
.woocommerce-MyAccount-orders{width: 80%;}
.woocommerce-MyAccount-orders thead{height: 50px;}
#billing_state{display:none}
#billing_city{display:none}
.price_product_list .woocommerce-Price-amount{position: absolute;
    z-index: 3;
    background: -webkit-gradient(linear, left top, right top, from(#AB66C9), to(#EFB9AD)) !important;
    background: -o-linear-gradient(left, #AB66C9 0%, #EFB9AD 100%) !important;
    background: linear-gradient(90deg, #AB66C9 0%, #EFB9AD 100%) !important;
    margin-bottom: 10px !important;
    padding: 5px 10px !important;
    border: none !important;
    margin-top: 0px;
    border-radius: 0px 0px 10px 0px;
color:#fff;
font-weight:600;}
h1.woocommerce-products-header__title {margin-bottom: 40px;}
.delivery_ a:hover{text-decoration:none}
.none{display:none}
.modalProduct-order.delivery-club {color: #ffffff;background-color: #0DC646;}
.modalProduct-order.delivery-club:hover {color: #ffffff;background-color: #05a536;}
.modalProduct-order {margin-bottom: 26px;}
.modalProduct-order {display: -webkit-box;display: -ms-flexbox;display: flex;-webkit-box-orient: horizontal;-webkit-box-direction: normal;-ms-flex-direction: row;flex-direction: row;-webkit-box-align: center;-ms-flex-align: center;align-items: center;-webkit-box-pack: justify;-ms-flex-pack: justify;justify-content: space-between;position: relative;width: 100%;max-width: 438px;height: 54px;padding: 0 20px 0 0;border-radius: 8px;font-size: 1rem;font-weight: 500;line-height: 109%;overflow: hidden;-webkit-transition: 0.8s all;-o-transition: 0.8s all;transition: 0.8s all;cursor: pointer;}
.modalProduct-order.delivery-club img {max-width: 110px;}
.modalProduct-order.yandex-food {color: #030303;background-color: #FFD800;margin-bottom: 6px;}
.modalProduct-order.yandex-food img {max-width: 110px;}
.modalProduct-order.yandex-food:hover {background-color: #ffae00;}

@media (max-width: 767px){
.price_product_list .woocommerce-Price-amount{position: absolute;z-index: 3;background: -webkit-gradient(linear, left top, right top, from(#AB66C9), to(#EFB9AD)) !important;background: -o-linear-gradient(left, #AB66C9 0%, #EFB9AD 100%) !important;background: linear-gradient(90deg, #AB66C9 0%, #EFB9AD 100%) !important;margin-bottom: 10px !important;padding: 5px 7px !important;border: none !important;margin-top: 0px;border-radius: 0px 0px 10px 0px;color:#fff;font-weight:600;font-size: 0.7rem;}
.delivery_ {margin-top: 20px;}
}
#billing_address_1 {display:none}

/* Карточка товара: форма отзыва / сообщение — одна полоска (WC reviews, токены SM). */
.intystore-product-reviews-wrap {
  margin-top: 24px;
}
.intystore-product-review-compose.intystore-product-chat-compose,
#respond.comment-respond.intystore-product-chat-compose {
  margin-top: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.intystore-product-review-compose form.intystore-product-chat-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin: 0;
}
.intystore-product-review-compose form.intystore-product-chat-form .comment-form-rating {
  margin: 0;
}
/* Одна визуальная «пилюля»: поле + кнопка справа */
.intystore-product-chat-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  padding: 4px 6px 4px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  -webkit-box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
          box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.intystore-product-chat-bar__field-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  margin: 0;
}
.intystore-product-review-compose .intystore-product-chat-bar__input,
.intystore-product-chat-bar .intystore-product-chat-bar__input {
  display: block;
  width: 100%;
  min-height: 38px;
  max-height: 120px;
  margin: 0;
  padding: 8px 4px 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #0f172a;
  resize: none;
  overflow-y: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.2s ease;
  transition: -webkit-box-shadow 0.2s ease;
  -o-transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease;
  transition: box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.intystore-product-review-compose .intystore-product-chat-bar__input::-webkit-input-placeholder,
.intystore-product-chat-bar .intystore-product-chat-bar__input::-webkit-input-placeholder {
  color: #94a3b8;
}
.intystore-product-review-compose .intystore-product-chat-bar__input::-moz-placeholder,
.intystore-product-chat-bar .intystore-product-chat-bar__input::-moz-placeholder {
  color: #94a3b8;
}
.intystore-product-review-compose .intystore-product-chat-bar__input:-ms-input-placeholder,
.intystore-product-chat-bar .intystore-product-chat-bar__input:-ms-input-placeholder {
  color: #94a3b8;
}
.intystore-product-review-compose .intystore-product-chat-bar__input::-ms-input-placeholder,
.intystore-product-chat-bar .intystore-product-chat-bar__input::-ms-input-placeholder {
  color: #94a3b8;
}
.intystore-product-review-compose .intystore-product-chat-bar__input::placeholder,
.intystore-product-chat-bar .intystore-product-chat-bar__input::placeholder {
  color: #94a3b8;
}
.intystore-product-review-compose .intystore-product-chat-bar__input:focus,
.intystore-product-chat-bar .intystore-product-chat-bar__input:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px rgba(67, 153, 255, 0.25);
          box-shadow: 0 0 0 2px rgba(67, 153, 255, 0.25);
}
.intystore-product-review-compose form.intystore-product-chat-form .form-submit {
  height: 44px;
  margin: 0 !important;
  padding: 0;
  float: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.intystore-product-review-compose form.intystore-product-chat-form .form-submit .submit {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #f1f5f9;
  background-image: none;
  color: inherit;
  font-size: 0;
  font-weight: 600;
  line-height: 0;
  overflow: visible;
  cursor: not-allowed;
  opacity: 0.9;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
  font-family: inherit;
  -webkit-transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, -webkit-transform 0.15s ease;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, -webkit-transform 0.15s ease;
  -o-transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}
/* Иконка на псевдоэлементе кнопки (не внутри DOM) — стабильно при disabled/enabled. */
.intystore-product-review-compose form.intystore-product-chat-form .form-submit .submit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 22px;
  height: 22px;
  margin: 0;
  padding: 0;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #94a3b8;
  -webkit-mask-image: url("../img/icons/icon_send.svg");
          mask-image: url("../img/icons/icon_send.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  pointer-events: none;
}
.intystore-product-review-compose form.intystore-product-chat-form .form-submit .submit.intystore-product-chat-submit--ready:not(:disabled)::before {
  background-color: #ffffff;
}
.intystore-product-review-compose form.intystore-product-chat-form .form-submit .submit.intystore-product-chat-submit--ready:not(:disabled) {
  border-color: transparent;
  background: -webkit-gradient(linear, left top, right bottom, from(#4399ff), to(#2656ff));
  background: -o-linear-gradient(left top, #4399ff 0%, #2656ff 100%);
  background: linear-gradient(135deg, #4399ff 0%, #2656ff 100%);
  color: #ffffff;
  cursor: pointer;
  opacity: 1;
  -webkit-box-shadow: 0 2px 8px rgba(38, 86, 255, 0.22);
          box-shadow: 0 2px 8px rgba(38, 86, 255, 0.22);
}
.intystore-product-review-compose form.intystore-product-chat-form .form-submit .submit.intystore-product-chat-submit--ready:not(:disabled):hover {
  opacity: 0.95;
  -webkit-box-shadow: 0 3px 12px rgba(38, 86, 255, 0.28);
          box-shadow: 0 3px 12px rgba(38, 86, 255, 0.28);
}
.intystore-product-review-compose form.intystore-product-chat-form .form-submit .submit.intystore-product-chat-submit--ready:not(:disabled):active {
  -webkit-transform: scale(0.98);
      -ms-transform: scale(0.98);
          transform: scale(0.98);
}

/* Модалка товара: лайк + счётчик комментариев в одну линию (SM / .cursor/frontend). */
.modal-store-page .intystore-modal-product-actions,
.modal-single .intystore-modal-product-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-top: 4px;
}
.modal-store-page .intystore-modal-product-actions__like,
.modal-store-page .intystore-modal-product-actions__like .wlt-product-likes-product,
.modal-single .intystore-modal-product-actions__like,
.modal-single .intystore-modal-product-actions__like .wlt-product-likes-product {
  position: relative;
  left: auto;
  right: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-store-page .wlt-product-likes-product,
.modal-single .wlt-product-likes-product {
  position: relative !important;
  right: auto !important;
  left: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}
.modal-store-page .wlt-product-likes-liked,
.modal-single .wlt-product-likes-liked {
  margin-left: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  vertical-align: middle;
}

/* Нативные лайки (без плагина WLT). */
.intystore-native-like {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  color: #64748b;
}
.intystore-native-like__path {
  -webkit-transition: fill 0.2s ease, stroke 0.2s ease;
  -o-transition: fill 0.2s ease, stroke 0.2s ease;
  transition: fill 0.2s ease, stroke 0.2s ease;
}
.intystore-native-like--on .intystore-native-like__path {
  fill: #f86bb7;
  stroke: #f86bb7;
}
.intystore-native-like svg {
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 5px;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}
.intystore-native-like__count {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  min-width: 1em;
  text-align: left;
}
.intystore-sm-store-feed-post {
  position: relative;
}
.intystore-sm-store-feed-post__actions {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
          box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
}
.intystore-sm-store-feed-post__actions .intystore-native-like {
  gap: 5px;
}
.intystore-sm-store-feed-post__actions .intystore-native-like svg {
  width: 24px;
  height: 24px;
  padding: 4px;
}
@media (max-width: 575.98px) {
  .intystore-sm-store-feed-post__actions {
    right: 8px;
    bottom: 8px;
    padding: 5px 7px;
  }
  .intystore-sm-store-feed-post__actions .intystore-native-like__count {
    font-size: 0.8125rem;
  }
}

.intystore-product-feed__actions {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 4;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
          box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  pointer-events: auto;
}
.intystore-product-feed__actions .intystore-native-like {
  gap: 5px;
}
.intystore-product-feed__actions .intystore-native-like svg {
  width: 22px;
  height: 22px;
  padding: 2px;
}
.intystore-product-feed__actions .intystore-native-like__count {
  font-size: 0.8125rem;
}
@media (max-width: 575.98px) {
  .intystore-product-feed__actions {
    right: 8px;
    bottom: 8px;
    padding: 3px 7px;
  }
}

/* Универсальный плавающий лейбл для дашборда продавца и форм проекта,
   не привязан к body.woocommerce-account; работает с .input-control. */
.intystore-float-input {
  position: relative;
  margin-bottom: 0;
}
.intystore-float-input > .input-control,
.intystore-float-input > select.input-control,
.intystore-float-input > textarea.input-control {
  height: 56px;
  min-height: 56px;

  border-radius: 14px;
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #0f172a;
  background-color: #fff;
}
.intystore-float-input > textarea.input-control {
  height: auto;
  min-height: 96px;
  padding-top: 26px;
}
.intystore-float-input > label {
  position: absolute;
  left: 18px;
  top: 50%;
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.2;
  color: #94a3b8;
  pointer-events: none;
  background: transparent;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease;
  -o-transition: top 0.15s ease, transform 0.15s ease, font-size 0.15s ease, color 0.15s ease, background 0.15s ease;
  transition: top 0.15s ease, transform 0.15s ease, font-size 0.15s ease, color 0.15s ease, background 0.15s ease;
  transition: top 0.15s ease, transform 0.15s ease, font-size 0.15s ease, color 0.15s ease, background 0.15s ease, -webkit-transform 0.15s ease;
  padding: 0 4px;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.intystore-float-input > .input-control:focus,
.intystore-float-input > .input-control:not(:placeholder-shown) {
  border: 1px solid #4399ff;
  outline: none;
  background-image: none;
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 3px rgba(67, 153, 255, 0.12);
          box-shadow: 0 0 0 3px rgba(67, 153, 255, 0.12);
}
.intystore-float-input > .input-control:focus + label,
.intystore-float-input > .input-control:not(:placeholder-shown) + label,
.intystore-float-input > select.input-control + label,
.intystore-float-input > input[type="date"].input-control + label,
.intystore-float-input > input[type="time"].input-control + label,
.intystore-float-input > input[type="month"].input-control + label,
.intystore-float-input > input[type="week"].input-control + label,
.intystore-float-input.intystore-float-input--always > label {
  top: 0;
  -webkit-transform: translateY(-50%) scale(0.82);
      -ms-transform: translateY(-50%) scale(0.82);
          transform: translateY(-50%) scale(0.82);
  font-size: 0.875rem;
  color: #4399ff;
  background: #fff;
  border-radius: 12px;
  padding: 0 6px;
  opacity: 0.92;
}
.intystore-float-input > .input-control::-webkit-input-placeholder {
  color: transparent;
}
.intystore-float-input > .input-control::-moz-placeholder {
  color: transparent;
}
.intystore-float-input > .input-control:-ms-input-placeholder {
  color: transparent;
}
.intystore-float-input > .input-control::-ms-input-placeholder {
  color: transparent;
}
.intystore-float-input > .input-control::placeholder {
  color: transparent;
}
.intystore-float-input > .form-text,
.intystore-float-input > .text-muted {
  margin-top: 6px;
  font-size: 0.78rem;
  color: #64748b;
}
.modal-store-page .intystore-modal-product-actions__comments,
.modal-single .intystore-modal-product-actions__comments {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
}
.modal-store-page .intystore-modal-product-actions__comments svg,
.modal-single .intystore-modal-product-actions__comments svg {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.modal-store-page .intystore-modal-product-actions__count,
.modal-single .intystore-modal-product-actions__count {
  min-width: 1.1em;
  text-align: left;
  color: #0f172a;
}

/* Модалка: отзывы / сообщение — без второй «коробки» и без absolute у старого .bottom-write .submit */
.modalPost-bottom {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid #e8edf3;
}
.modalPost-bottom .intystore-product-reviews-wrap {
  margin-top: 0;
}
.modalPost-bottom .intystore-product-chat-compose {
  margin-top: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}
.modalPost-bottom .intystore-product-chat-compose:before,
.modalPost-bottom .intystore-product-chat-compose:after {
  display: none !important;
  content: none !important;
}
.modalPost-bottom .intystore-product-chat-compose.bottom-write {
  display: block !important;
  width: 100% !important;
  background: transparent !important;
  padding: 0 !important;
}
.modalPost-bottom .intystore-product-chat-compose.bottom-write:before,
.modalPost-bottom .intystore-product-chat-compose.bottom-write:after {
  display: none !important;
  content: none !important;
}
.modalPost-bottom .comment-respond {
  margin: 0;
  padding: 0;
}
.modalPost-bottom .comment-respond > small {
  display: block;
  margin-bottom: 6px;
}
.modalPost-bottom #commentform.intystore-product-chat-form {
  margin: 0;
}
.modalPost-bottom .bottom-write .intystore-product-chat-bar .form-submit {
  height: 44px;
}
.modalPost-bottom .bottom-write .intystore-product-chat-bar .intystore-product-chat-bar__input.form-control {
  position: static;
  height: auto;
  padding: 8px 4px 8px 0 !important;
  background: transparent !important;
}
/* У кнопки должен остаться position: relative — иначе .intystore-product-chat-submit__icon (absolute) уезжает и «пропадает». */
.modalPost-bottom .bottom-write .intystore-product-chat-bar .form-submit .submit {
  position: relative !important;
  bottom: auto !important;
  right: auto !important;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
}

/* Главная: индикатор подгрузки ленты товаров */
.main__products-feed-sentinel {
  list-style: none;
  width: 100%;
  height: 1px;
  flex-basis: 100%;
  margin: 0;
  padding: 0;
  pointer-events: none;
}