.tap-catalog {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 24px;
}
.tap-catalog__trigger {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  border-radius: 12px;
  background: #fe3650 !important;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 0 20px;
  height: 48px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tap-catalog__trigger:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 3px;
}
.tap-catalog__trigger:hover {
  background: #e02e46;
}
.tap-catalog__trigger.active {
  background: #fe3650 !important;
}
.tap-catalog__icon {
  width: 20px;
  height: 20px;
  background: url("../svg/remove.svg") center no-repeat;
  background-size: 16px 16px;
  display: inline-flex;
  filter: brightness(0) invert(1);
}
.tap-catalog__label {
  white-space: nowrap;
}
.tap-catalog--mobile {
  margin-left: 0;
}
@media (max-width: 1024px) {
  .tap-catalog {
    margin-left: 12px;
  }
}
@media (max-width: 768px) {
  .tap-catalog__trigger {
    height: 44px;
    padding: 0 16px;
  }
}
@media (max-width: 600px) {
  .tap-catalog__label {
    display: none;
  }
  .tap-catalog__trigger {
    padding: 0 12px;
  }
}
.menu-category {
  position: relative;
}
.menu-category_content {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  display: none;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(18, 26, 38, 0.12);
  width: min(960px, calc(100vw - 48px));
  z-index: 60;
}
.menu-category_content.show {
  display: block;
}
@media (max-width: 1280px) {
  .menu-category_content {
    width: min(820px, calc(100vw - 48px));
  }
}
@media (max-width: 960px) {
  .menu-category_content {
    width: calc(100vw - 48px);
  }
}
@media (max-width: 640px) {
  .menu-category_content {
    position: fixed;
    top: 72px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    min-width: auto;
    overflow-y: auto;
  }
}
.tap-catalog__panel {
  display: grid;
  grid-template-columns: 372px minmax(360px, 1fr);
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
}
@media (max-width: 960px) {
  .tap-catalog__panel {
    grid-template-columns: 1fr;
    min-height: 360px;
  }
}
.tap-catalog__primary {
  background: #f9f9fa;
  border-right: 1px solid #ecedf0;
}
.tap-catalog__primary-list {
  max-height: 560px;
  overflow-y: auto;
  padding: 8px 0;
}
.tap-catalog__primary-item {
  width: 100%;
  border: none;
  background: transparent !important;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #121a26 !important;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.tap-catalog__primary-item:hover {
  background: rgba(255, 255, 255, 0.6);
}
.tap-catalog__primary-item.is-active {
  background: #ffffff !important;
  color: #fe3650 !important;
}
.tap-catalog__primary-item.is-active .tap-catalog__primary-name {
  color: #fe3650 !important;
  font-weight: 600;
}
.tap-catalog__primary-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fe3650;
  text-transform: uppercase;
}
.tap-catalog__primary-arrow {
  margin-left: auto;
  width: 16px;
  height: 16px;
  background: url("../svg/right-arrow.svg") center / contain no-repeat;
  opacity: 0.35;
}
.tap-catalog__primary-item.is-active .tap-catalog__primary-arrow {
  opacity: 1;
}
.tap-catalog__secondary {
  padding: 24px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}
.tap-catalog__secondary-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.tap-catalog__secondary-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #121a26;
}
.tap-catalog__secondary-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid #ecedf0;
  background: #f9f9fa;
  flex: 1;
}
.tap-catalog__secondary-search input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 14px;
  outline: none;
  color: #121a26;
}
.tap-catalog__secondary-search-icon {
  width: 16px;
  height: 16px;
  background: url("../svg/search.svg") center / contain no-repeat;
  display: inline-flex;
}
.tap-catalog__secondary-scroll {
  overflow-y: auto;
  padding-right: 4px;
}
.tap-catalog__secondary-list {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px 24px;
}
.tap-catalog__secondary-list.is-active {
  display: grid;
}
.tap-catalog__secondary-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 4px;
  font-size: 15px;
  color: #363638;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.tap-catalog__secondary-link:hover {
  color: #fe3650;
  border-color: rgba(254, 54, 80, 0.35);
}
.tap-catalog__secondary-empty {
  font-size: 14px;
  color: #7f7d7d;
  margin: 12px 0 0;
}
.tap-catalog__empty {
  padding: 16px 28px;
  font-size: 14px;
  color: #7f7d7d;
  margin: 0;
}
@media (max-width: 960px) {
  .tap-catalog__secondary {
    padding: 20px;
  }
  .tap-catalog__secondary-list {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}
@media (max-width: 640px) {
  .tap-catalog__panel {
    border-radius: 20px;
  }
  .tap-catalog__secondary-scroll {
    max-height: calc(100vh - 220px);
  }
}
@charset "UTF-8";
html {
  -webkit-text-size-adjust: none;
  touch-action: manipulation;
}

body {
  min-height: 100vh;
  background-color: #f4f4f4;
}

.container {
  max-width: 1440px;
  padding: 0 16px;
  margin: 0 auto;
}
.shop-info-mobile{
  display:none;
}
.shop-info-content-mobile{
  display:none;
}
@media (max-width: 1440px) {
  .container {
    max-width: 100%;
    padding: 0 24px;
  }
}
@media (max-width: 960px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media (max-width: 640px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "TT Commons";
}

input, select, textarea, button {
  outline: none !important;
}

a {
  text-decoration: none;
}

.messages {
  height: 33px;
  width: 100%;
  background: #FF7C02;
  position: fixed;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  top: -33px;
  transition: 0.3s;
}
.messages.active {
  visibility: visible;
  opacity: 1;
  top: 86px;
}
@media (max-width: 1200px) {
  .messages.active {
    top: 61px;
  }
}
.messages.success {
  background: #0AC006;
}
.messages.danger {
  background: #FF103B;
}
.messages .text {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #FFFFFF;
}

.grid-global {
  display: flex;
}
.grid-global .left-side-global {
  min-width: 236px;
  width: 236px;
  transition: 0.3s;
}
.grid-global .left-side-global .category-global {
  transition: 0.3s;
  min-width: 236px;
  width: 236px;
  position: sticky;
  top: 120px;
  margin: 0 0 40px;
}
@media (max-width: 840px) {
  .grid-global .left-side-global .category-global {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 60;
    margin: 0;
    width: 100%;
    min-width: 100%;
    height: calc(100vh - 50px);
    padding: 24px;
    overflow-y: auto;
  }
  .grid-global .left-side-global .category-global.active {
    visibility: visible;
    opacity: 1;
  }
}
.grid-global .right-side-global {
  overflow: hidden;
  width: 100%;
  margin: 24px -18px 0 -18px;
  padding: 0 18px;
}
@media (max-width: 960px) {
  .grid-global.product-detail-page {
    flex-direction: column;
  }
  .grid-global.product-detail-page .left-side-global {
    width: 100%;
    min-width: 100%;
  }
}

.category-mobile {
  position: fixed;
  z-index: 550;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #FF103B;
  visibility: hidden;
  color: #ffffff;
  opacity: 0;
}
@media (max-width: 840px) {
  .category-mobile {
    visibility: visible;
    opacity: 1;
  }
}

.modal-ok .modal-container {
  padding: 90px 54px 64px !important;
}

.modal {
  position: fixed;
  z-index: 10000;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.35);
}
.modal.show {
  visibility: visible;
  opacity: 1;
}
.modal.show .modal-container {
  opacity: 1;
}
.modal.password-changed .modal-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 54px 64px 54px;
}
.modal form {
  margin: 0;
}
.modal .modal-container {
  background: #FFFFFF;
  margin: 135px auto 115px auto;
  max-width: 508px;
  transition: 0.3s;
  transition-delay: 0.3s;
  opacity: 0;
  position: relative;
  box-shadow: 0 24px 32px rgba(0, 0, 0, 0.25);
  padding: 36px 54px;
}
@media (max-width: 540px) {
  .modal .modal-container {
    margin: 100px 16px;
    padding: 36px;
  }
}
.modal .modal-container img {
  margin: 0 auto;
  display: block;
}
.modal .modal-container .text-center {
  text-align: center;
}
.modal .modal-container .close-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
.modal .modal-container h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #181818;
}
.modal .modal-container .reb-btn {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  background: #FF103B;
  border-radius: 2px;
  width: 100%;
  line-height: 16px;
  color: #FFFFFF;
  height: 44px;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .close-one-click-modal {
  border-radius: 2px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9A02;
  background: transparent;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.modal .close-one-click-modal:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.05);
}

.sorting {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.sorting li {
  list-style: none;
}
.sorting li a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #767676;
  display: flex;
  align-items: start;
  margin-right: 24px;
  margin-bottom: 16px;
  cursor: pointer;
}
.sorting li a:after {
  content: "";
  width: 14px;
  height: 14px;
  background-size: contain;
  background: url("../svg/arrow.svg") no-repeat center;
  margin-left: 6px;
}
.sorting li.active a {
  color: #FF103B;
}
.sorting li.active a:after {
  background: url("../svg/arrow-red.svg") no-repeat center;
  transform: rotate(180deg);
}

.likes .unable {
  pointer-events: none !important;
}

.shop-order-item .grid .right-side a.title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #FF103B;
  margin-right: 32px;
}

.shop-order-item .grid .right-side a.title.is_read {
  color: #FF103B;
}

.sorting li.active a.active-up:after {
  transform: rotate(0deg);
}

.icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s;
}
.icon.icon-add {
  background-image: url(../svg/add.svg);
}
.icon.icon-login {
  background-image: url(../svg/log-in.svg);
}
.icon.icon-add-shop {
  background-image: url(../svg/add-shop.svg);
}
.icon.icon-user {
  background-image: url(../svg/icon-user.svg);
}
.icon.icon-cart {
  background-image: url(../svg/icon-cart.svg);
}
.icon.icon-search {
  background-image: url(../svg/search.svg);
}
.icon.icon-pen {
  background-image: url(../svg/pen.svg);
  width: 15px;
  min-width: 15px;
  height: 15px;
  background-size: contain;
}
.icon.icon-del {
  background-image: url(../svg/del.svg);
  width: 15px;
  min-width: 15px;
  height: 15px;
  background-size: contain;
}
.icon.icon-plus-gray {
  background-image: url(../svg/plus-gray.svg);
  width: 15px;
  min-width: 15px;
  height: 15px;
  background-size: contain;
}
.icon.icon-vk {
  background-image: url(../svg/icon-vk.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-fb {
  background-image: url(../svg/icon-fb.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}

.icon.icon-wa {
  background-image: url(../svg/icon-wa.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-ok {
  background-image: url(../svg/icon-ok.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-insta {
  background-image: url(../svg/icon-insta.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-mail {
  background-image: url(../svg/message.svg);
}
.icon.icon-phone {
  background-image: url(../svg/phone-2.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-black-arrow {
  background-image: url(../svg/icon-black-arrow.svg);
}
.icon.icon-red-arrow {
  background-image: url(../svg/icon-red-arrow.svg);
}
.icon.icon-favorite {
  background-image: url(../svg/favorite.svg);
}
.icon.icon-favorite-active {
  background-image: url(../svg/favorite-active.svg);
}
.icon.icon-rating {
  background-image: url(../svg/star.svg);
}
.icon.icon-category {
  background-image: url(../svg/star.svg);
}
.icon.icon-location {
  background-image: url(../svg/map-location-2.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-clock {
  background-image: url(../svg/clock-2.svg);
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-size: contain;
  filter: opacity(0.3);
}
.icon.icon-like {
  background-image: url(../svg/like.svg);
}
.icon.icon-dislike {
  background-image: url(../svg/dislike.svg);
}
.icon.icon-like-active {
  background-image: url(../svg/like-active.svg);
}
.icon.icon-dislike-active {
  background-image: url(../svg/like-active.svg);
  transform: rotate(180deg);
}
.icon.icon-plus {
  background-image: url(../svg/icon-plus.svg);
}
.icon.icon-remove {
  background-image: url(../svg/remove.svg);
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}
.icon.icon-remove-cart {
  background-image: url(../svg/remove-cart.svg);
  width: 32px;
  height: 32px;
  min-width: 32px;
}
.icon.icon-show-pass {
  background-image: url(../svg/eye-close.svg);
}
.icon.icon-edit {
  background-image: url(../svg/edit.svg);
}
.icon.icon-orange-plus {
  background-image: url(../svg/orange-add.svg);
}
.icon.icon-remove-red {
  background-image: url(../svg/remove-red.svg);
}
.icon.icon-owl-left {
  background-image: url(../svg/left-arrow.svg);
}
.icon.icon-owl-right {
  background-image: url(../svg/right-arrow.svg);
}
.icon.icon-close-modal {
  background-image: url(../svg/dark-remove.svg);
}
.icon.icon-cart-dark {
  background-image: url(../svg/icon-cart-dark.svg);
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-content {
  visibility: hidden;
  opacity: 0;
  overflow-y: auto;
  position: absolute;
  min-width: 230px;
  padding: 24px;
  z-index: 1;
  transition: 0.3s;
  background: #FFFFFF;
  box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  left: -20px;
  top: 36px;
}
@media (max-width: 1200px) {
  .dropdown .dropdown-content {
    left: -140px;
  }
}
@media (max-width: 640px) {
  .dropdown .dropdown-content {
    left: -100px;
    min-width: 190px;
  }
}
.dropdown .dropdown-content p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #181818;
  display: block !important;
  text-align: left;
}
.dropdown .dropdown-content a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  color: #181818;
  transition: 0.3s;
}
.dropdown .dropdown-content a.exit {
  padding: 24px 0 0;
  border-top: 1px solid #F3F3F3;
}
.dropdown .dropdown-content a:hover {
  color: #FF9A02;
}
.dropdown .dropdown-content .shops {
  position: relative;
  display: inline-block !important;
}
.dropdown .dropdown-content .shops.active {
  color: #FF103B;
}
.dropdown .dropdown-content .shops span {
  position: absolute;
  top: -6px;
  right: -15px;
  width: 12px;
  height: 12px;
  font-weight: normal;
  font-size: 9px;
  line-height: 16px;
  display: flex;
  justify-content: center;
  color: #FFFFFF;
  background-color: #FF103B;
  border-radius: 50%;
}
.dropdown.desktop-drop:hover .dropdown-content {
  visibility: visible;
  opacity: 1;
}
.dropdown.mobile-drop.show .dropdown-content {
  visibility: visible;
  opacity: 1;
}
.dropdown.mobile-drop.show .icon {
  filter: opacity(1);
}
.dropdown.desktop-drop:hover .text {
  color: #FF9A02;
}
.dropdown.desktop-drop:hover .icon {
  filter: opacity(1);
}

.header {
  background-color: #ffffff;
  border-bottom: 1px solid #F3F3F3;
  width: 100%;
  padding: 12px 0;
  position: fixed;
  z-index: 56;
}
.header .container {
  width: 100%;
}
@media (max-width: 1200px) {
  .header {
    display: none;
  }
}
.tap-header__row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.tap-header__logo {
  display: flex;
  align-items: center;
  gap: 24px;
}
.tap-header__search {
  flex: 1;
  min-width: 320px;
}
.tap-header__actions {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}
.tap-header__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 90px;
}
.tap-header__action-link,
.tap-header__dropdown > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  color: #121a26;
  text-decoration: none;
  position: relative;
}
.tap-header__action .text,
.tap-header__dropdown > a .text {
  font-size: 12px;
  line-height: 1.2;
  color: #121a26;
}
.tap-header__dropdown {
  position: relative;
}
.tap-header__action-link .text,
.tap-header__dropdown > a .text {
  margin: 0;
}
.tap-header__action .icon,
.tap-header__dropdown .icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.tap-header__dropdown .count,
.tap-header__action .basket-quantity {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fe3650;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  text-align: center;
}
.tap-header__action--cart > .cart > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.tap-header__action--cart .basket-quantity {
  position: absolute;
  top: -6px;
  left: 24px;
}
.tap-header__action--favorite .icon {
  color: #fe3650;
}
.tap-header__cta {
  margin-left: 16px;
}
.tap-secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 48px;
  border-radius: 12px;
  border: none;
  background: #f9f9fa;
  font-weight: 600;
  font-size: 14px;
  color: #121a26;
  text-decoration: none;
  transition: background 0.2s ease;
}
.tap-secondary-btn:hover {
  background: #ebebeb;
}
.tap-secondary-btn__icon {
  width: 20px;
  height: 20px;
  background: url("../svg/category-icon/home.svg") center / contain no-repeat;
  opacity: 0.8;
}
.tap-search {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.tap-search__field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f9f9fa;
  border-radius: 12px;
  border: none;
  padding: 0 16px;
  height: 48px;
}
.tap-search__field input {
  border: none;
  background: transparent;
  width: 100%;
  height: 100%;
  font-size: 14px;
  outline: none;
  color: #121a26;
}
.tap-search__field input::placeholder {
  color: #8e8e93;
}
.tap-search__icon {
  width: 16px;
  height: 16px;
  background: url("../svg/search.svg") center / contain no-repeat;
  opacity: 0.5;
  flex-shrink: 0;
}
.tap-search__submit {
  height: 48px;
  border-radius: 12px;
  border: none;
  background: #4285f4;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 0 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.tap-search__submit:hover {
  background: #357ae8;
}
.tap-search__location {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  border: none;
  background: #fe3650 !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}
.tap-search__location:hover {
  background: #e02e46 !important;
}
.tap-search__location span:not(.tap-search__location-icon) {
  display: none;
}
.tap-search__location-icon {
  width: 20px;
  height: 20px;
  background: url("../svg/map-location.svg") center / contain no-repeat;
  filter: brightness(0) invert(1);
}
@media (max-width: 992px) {
  .tap-search {
    flex-direction: column;
    align-items: stretch;
  }
  .tap-search__submit,
  .tap-search__location {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 1440px) {
  .tap-header__row {
    flex-wrap: wrap;
  }
  .tap-header__search {
    order: 3;
    width: 100%;
  }
  .tap-header__actions {
    order: 2;
  }
  .tap-header__cta {
    order: 4;
    margin-left: 0;
  }
}

.logo {
  margin: 0 18px 0 0;
  position: relative;
}
@media (max-width: 1200px) {
  .logo {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin: 0 56px 0 16px;
  }
}
.logo img {
  width: 100% !important;
}
.logo a {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.mobile-header {
  position: fixed;
  display: none;
  width: 100%;
  padding: 10px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #F3F3F3;
  z-index: 56;
}
@media (max-width: 1200px) {
  .mobile-header .container {
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .mobile-header {
    display: block;
  }
}
@media (max-width: 375px) {
  .mobile-header .logo {
    margin: 0 0 0 16px;
    max-width: 50px;
  }
}
@media (max-width: 360px) {
  .mobile-header .logo {
    left: auto;
    right: 16px;
    margin: 10px 0 0 0;
    top: 0;
    transform: translateY(0);
  }
}
.mobile-header .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 360px) {
  .mobile-header .flex .logo {
    margin-right: 0;
  }
  .mobile-header .flex .navigation {
    justify-content: space-between;
    width: 100%;
  }
}
.mobile-header .flex .navigation {
  display: flex;
}
.mobile-header .flex .navigation > div {
  display: inline-flex;
}
.mobile-header .flex .navigation a {
  display: inline-flex;
}
.mobile-header .flex .navigation .cart {
  position: relative;
}
.mobile-header .flex .navigation .cart .quantity {
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-align: center;
  color: #FFFFFF;
  background: #FF103B;
  width: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1px 0 0;
}

.header-placeholder {
  height: 85px;
}
@media (max-width: 1200px) {
  .header-placeholder {
    height: 61px;
  }
}

.cart-dropdown {
  position: relative;
  display: inline-block;
}
.cart-dropdown .cart-dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  min-width: 367px;
  padding: 16px;
  z-index: 1;
  transition: 0.3s;
  background: #FFFFFF;
  box-shadow: 0 24px 24px rgba(0, 0, 0, 0.05);
  border-radius: 2px;
  right: 0;
  top: 36px;
}
@media (max-width: 960px) {
  .cart-dropdown .cart-dropdown-content {
    right: -50px;
  }
}
.cart-dropdown .cart-dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 435px;
  height: 100%;
  overflow-y: auto;
}
@media (max-width: 1440px) {
  .cart-dropdown .cart-dropdown-content ul {
    max-height: 280px;
  }
}
.cart-dropdown .cart-dropdown-content ul li {
  border-bottom: 1px solid #BFBFBF;
  padding: 16px 0 24px;
  max-height: 145px;
}
.cart-dropdown .cart-dropdown-content ul li:first-child {
  padding: 0 0 24px;
}
.cart-dropdown .cart-dropdown-content ul li .flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  flex-wrap: nowrap;
}
.cart-dropdown .cart-dropdown-content ul li .flex .cart-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
.cart-dropdown .cart-dropdown-content ul li .flex .left {
  padding: 0;
  max-width: 82px;
  width: 100%;
}
.cart-dropdown .cart-dropdown-content ul li .flex .left img {
  width: 100%;
  height: auto;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right h3 {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 150%;
  color: #181818;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .category {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #767676;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .price .old-price {
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  text-decoration-line: line-through;
  color: #ADADAD;
  margin-right: 4px;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .price .new-price {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  color: #FF103B;
  margin-right: 4px;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .price .static-price {
  margin-right: 4px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.cart-dropdown .cart-dropdown-content ul li .flex .right .price .text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #ADADAD;
}
.cart-dropdown .cart-dropdown-content .total p {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 150%;
  text-align: center;
  color: #181818;
}
.cart-dropdown .cart-dropdown-content .total p span {
  color: #FF103B;
}
.cart-dropdown a.red-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF !important;
  margin: 0;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  transition: 0.3s;
}
.cart-dropdown a.red-btn:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
}
.cart-dropdown:hover .cart-dropdown-content {
  visibility: visible;
  opacity: 1;
}

.mobile-profile-icon {
  position: relative;
}
.mobile-profile-icon .count {
  position: absolute;
  top: -5px;
  right: -10px;
  width: 10px;
  height: 10px;
  background-color: #FF103B;
  color: white;
  margin: 0;
  font-size: 9px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  padding-top: 1px;
}
@media (max-width: 560px) {
  .mobile-profile-icon .count {
    padding-top: 2px;
  }
}


.footer {
  background: #FFFFFF;
  border-top: 1px solid #BFBFBF;
  padding: 48px 0 0;
}
/* New Footer Styles */
.tap-footer {
  background: #f6f6f7;
}
.tap-footer__top {
  padding: 48px 0;
  background: #f6f6f7;
}
.tap-footer__top .container {
  max-width: 1440px;
  padding: 0 32px;
}
.tap-footer__content {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.tap-footer__section {
  display: flex;
  flex-direction: column;
}
.tap-footer__section--logo {
  max-width: 440px;
  gap: 16px;
}
.tap-footer__logo {
  width: 200px;
  height: 84px;
}
.tap-footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tap-footer__description {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.666;
  color: #606266;
  margin: 0;
}
.tap-footer__section--links {
  flex-direction: row;
  gap: 24px;
  padding-top: 42px;
  flex: 1;
}
.tap-footer__col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1;
}
.tap-footer__heading {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.366;
  color: #121a26;
  margin: 0;
}
.tap-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tap-footer__link {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.666;
  color: #121a26;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tap-footer__link:hover {
  color: #fe3650;
}
.tap-footer__link--icon {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tap-footer__link--icon .icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  background-size: contain;
}
.tap-footer__link--icon .icon {
  opacity: 1 !important;
  filter: none;
}
.tap-footer__link--icon .icon.icon-mail {
  background-image: url("../svg/message.svg") !important;
  filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(5000%) hue-rotate(340deg) brightness(0.9) !important;
  opacity: 1 !important;
}
.tap-footer__link--icon .icon.icon-phone {
  background-image: url("../svg/phone-2.svg") !important;
  filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(5000%) hue-rotate(340deg) brightness(0.9) !important;
  opacity: 1 !important;
}
.tap-footer__link--icon .icon.icon-insta {
  background-image: url("../svg/icon-insta.svg") !important;
  filter: brightness(0) saturate(100%) invert(20%) sepia(100%) saturate(5000%) hue-rotate(340deg) brightness(0.9) !important;
  opacity: 1 !important;
}
.tap-footer__section--qr {
  align-items: center;
  gap: 16px;
  padding-top: 0;
}
.tap-footer__qr {
  width: 164px;
  height: 163px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.tap-footer__qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tap-footer__qr-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tap-footer__qr-text {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.454;
  color: #606266;
  text-align: center;
  margin: 0;
  max-width: 194px;
}
.tap-footer__bottom {
  border-top: 1px solid #e0e0e0;
  padding: 16px 0;
  background: #f6f6f7;
}
.tap-footer__bottom .container {
  max-width: 1440px;
  padding: 0 32px;
}
.tap-footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.tap-footer__copyright {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.666;
  color: #606266;
  opacity: 0.7;
  margin: 0;
}
.tap-footer__developer {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.666;
  color: #606266;
  opacity: 0.7;
  margin: 0;
}
.tap-footer__developer a {
  color: #606266;
  text-decoration: none;
}
.tap-footer__developer a:hover {
  color: #fe3650;
}
@media (max-width: 1440px) {
  .tap-footer__top .container,
  .tap-footer__bottom .container {
    padding: 0 24px;
  }
  .tap-footer__content {
    gap: 40px;
  }
}
@media (max-width: 1200px) {
  .tap-footer__content {
    flex-wrap: wrap;
    gap: 40px;
  }
  .tap-footer__section--logo {
    max-width: 100%;
  }
  .tap-footer__section--links {
    width: 100%;
    padding-top: 0;
  }
  .tap-footer__section--qr {
    width: 100%;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .tap-footer__top {
    padding: 32px 0;
  }
  .tap-footer__top .container,
  .tap-footer__bottom .container {
    padding: 0 16px;
  }
  .tap-footer__section--links {
    flex-direction: column;
    gap: 32px;
  }
  .tap-footer__bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.footer .footer-flex {
  display: flex;
  justify-content: space-between;
  padding: 0 0 52px;
}
@media (max-width: 840px) {
  .footer .footer-flex {
    flex-wrap: wrap;
    padding: 0;
  }
}
.footer .footer-flex .footer-item {
  width: 25%;
}
@media (max-width: 840px) {
  .footer .footer-flex .footer-item {
    width: 50%;
    margin-bottom: 36px;
  }
}
@media (max-width: 460px) {
  .footer .footer-flex .footer-item {
    width: 100%;
    margin-bottom: 36px;
  }
}
.footer .footer-flex .footer-item h5 {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  margin: 0;
  padding: 0;
  color: #181818;
}
.footer .footer-flex .footer-item .footer-nav {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-flex .footer-item .footer-nav a {
  width: 100%;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 14px;
  color: #181818;
  margin: 20px 0 0;
  display: flex;
  align-items: center;
}
.footer .footer-flex .footer-item .footer-nav a.social-footer {
  color: #181818;
}
.footer .footer-flex .footer-item .footer-nav a .icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 10px 0 0;
}
.footer .footer-flex .footer-item .footer-nav a .text {
  margin-top: 3px;
}
.footer .footer-flex .footer-item .footer-nav .footer-link {
  margin: 36px 0 0;
  display: flex;
}
.footer .footer-flex .footer-item .footer-nav .footer-link a {
  margin: 0 8px 0 0;
  background: #FFFFFF;
  border-radius: 5px;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.footer .footer-flex .footer-item .footer-nav .footer-link a:last-child {
  margin: 0;
}
.footer .dev {
  border-top: 1px solid #E0E0E0;
}
@media (max-width: 840px) {
  .footer .dev {
    margin-bottom: 50px;
  }
}
.footer .dev .dev-link {
  min-height: 56px;
  display: flex;
  align-items: center;
}
@media (max-width: 475px) {
  .footer .dev .dev-link > div {
    display: flex;
    flex-wrap: wrap;
  }
}
.footer .dev .dev-link p {
  display: inline-block;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #4c4b4b;
  margin: 0;
  padding: 0;
}
@media (max-width: 475px) {
  .footer .dev .dev-link p {
    margin: 8px 0 0;
  }
}
.footer .dev .dev-link a {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
  margin: 0 0 0 16px;
  padding: 0;
}
@media (max-width: 475px) {
  .footer .dev .dev-link a {
    margin: 8px 0 0;
  }
}

form {
  margin: 0 32px 0 0;
  flex-grow: 3;
}
form .form-group {
  display: flex;
}
form .form-group input {
  width: 100%;
  height: 44px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 0 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
}
form .form-group input::placeholder {
  color: #BFBFBF;
}
form .form-group input::-webkit-input-placeholder {
  color: #BFBFBF;
}
form .form-group input::-moz-placeholder {
  color: #BFBFBF;
}
form .form-group input:-moz-placeholder {
  color: #BFBFBF;
}
form .form-group input:-ms-input-placeholder {
  color: #BFBFBF;
}
form .form-group .form-btn {
  background: #FF103B;
  border-radius: 2px;
  width: 141px;
  min-width: 141px;
  height: 44px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 12px;
  color: #FFFFFF;
  border: none;
  margin: 0 0 0 -5px;
}

.search-result {
  background: #FFFFFF;
  box-shadow: 0px 24px 24px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  max-height: 280px;
  overflow-y: auto;
  position: absolute;
  top: 44px;
  left: 0;
  right: 0;
}
.search-result .flex-results {
  display: flex;
  flex-wrap: wrap;
}
.search-result a {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #2D2727;
  padding: 24px;
  width: 100%;
  text-decoration: none;
  position: relative;
}
.search-result a:after {
  border-bottom: 1px solid #EEEEEE;
  left: 24px;
  right: 24px;
  bottom: 0;
  content: "";
  position: absolute;
}
.search-result a:last-child:after {
  display: none;
}

.mobile-search {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  padding: 0;
  background-color: #ffffff;
}
.mobile-search form {
  margin: 0;
}
.mobile-search form .form-group {
  width: 100%;
}
.mobile-search form .form-group .form-btn {
  width: 80px;
  min-width: 80px;
  font-size: 14px;
}
.mobile-search.show {
  visibility: visible;
  opacity: 1;
}

.accordionjs {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
}
.accordionjs li.acc_active h2 {
  color: #FF9A02;
}
.accordionjs li.acc_active img {
  filter: opacity(1);
}
.accordionjs li.acc_active .second-parent {
  display: block;
}
.accordionjs li h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #181818;
  display: flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  transition: 0.3s;
}
.accordionjs li h2:hover {
  color: #FF9A02;
}
.accordionjs li h2.active {
  color: #FF9A02;
}
.accordionjs li h2 img {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 10px 0 0;
  filter: opacity(0.3);
}
.accordionjs li .second-parent {
  display: none;
}
.accordionjs li .flex-category {
  display: flex;
  flex-wrap: wrap;
}
.accordionjs li .flex-category .second-item {
  transition: 0.3s;
}
.accordionjs li .flex-category .second-item:hover {
  color: #FF9A02;
}
.accordionjs li .flex-category .second-item + .category-container {
  display: none;
}
.accordionjs li .flex-category .second-item.parent_active.active + .category-container {
  display: block;
}
.accordionjs li .flex-category .third-item {
  transition: 0.3s;
}
.accordionjs li .flex-category .third-item:hover {
  color: #FF9A02;
}
.accordionjs li .flex-category .second-block {
  display: block;
  width: 100%;
}
.accordionjs li .flex-category a {
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  text-decoration: none;
  color: #767676;
  display: block;
}
.accordionjs li .flex-category a.active {
  color: #FF9A02;
}

.filter form {
  display: flex;
  margin: 0 0 0 -12px;
}
@media (max-width: 960px) {
  .filter form {
    flex-wrap: wrap;
  }
}
.filter form .toggle-filter-style {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 6px 12px;
}
.filter form .toggle-filter-style .text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #767676;
}
.filter form .toggle-filter-style .icon {
  width: 15px;
  height: 15px;
}
.filter form .relative {
  position: relative;
}
.filter form .color-filter {
  position: relative;
  border-radius: 2px 2px 0px 0px;
  z-index: 55;
}
.filter form .color-filter.active {
  background-color: #ffffff;
}
.filter form .color-filter.active + .drop {
  visibility: visible;
  opacity: 1;
}
.filter form .color-filter .text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FF103B;
}
.filter form .color-filter .icon {
  width: 15px;
  height: 15px;
}
.filter form .drop {
  position: absolute;
  background: #FFFFFF;
  border-radius: 0px 2px 2px 2px;
  max-height: 224px;
  overflow-y: auto;
  max-width: 150px;
  min-width: 123px;
  top: 28px;
  z-index: 50;
  left: 0;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  visibility: hidden;
  opacity: 0;
  padding: 14px 12px;
}
.filter form .drop .drop-item label {
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.filter form .drop .drop-item .text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #767676;
}
.filter form .drop .drop-item input {
  display: none;
}
.filter form .drop .drop-item input:checked + .indicator {
  background-image: url(../svg/check.svg);
}
.filter form .drop .drop-item .indicator {
  border: 1px solid #EEEEEE;
  border-radius: 2px;
  width: 15px;
  height: 15px;
  min-width: 15px;
  background-position: center;
  background-repeat: no-repeat;
}

.product-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: 0.3s;
  background: transparent;
  border: 1px solid transparent;
}
.product-item:hover {
  background: #FFFFFF;
  border: 1px solid #F4F4F4;
  box-sizing: border-box;
  box-shadow: 0 24px 24px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.product-item .product-link {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}
.product-item .info h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 16px;
  color: #181818;
}
.product-item .info h2 span {
  color: #7f7d7d;
}
.product-item .info h2 span:before {
  content: "/";
  margin: 0 4px;
  color: #181818;
}
.product-item .info .price {
  padding: 0 0 8px;
  border-bottom: 1px dashed #BFBFBF;
}
.product-item .info .price .flex {
  display: flex;
  justify-content: space-between;
}
.product-item .info .price .flex .left {
  display: flex;
}
.product-item .info .price .flex .left .static-price {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
  margin: 0;
}
.product-item .info .price .flex .left .old-price {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-decoration-line: line-through;
  color: #7f7d7d;
  margin: 0 6px 0 0;
}
.product-item .info .price .flex .left .new-price {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #FF103B;
  margin: 0;
}
.product-item .info .price .flex .right .rating {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 12px;
  display: flex;
  align-items: center;
  color: #7f7d7d;
}
.product-item .info .price .flex .right .rating .icon {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0 0 6px 6px;
}
.product-item .red-btn {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #FF103B;
  border-radius: 2px;
  height: 36px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.product-item .red-btn:hover {
  box-shadow: none;
  background: #ff9a02;
}
.product-item .btn-cart {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  background: #FF103B;
  border-radius: 2px;
  height: 36px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0px 10px 12px rgba(234, 2, 2, 0.3);
}
.product-item .btn-cart.active {
  color: white;
}
.product-item .btn-cart:hover {
  color: white;
  border-radius: 2px;
  box-shadow: none;
  background: #ff9a02;
}

.image-detail {
  position: relative;
  width: 100%;  
  height: 70%;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;  
}

}
.image-detail img {
  height:100%;
  width: 100%;
  object-fit:cover;
  object-position:center;
}
.image-detail .labels {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 2px 0;
  overflow: hidden;
  z-index: 10;
}
.image-detail .labels .discount {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: #FFFFFF;
  background: #FF103B;
  width: 35px;
  height: 15px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-detail .labels .new {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #0AC006;
  width: 35px;
  height: 15px;
  min-width: 35px;
}
.image-detail .favorite {
  cursor: pointer;
  position: absolute;
  right: 6px;
  top: 6px;
  z-index: 10;
}
.image-detail .favorite .icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

.image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  width: 100%; 
  height: 250px;
}
.image img {
  height:100%;
  width: 100%;
  object-fit:cover;
  object-position:center;
}
.image .labels {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 0 2px 0;
  overflow: hidden;
  z-index: 10;
}
.image .labels .discount {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  color: #FFFFFF;
  background: #FF103B;
  width: 35px;
  height: 15px;
  min-width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image .labels .new {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  line-height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: #0AC006;
  width: 35px;
  height: 15px;
  min-width: 35px;
}
.image .favorite {
  cursor: pointer;
  position: absolute;
  right: 6px;
  top: 6px;
  z-index: 10;
}
.image .favorite .icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
}

/* --- Tap.kg home redesign --- */
.tap-home {
  background: #f6f6f7;
  padding-bottom: 120px;
}
.tap-home .container {
  max-width: 1440px;
  padding: 0 32px;
}
@media (max-width: 1200px) {
  .tap-home .container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .tap-home .container {
    padding: 0 16px;
  }
}
.tap-hero {
  padding: 32px 0 56px;
}
.tap-hero__inner {
  position: relative;
}
.tap-hero__slider {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(18, 26, 38, 0.12);
}
.tap-hero__slider .tap-hero__slide {
  height: 420px;
}
@media (max-width: 1024px) {
  .tap-hero__slider .tap-hero__slide {
    height: 320px;
  }
}
@media (max-width: 640px) {
  .tap-hero__slider .tap-hero__slide {
    height: 220px;
  }
}
.tap-hero__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tap-hero__nav {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
}
.tap-hero__nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s ease;
}
.tap-hero__nav-btn img {
  width: 24px;
  height: 24px;
}
.tap-hero__nav-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}
.tap-hero__slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.tap-hero__slider .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}
.tap-hero__slider .owl-dots .owl-dot.active {
  width: 32px;
  background: #ffffff;
}
.tap-hero__placeholder {
  border-radius: 24px;
  padding: 56px;
  background: linear-gradient(135deg, #fe3650 0%, #ff7b4a 100%);
  color: #fff;
  box-shadow: 0 40px 80px rgba(18, 26, 38, 0.12);
}
.tap-hero__placeholder h1 {
  font-size: 40px;
  margin: 16px 0 12px;
}
.tap-hero__placeholder p {
  margin-bottom: 24px;
  max-width: 480px;
}
.tap-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.tap-section {
}
.tap-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tap-section__header h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #121a26;
}
.tap-section__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: #fe3650;
}
.tap-section__link img {
  width: 16px;
  height: 16px;
}
.tap-section__empty {
  font-size: 16px;
  color: #7f7d7d;
}
.tap-products-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}
@media (max-width: 1400px) {
  .tap-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1100px) {
  .tap-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .tap-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 500px) {
  .tap-products-grid {
    grid-template-columns: 1fr;
  }
}
.tap-banner {
  padding: 32px 0 16px;
}
.tap-banner__inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border-radius: 32px;
  background: linear-gradient(120deg, #121a26, #1f2a3b);
  color: #fff;
  padding: 48px;
}
.tap-banner__eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
}
.tap-banner__description p {
  color: rgba(255, 255, 255, 0.85);
}
.tap-banner__cta {
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.tap-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 16px;
  background: #fe3650;
  color: #fff;
  font-weight: 700;
}
.tap-banner__cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.tap-shop-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.tap-shop-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid #ebecf0;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tap-shop-card img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
}
.tap-shop-card:hover {
  box-shadow: 0 20px 40px rgba(18, 26, 38, 0.08);
  transform: translateY(-2px);
}
.tap-product-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #ebecf0;
  box-shadow: 0 24px 48px rgba(18, 26, 38, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}
.tap-product-card__media {
  position: relative;
  width: 100%;
  height: 366px;
  background: #f4f5f7;
  overflow: hidden;
}
.tap-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tap-product-card .labels {
  position: absolute;
  bottom: 4px;
  right: 4px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.tap-product-card .favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 15;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tap-product-card .favorite .icon {
  width: 20px;
  height: 20px;
  background-size: contain;
}
.tap-product-card .badge {
  padding: 0;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(254, 54, 80, 0.9);
}
.tap-product-card .badge--new {
  background: rgba(254, 54, 80, 0.9);
}
.tap-product-card .badge--discount {
  background: rgba(254, 54, 80, 0.9);
}
.tap-product-card__body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 4px;
}
.tap-product-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 4px;
}
.tap-product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.tap-product-card__price-current {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #121a26;
}
.tap-product-card__price-old {
  font-size: 14px;
  color: #7f7d7d;
  text-decoration: line-through;
}
.tap-product-card__discount {
  font-size: 13px;
  font-weight: 700;
  color: #fe3650;
  background: #ffe2e7;
  border-radius: 999px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
}
.tap-product-card__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.428;
  margin: 0;
  color: #121a26;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tap-product-card__category {
  display: none;
}
.tap-product-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #7f7d7d;
  margin-bottom: 12px;
}
.tap-product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  color: #363638;
  opacity: 0.7;
}
.tap-product-card__rating .icon {
  width: 16px;
  height: 16px;
  background-size: contain;
}
.tap-product-card__rating-value {
  font-size: 13px;
  line-height: 1.384;
}
.tap-product-card__reviews {
  font-size: 13px;
  line-height: 1.384;
  opacity: 0.5;
}
.tap-product-card__action {
  margin-top: auto;
}
.tap-product-card .btn-cart,
.tap-product-card .red-btn {
  border-radius: 12px;
  height: 36px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.tap-product-card .btn-cart .icon {
  width: 16px;
  height: 16px;
  background-size: contain;
  filter: brightness(0) invert(1);
}
.tap-product-card .btn-cart {
  background: #fe3650;
  color: #fff;
  box-shadow: none;
}
.tap-product-card .btn-cart:hover {
  background: #e02e46;
}
.tap-product-card .btn-cart.active {
  background: #24a26f;
}
.tap-product-card .btn-cart.active:hover {
  background: #1e8a5c;
}
@media (max-width: 640px) {
  .tap-section__header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 960px) {
  .tap-banner__inner {
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .tap-banner__inner {
    padding: 32px;
  }
  .tap-product-card__media {
    height: 240px;
  }
}
.crumb a {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #181818;
  transition: 0.3s;
}
.crumb a:after {
  content: "/";
  margin: 0 4px;
  color: #BFBFBF;
}
.crumb a:hover {
  color: #181818;
}
.crumb span {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 16px;
  color: #8c8c8c;
}

.rating-flex {
  display: flex;
  align-items: center;
}
.rating-flex .rating {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  color: #FF9A02;
  margin: 0 8px 0 16px;
  padding: 0;
}
.rating-flex .total-voice {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  color: #BFBFBF;
  margin: 0;
  padding: 0;
}
/* Общие стили для пагинации */
.pagination-wrapper, .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
}

/* Текст пагинации (например, "Страница" и "из N") */
.pagination-text {
  font-size: 14px;
  color: #333;
  margin: 0 10px;
}

/* Ссылки пагинации */
.pagination-links {
  display: flex;
  gap: 5px;
}

/* Стили для всех страниц пагинации */
.pagination-page {
  display: inline-block;
  padding: 8px 16px;
  background-color: #f0f0f0;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

/* Активная страница пагинации */
.pagination-page-active {
  background-color: #FF103B;
  color: white;
  font-weight: bold;
}

/* Стиль для стрелок пагинации */
.pagination-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; /* Фиксированная ширина */
  height: 30px; /* Фиксированная высота */
  background-color: #ffffff;
  border-radius: 4px; /* Закругленные углы */
  font-size: 14px; /* Размер текста стрелки */
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  border: 1px solid #ddd; /* Легкая рамка */
  margin: 0 5px; /* Расстояние между стрелками */
  padding: 0 10px; /* Добавлен отступ для текста */
}

/* Стиль для стрелок на hover */
.pagination-arrow:hover, .pagination-page:hover {
  background-color: #FF103B;
  color: white;
}

/* Дополнительные отступы */
.pagination-margin-right {
  margin-right: 15px;
}

/* Стили для активных ссылок и состояний */
.pagination-page:hover {
  background-color: #ddd;
  cursor: pointer;
}

/* Медиазапрос для адаптивности */
@media (max-width: 768px) {
  .pagination-wrapper {
      align-items: flex-start;
      gap: 10px;
  }

  .pagination-links {
      flex-wrap: wrap;
      justify-content: center;
  }

  .pagination-arrow, .pagination-page {
      font-size: 12px;
      padding: 6px 10px;
      width: auto; /* Убираем фиксированную ширину */
      height: auto; /* Убираем фиксированную высоту */
  }

  .pagination-text {
      font-size: 12px;
      margin: 0 5px;
  }
}

/@media (max-width: 768px) {
  .pagination-wrapper {
      align-items: center;
      justify-content: center;
      gap: 3px; /* Минимальное расстояние между элементами */
      flex-wrap: wrap; /* Перенос элементов, если они не помещаются */
  }

  .pagination-links {
      flex-wrap: nowrap; /* Элементы остаются в одну линию */
      justify-content: center;
      gap: 3px;
  }

  .pagination-arrow, .pagination-page {
      font-size: 10px; /* Уменьшенный размер текста */
      padding: 4px 8px; /* Уменьшенные внутренние отступы */
      min-width: 20px; /* Минимальная ширина кнопки */
      height: 24px; /* Уменьшенная высота кнопки */
      margin: 0; /* Убираем внешние отступы */
      border-radius: 2px; /* Слегка округляем углы */
  }

  .pagination-text {
      font-size: 10px; /* Уменьшенный размер текста */
      margin: 0 2px; /* Компактные отступы для текста */
  }
}

@media (max-width: 480px) {
  .pagination-wrapper {
      justify-content: center; /* Центрируем элементы */
      gap: 2px; /* Минимальное расстояние */
      align-items: center;
  }

  .pagination-arrow, .pagination-page {
      font-size: 8px; /* Минимальный размер текста */
      padding: 2px 6px; /* Очень маленькие внутренние отступы */
      min-width: 18px; /* Минимальная ширина кнопки */
      height: 20px; /* Минимальная высота кнопки */
      align-items: center;

  }

  .pagination-text {
      font-size: 8px;
      margin: 0 1px; /* Минимальные отступы */
      align-items: center;


  }
}



.textarea-text textarea {
  font-family: "TT Commons", sans-serif;
  border: 1px solid #BFBFBF;
  box-sizing: border-box;
  border-radius: 2px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  padding: 6px;
  color: #767676;
  height: 150px;
}
.textarea-text textarea::placeholder {
  color: #A9A9A9;
}

.global-input {
  width: 100%;
}
.global-input .check-label .text-input {
  position: relative;
}
.global-input .check-label .text-input textarea {
  border: 1px solid #BFBFBF;
  box-sizing: border-box;
  border-radius: 2px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  padding: 6px;
  color: #000000;
  height: 150px;
}
.global-input .check-label .text-input textarea.comment-input {
  color: #000000;
  background-color: #FFFFFF;
}
.global-input .check-label .text-input textarea.comment-input::placeholder {
  color: #A9A9A9;
}
.global-input .check-label .text-input textarea::placeholder {
  color: #A9A9A9;
}
.global-input .check-label .text-input input {
  border: 0;
  border-bottom: 1px solid #EEEEEE;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #181818;
}
.global-input .check-label .text-input input::-webkit-file-upload-button {
  background-color: transparent;
  border: 0;
  visibility: hidden;
  opacity: 0;
  width: 0;
  padding: 0;
}
.global-input .check-label .text-input input:required:valid + .emul-label {
  top: -12px;
}
.global-input .check-label .text-input input:focus + .emul-label {
  top: -12px;
}
.global-input .check-label .text-input input[value]:not([value=""]) + .emul-label {
  top: -12px;
}
.global-input .check-label .text-input select {
  border: 0;
  border-bottom: 1px solid #EEEEEE;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #181818;
  background-color: #ffffff;
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  background-image: url(../svg/arrow.svg);
  background-repeat: no-repeat;
  background-position: right;
}
.global-input .check-label .text-input select:focus + .emul-label {
  top: -12px;
}
.global-input .check-label .text-input .help-text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #FF9A02;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
.global-input .check-label .text-input .emul-label {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 120%;
  color: #A9A9A9;
  position: absolute;
  left: 0;
  top: 8px;
  transition: 0.3s;
}
.global-input .check-label .text-input .error-message {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: #D81B1B;
  margin: 0 0 12px 0;
}
.global-input .check-label .text-input .error-message:first-child {
  margin: 12px 0 12px 0;
}
.global-input .check-label .text-input .error-message p {
  margin: 0;
  padding: 0;
}
.global-input .check-label .text-input .quantity-text {
  position: absolute;
  right: 0;
  bottom: -18px;
}
.global-input .check-label .text-input .quantity-text span {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 100%;
  color: #767676;
}
.global-input .check-label.value-exists .emul-label {
  top: -12px;
}
.global-input .check-label.value-exists .help-text {
  bottom: 12px;
}

.global-checkbox label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.global-checkbox label .text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 90%;
  color: #181818;
  margin: 3px 12px 0 0;
}
.global-checkbox label input {
  display: none;
}
.global-checkbox label input:checked + .indicator:before {
  background-image: url(../svg/checked.svg);
  width: 16px;
  height: 16px;
  min-width: 16px;
  top: 1px;
  bottom: 1px;
  left: 29px;
}
.global-checkbox label .indicator {
  border: 1px solid #FF9A02;
  border-radius: 13px;
  width: 48px;
  height: 20px;
  min-width: 48px;
  display: inline-block;
  position: relative;
}
.global-checkbox label .indicator:before {
  content: "";
  background-image: url(../svg/unchecked.svg);
  position: absolute;
  left: 3px;
  top: 3px;
  bottom: 3px;
  width: 12px;
  min-width: 12px;
  height: 12px;
  transition: 0.3s;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  transition: all 5000s ease-in-out 0s;
  transition-property: background-color, color;
}

.global-other-checkbox {
  width: 50%;
}
@media (max-width: 640px) {
  .global-other-checkbox {
    width: 100%;
  }
}
.global-other-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.global-other-checkbox label .text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #181818;
}
.global-other-checkbox label input {
  opacity: 0;
  position: absolute;
}
.global-other-checkbox label input:checked + .indicator:before {
  background: linear-gradient(0deg, #FF103B, #FF103B), #EEEEEE;
}
.global-other-checkbox label .indicator {
  border: 1px solid #FF9A02;
  box-sizing: border-box;
  border-radius: 2px;
  width: 16px;
  height: 16px;
  min-width: 16px;
  display: inline-block;
  position: relative;
}
.global-other-checkbox label .indicator:before {
  content: "";
  background: #EEEEEE;
  border-radius: 1px;
  position: absolute;
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 10px;
  min-width: 10px;
  height: 10px;
  transition: 0.3s;
}

.global-input {
  position: relative;
}
.global-input .phone-add {
  position: absolute;
  right: 0;
  top: -3px;
  z-index: 5;
  cursor: pointer;
}

.cart-item {
  border-bottom: 2px solid #ADADAD;
  padding: 0 0 48px;
  position: relative;
}
.cart-item .remove-cart {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}
.cart-item:first-child {
  padding: 0 0 48px;
}
.cart-item .flex {
  display: flex;
}
@media (max-width: 1200px) {
  .cart-item .flex {
    flex-wrap: nowrap !important;
  }
}
@media (max-width: 500px) {
  .cart-item .flex {
    flex-wrap: wrap !important;
  }
}
.cart-item .flex .left {
  width: 204px;
  min-width: 204px;
}
.cart-item .flex .right h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
  padding: 0 48px 0 0;
}
@media (max-width: 500px) {
  .cart-item .flex .right h2 {
    margin: 16px 0 0;
  }
}
.cart-item .flex .right .category {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #767676;
  padding: 0 0 16px;
  border-bottom: 1px solid #BFBFBF;
}
.cart-item .flex .right .price-rating-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cart-item .flex .right .price-rating-block .price-block .new-price {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #FF103B;
}
.cart-item .flex .right .price-rating-block .price-block .static-price {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.cart-item .flex .right .price-rating-block .price-block .text {
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 37px;
  color: #ADADAD;
}
.cart-item .flex .right .price-rating-block .price-block .old-price {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-decoration-line: line-through;
  color: #ADADAD;
}
.cart-item .flex .right .price-rating-block .rating-block {
  display: flex;
  align-items: center;
}
.cart-item .flex .right .price-rating-block .rating-block .text {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 18px;
  color: #ADADAD;
  margin: 3px 6px 0 0;
}
.cart-item .flex .right .quantity-block p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ADADAD;
}
.cart-item .flex .right .quantity-block .form {
  display: flex;
}
.cart-item .flex .right .quantity-block .form .change-quantity {
  display: inline;
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 2px;
  overflow: hidden;
  width: 40px;
  height: 40px;
  min-width: 40px;
  cursor: pointer;
}
.cart-item .flex .right .quantity-block .form .change-quantity.plus {
  background-image: url(../svg/plus.svg);
}
.cart-item .flex .right .quantity-block .form .change-quantity.minus {
  background-image: url(../svg/minus.svg);
}
.cart-item .flex .right .quantity-block .form input {
  border: 1px solid #E4E4E4;
  box-sizing: border-box;
  border-radius: 2px;
  width: 52px;
  height: 40px;
  min-width: 52px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  text-align: center;
  color: #2D2727;
  margin: 0 6px;
}
.cart-item .flex .right .quantity-block .form input::-webkit-outer-spin-button, .cart-item .flex .right .quantity-block .form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.cart-item .flex .right .quantity-block .form input[type=number] {
  -moz-appearance: textfield;
}

.shop-order-item {
  padding-bottom: 36px;
  border-bottom: 1px solid #dfdddd;
}
.shop-order-item .grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1200px) {
  .shop-order-item .grid {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.shop-order-item .grid .left-side {
  min-width: 200px;
}
@media (max-width: 1200px) {
  .shop-order-item .grid .left-side {
    min-width: 100%;
    margin-top: 10px;
  }
}
.shop-order-item .grid .left-side .date {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  text-align: right;
  letter-spacing: 0.04em;
  color: #2B2A2A;
  margin: 0;
}
@media (max-width: 1200px) {
  .shop-order-item .grid .left-side .date {
    text-align: left;
  }
}
.shop-order-item .grid .left-side .btn {
  height: 44px;
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 2px;
}
.shop-order-item .grid .left-side .btn.change {
  background: #767676;
}
.shop-order-item .grid .left-side .btn.confirm {
  background: #FF103B;
}
.shop-order-item .grid .right-side {
  display: flex;
  width: 70%;
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side {
    flex-direction: column;
    width: 100%;
  }
}
.shop-order-item .grid .right-side a.title {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #2B2A2A;
  margin-right: 32px;
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side a.title {
    margin-bottom: 10px;
  }
}
.shop-order-item .grid .right-side .state {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #767676;
}
.shop-order-item .grid .right-side .state.deliverd {
  color: #FF9A02;
}
.shop-order-item .grid .right-side .state.sent {
  color: #219653;
}
.shop-order-item .grid .right-side .info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side .info {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side .info .item {
    margin-left: 0 !important;
  }
}
.shop-order-item .grid .right-side .info .item ul {
  padding: 0;
  margin: 0;
}
.shop-order-item .grid .right-side .info .item li {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #ADADAD;
  list-style: none;
  margin-bottom: 16px;
}
.shop-order-item .grid .right-side .info .item li span {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.04em;
  color: #181818;
  margin-left: 10px;
}
.shop-order-item .grid .right-side .info .item li span.total-sum {
  color: #FF103B;
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox] + label {
  display: flex;
  cursor: pointer;
  margin-bottom: 19px;
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox] {
  display: none;
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox] + label:before {
  content: "✔";
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: flex;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 18px;
  vertical-align: bottom;
  color: transparent;
  transition: 0.2s;
}
.owl-item img{
  {% comment %} object-position:90% 10%; {% endcomment %}
  object-position:center;
  height: 80vmin;
  object-fit: cover;
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox] + label:active:before {
  transform: scale(0);
}
.shop-order-item .grid .right-side .info .checkbox input[type=checkbox]:checked + label:before {
  color: black;
}
.shop-order-item .grid .right-side .info .checkbox.unable input[type=checkbox] + label {
  pointer-events: none;
}
.shop-order-item .grid .right-side .info .checkbox.unable:hover {
  cursor: not-allowed;
}
.shop-order-item .grid .right-side .images-blocks {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side .images-blocks {
    flex-wrap: wrap;
    justify-content: inherit;
  }
}
.shop-order-item .grid .right-side .images-blocks .img {
  width: 102px;
  height: 130px;
  border-radius: 2px;
  margin-right: 16px;
}
@media (max-width: 960px) {
  .shop-order-item .grid .right-side .images-blocks .img {
    margin-bottom: 10px;
  }
}
.shop-order-item .grid .right-side .images-blocks .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.shop-order-item .grid .right-side .images-blocks .show-more {
  width: 102px;
  height: 130px;
  background: linear-gradient(0deg, #FFFFFF, #FFFFFF), #C4C4C4;
  border: 1px solid #ADADAD;
  box-sizing: border-box;
  border-radius: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: normal;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.04em;
  color: #767676;
  transition: 0.3s;
}
.shop-order-item .grid .right-side .images-blocks .show-more:hover {
  border: 1px solid #898989;
  background: linear-gradient(0deg, #f2efef, #fffbfb), #463f3f;
}
.shop-order-item .link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
}

.shop-order-item:nth-child(1) {
  margin-top: 12px;
}

.main-page {
  background-color: #ffffff;
  min-height: 500px;
}
@media (max-width: 840px) {
  .main-page .grid-global .left-side-global.left-side-hidden {
    width: 0;
    min-width: 0;
    margin: 0;
  }
}
.main-page .grid-global .left-side-global.left-side-hidden h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 21px;
  color: #181818;
}
@media (max-width: 840px) {
  .main-page .grid-global .right-side-global {
    margin: 24px 0;
    padding: 0;
  }
}
.main-page .grid-global .right-side-global .main-slider .owl-item img {
  border-radius: 2px;
  object-fit:cover;
  height:100%;
}


.main-page .grid-global .right-side-global .main-slider .slider-item {
  position: relative;
  height: 348px;
}
@media (max-width: 600px) {
  .main-page .grid-global .right-side-global .main-slider .slider-item {
    height: 240px;
  }
}
.main-page .grid-global .right-side-global .main-slider .slider-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.main-page .grid-global .right-side-global .main-slider .owl-dots {
  display: flex;
  justify-content: center;
  margin: 12px 0 0;
}
.main-page .grid-global .right-side-global .main-slider .owl-dots .owl-dot {
  background: #BFBFBF;
  border-radius: 2px;
  width: 8px;
  height: 4px;
  margin-right: 12px;
}
.main-page .grid-global .right-side-global .main-slider .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.main-page .grid-global .right-side-global .main-slider .owl-dots .owl-dot.active {
  background: #FF103B;
}
.main-page .new-products h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.main-page .new-products .products-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
@media (max-width: 1200px) {
  .main-page .new-products .products-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .main-page .new-products .products-list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 6px;
  }
}
@media (max-width: 460px) {
  .main-page .new-products .products-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.main-page .our-markets h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.main-page .our-markets .markets-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 12px;
}
@media (max-width: 1200px) {
  .main-page .our-markets .markets-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 960px) {
  .main-page .our-markets .markets-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .main-page .our-markets .markets-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.main-page .our-markets .markets-list .market-item {
  position: relative;
}
.main-page .our-markets .markets-list .market-item img {
  width: 100%;
}
.main-page .our-markets .markets-list .market-item a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.main-page .about-marketplace h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.main-page .about-marketplace .ck-editor-text p {
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
  margin: 0;
}

.edit-shop {
  padding-bottom: 40px;
}

.info-shop {
  border-bottom: 1px solid #BFBFBF;
  padding: 0 0 36px;
}
@media (max-width: 840px) {
  .info-shop {
    display: flex;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .info-shop {
    display: block;
    width: 100%;
  }
}
.info-shop .shop-logo {
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 840px) {
  .info-shop .shop-logo {
    width: 50%;
  }
}
@media (max-width: 500px) {
  .info-shop .shop-logo {
    width: 70px;
  }
}

.name-shop{
  
}

.info-shop .info-shop-items .info-shop-item {
  display: flex;
  align-items: center;
}
@media (max-width: 840px) {
  .info-shop .info-shop-items .info-shop-item {
    margin: 0 0 12px 50px;
  }
}
@media (max-width: 500px) {
  .info-shop 
  .info-shop-items 
  .info-shop-item {
    margin: 22px 0 0;
  }
}
.info-shop .info-shop-items .info-shop-item a {
  display: flex;
  align-items: center;
}
.info-shop .info-shop-items .info-shop-item a:hover .text {
  color: #FF9A02;
}
.info-shop .info-shop-items .info-shop-item a:hover .icon {
  filter: opacity(1);
}
.info-shop .info-shop-items .info-shop-item .text {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 14px;
  color: #181818;
  margin: 3px 0 0 10px;
  transition: 0.3s;
}

.main-info-shop {
  border-bottom: 1px solid #BFBFBF;
}
.main-info-shop .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  .main-info-shop .flex {
    flex-wrap: wrap;
  }
}
.main-info-shop .flex .left {
  display: flex;
  flex-wrap: wrap;
}
.main-info-shop .flex .left h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
.main-info-shop .flex .right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.main-info-shop .flex .right form {
  margin: 0;
  flex-grow: 0;
}
@media (max-width: 392px) {
  .main-info-shop .flex .right form {
    margin: 0 0 10px;
  }
}
.main-info-shop .flex .right .subscribes {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.main-info-shop .flex .right .subscribes .text {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  color: #181818;
  margin: 0 0 0 10px;
}
.main-info-shop .flex .right .likes {
  display: flex;
  align-items: center;
}
.main-info-shop .flex .right .likes .text {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  color: #BFBFBF;
  margin: 0 10px 0 0;
}
.main-info-shop .flex .right .likes .icon-rectangle {
  background: #FFFFFF;
  border: 1.5px solid #EEEEEE;
  border-radius: 2px 0px 0px 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-info-shop .flex .right .likes .icon-rectangle:last-child .count {
  margin: 3px 0 0 10px;
}
.main-info-shop .flex .right .likes .icon-rectangle .count {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 15px;
  text-align: center;
  color: #BFBFBF;
  margin: 3px 10px 0 0;
}
.main-info-shop .flex .right .likes .icon-rectangle:last-child {
  border-radius: 0px 2px 2px 0px;
  margin: 0 0 0 -1.5px;
}
.main-info-shop .flex .right .likes .icon-rectangle .icon {
  margin: 8px 10px;
}
.main-info-shop .category-shop {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  margin: 0;
  color: #BFBFBF;
}
.main-info-shop .shop-description * {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 175%;
  margin: 0;
  color: #000000;
}
.main-info-shop .shop-description .my-button-css {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 175%;
  margin: 0;
  color: #FF9A02;
  cursor: pointer;
}

.shop-nav .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.shop-nav .flex a {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  padding: 0;
  color: #767676;
  transition: 0.3s;
  position: relative;
}
.shop-nav .flex a .count {
  position: absolute;
  top: -18px;
  right: -16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  color: #FFFDFD;
  background-color: #FF103B;
}
@media (max-width: 960px) {
  .shop-nav .flex a {
    margin: 0 36px 16px 0;
  }
}
.shop-nav .flex a:hover {
  color: #FF103B;
}
.shop-nav .flex a.shop-products {
  color: #181818;
}
.shop-nav .flex a.shop-products:hover {
  color: #FF103B;
}
.shop-nav .flex a.shop-products span {
  color: #767676;
}

.shop-content {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 150%;
}

@media (max-width: 840px) {
  .grid-shop {
    flex-wrap: wrap;
  }
  .grid-shop .left-side-global {
    width: 100%;
    min-width: 100%;
  }
}
.shop-item-columg {
  display: flex;
  flex-direction: column;
}

.product-detail .flex {
  display: flex;
}
@media (max-width: 1200px) {
  .product-detail .flex {
    flex-wrap: wrap;
  }
}
@media (max-width: 960px) {
  .product-detail .left {
    margin: 0;
    overflow: hidden;
  }
}
.product-detail .left .product-item {
  width: 500px;
  min-width: 500px;
  border: 0;
}
@media (max-width: 960px) {
  .product-detail .left .product-item {
    width: 100%;
    min-width: 100%;
  }
}
.product-detail .left .product-item:hover {
  background: transparent;
  border: 0;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 0;
}
.product-detail .left .product-slider {
  position: relative;
}
.product-detail .left .product-slider .owl-item img {
  border-radius: 2px;
  height:100%;
}
.product-detail .left .product-slider .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  width: 176px;
  min-width: 176px;
  height: 36px;
  align-items: center;
  padding: 0 6px;
  z-index: 10;
}
.product-detail .left .product-slider .owl-nav .owl-prev {
  display: flex;
  align-items: center;
}
.product-detail .left .product-slider .owl-nav .owl-next {
  display: flex;
  align-items: center;
}
.product-detail .left .product-slider .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px 2px 0px 0px;
  width: 176px;
  min-width: 176px;
  height: 36px;
  align-items: center;
  z-index: 5;
}
.product-detail .left .product-slider .owl-dots .owl-dot {
  background: rgba(24, 24, 24, 0.4);
  border-radius: 2px;
  width: 8px;
  height: 4px;
  margin-right: 12px;
  z-index: 11;
}
.product-detail .left .product-slider .owl-dots .owl-dot:last-child {
  margin-right: 0;
}
.product-detail .left .product-slider .owl-dots .owl-dot.active {
  background: #FF103B;
}
.product-detail .right {
  width: 100%;
}
.product-detail .product-info h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
  color: #181818;
  padding: 0;
}
.product-detail .product-info .category {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #767676;
  border-bottom: 1px solid #BFBFBF;
  padding: 0 0 16px;
}
.product-detail .product-info .price {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.product-detail .product-info .price span {
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  line-height: 37px;
  color: #ADADAD;
}
.product-detail .product-info .old-price {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 21px;
  text-decoration-line: line-through;
  color: #ADADAD;
}
.product-detail .product-info .red-btn {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.product-detail .product-info .red-btn:hover {
  box-shadow: 0px 10px 12px rgba(234, 2, 2, 0.3);
}
.product-detail .product-info .btn-cart {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.product-detail .product-info .btn-cart.active {
  color: #FF103B;
  background: #ffffff;
  border: 1px solid #FF103B;
}
.product-detail .product-info .btn-cart:hover {
  box-shadow: 0px 10px 12px rgba(234, 2, 2, 0.3);
}
@media (max-width: 1200px) {
  .product-detail .product-info .btn-cart {
    max-width: 368px;
  }
}
.product-detail .product-info .one-click-btn {
  border-radius: 2px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9A02;
  background: transparent;
  height: 44px;
  width: 100%;
  position: relative;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s;
}
.product-detail .product-info .one-click-btn:hover {
  box-shadow: 0px 4px 12px rgba(47, 44, 44, 0.05);
}
@media (max-width: 1200px) {
  .product-detail .product-info .one-click-btn {
    max-width: 368px;
  }
}
.product-detail .product-info .product-description .ck-editor-text h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
  padding: 0;
}
.product-detail .product-info .product-description .ck-editor-text p {
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 175%;
  color: #181818;
  margin: 0;
  padding: 0;
}
.product-detail .product-info .product-description .my-button-css {
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 175%;
  margin: 0;
  color: #FF9A02;
  cursor: pointer;
}

.product-info-block .block-item .title {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ADADAD;
  width: 100px;
  display: inline-block;
}
.product-info-block .block-item .value {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.product-info-block .block-item a.value {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  text-decoration-line: underline;
  color: #FF9A02;
}

.search-head .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.search-head .flex h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
  margin: 0;
}
@media (max-width: 1056px) {
  .search-head .flex h1 {
    margin: 0 0 12px;
  }
}
@media (max-width: 960px) {
  .search-head .flex h1 {
    font-size: 36px;
    line-height: normal;
  }
}

.shop-create-page {
  background-color: #ffffff;
  padding: 24px 0 100px;
}
.shop-create-page .create-shop-main h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main h1 {
    font-size: 36px;
    line-height: normal;
  }
}
.shop-create-page .create-shop-main form {
  margin: 0;
}
.shop-create-page .create-shop-main .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .shop-create-page .create-shop-main .flex {
    flex-wrap: wrap;
  }
}
.shop-create-page .create-shop-main .flex .right {
  width: 100%;
}
@media (max-width: 1200px) {
  .shop-create-page .create-shop-main .flex .right {
    margin: 36px 0 0;
  }
}
@media (max-width: 1200px) {
  .shop-create-page .create-shop-main .flex .right .flex {
    flex-wrap: nowrap;
  }
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main .flex .right .flex {
    flex-wrap: wrap;
  }
  .shop-create-page .create-shop-main .flex .right .flex .central-info-shop {
    margin: 0;
  }
}
.shop-create-page .create-shop-main .flex .working-time .flex {
  display: flex;
  align-items: center;
}
@media (max-width: 382px) {
  .shop-create-page .create-shop-main .flex .working-time .flex {
    flex-wrap: wrap;
  }
  .shop-create-page .create-shop-main .flex .working-time .flex .text {
    margin: 0 24px 16px 0;
  }
}
.shop-create-page .create-shop-main .flex .working-time .flex .text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 130%;
  color: #767676;
}
.shop-create-page .create-shop-main .flex .working-time .flex .input-date {
  border: 1px solid #BFBFBF;
  box-sizing: border-box;
  border-radius: 2px;
  width: 94px;
  height: 44px;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 21px;
  text-align: center;
  color: #181818;
}
.shop-create-page .create-shop-main .flex .central-info-shop {
  width: 100%;
  max-width: 432px;
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main .flex .central-info-shop {
    max-width: 100%;
  }
}
.shop-create-page .create-shop-main .flex .central-info-shop .main-info-item:first-child {
  margin: 9px 0 0;
}
.shop-create-page .create-shop-main .flex .other-info-shop {
  width: 100%;
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main .flex .other-info-shop {
    margin: 36px 0 0;
  }
}
.shop-create-page .create-shop-main .flex .other-info-shop .main-info-item:first-child {
  margin: 9px 0 0;
}
.shop-create-page .create-shop-main .shop-description {
  width: 100%;
}
.shop-create-page .create-shop-main .shop-description .grid {
  display: grid;
  grid-gap: 24px;
}
@media (max-width: 960px) {
  .shop-create-page .create-shop-main .shop-description .grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.shop-create-page .create-shop-main .shop-description .grid .description p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #181818;
}
.shop-create-page .create-shop-main .shop-description textarea {
  border: 1px solid #BFBFBF;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 14px;
  color: #181818;
  width: 100%;
  min-height: 150px;
  max-width: 901px;
  font-family: "TT Commons";
}
.shop-create-page .create-shop-main .shop-description textarea::placeholder {
  color: #767676;
  font-family: "TT Commons";
}
.shop-create-page .create-shop-main .map p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  color: #ADADAD;
}
.shop-create-page .create-shop-main .map .map-container {
  border-radius: 2px;
  overflow: hidden;
  max-height: 296px;
  height: 100%;
}
.shop-create-page .create-shop-main .down-block {
  max-width: 100%;
  margin: 48px 0 0;
}
.shop-create-page .create-shop-main .down-block .checkbox-block {
  max-width: 540px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 590px) {
  .shop-create-page .create-shop-main .down-block .checkbox-block {
    flex-direction: column;
  }
}
@media (max-width: 590px) {
  .shop-create-page .create-shop-main .down-block .checkbox-block .checkbox-item {
    margin: 0 0 16px 0;
  }
}
.shop-create-page .create-shop-main .down-block .create-btn {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 292px;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-create-page .create-shop-main .down-block .create-btn:hover {
  box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}

.create-btn-flex {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .create-btn-flex {
    margin: 20px 0 0 !important;
  }
}
@media (max-width: 640px) {
  .create-btn-flex .create-btn {
    margin: 20px 0 0;
    width: 100%;
  }
}

.delete-btn {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  background: #BFBFBF;
  border-radius: 2px;
  height: 44px;
  width: 292px;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.delete-btn:hover {
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.15);
}

.load-image .image-container {
  position: relative;
}
.load-image .image-container.active .delete-img {
  display: block;
}
.load-image .image-container .delete-img {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 5;
  cursor: pointer;
  display: none;
}
.load-image .image-container label {
  text-align: center;
  cursor: pointer;
}
.load-image .image-container label img {
  width: 236px;
  height: 236px;
  max-width: 236px;
  object-fit: contain;
}
.load-image .image-container label input {
  display: none;
}
.load-image .image-container label .load-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.load-image .image-container label .load-flex .text {
  margin: 3px 0 0;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FF9A02;
}

.cart-page {
  background-color: #ffffff;
  padding: 24px 0 64px;
}
.cart-page .cart-main-block form {
  margin: 0;
}
.cart-page .cart-main-block h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}

.flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .flex {
    flex-wrap: wrap;
  }
}
.flex .main-left {
  min-width: 668px;
  width: 668px;
}
@media (max-width: 1200px) {
  .flex .main-left {
    width: 100%;
    min-width: 100%;
  }
}
.flex .main-right {
  width: 100%;
  max-width: 368px;
}
@media (max-width: 1200px) {
  .flex .main-right {
    margin: 36px auto 0;
  }
}

.total-cart {
  border: 1px solid #EEEEEE;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 24px;
  position: sticky;
  top: 110px;
}
.total-cart h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.total-cart .cart-info-items {
  padding: 0 0 36px;
  border-bottom: 1px solid #BFBFBF;
}
.total-cart .cart-info-items .cart-info-item {
  display: flex;
  justify-content: space-between;
}
.total-cart .cart-info-items .cart-info-item .title {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ADADAD;
}
.total-cart .cart-info-items .cart-info-item .value {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.total-cart .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.total-cart .total .text {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.total-cart .total .total-price {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 32px;
  color: #181818;
}
.total-cart .shop-btn {
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-page {
  background-color: #ffffff;
  padding: 24px 0 64px;
}
.order-page h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
@media (max-width: 960px) {
  .order-page h1 {
    font-size: 36px;
    line-height: normal;
  }
}
.order-page .flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 960px) {
  .order-page .flex {
    flex-wrap: wrap;
  }
}
.order-page .flex .left {
  min-width: 432px;
  width: 432px;
}
@media (max-width: 960px) {
  .order-page .flex .left {
    min-width: 100%;
    width: 100%;
  }
}
.order-page .flex .left form {
  margin: 0;
}
.order-page .flex .left form button {
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
}
.order-page .flex .left form button:disabled {
  background: #ADADAD;
  cursor: default;
}
.order-page .flex .right {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 960px) {
  .order-page .flex .right {
    margin: 36px 0 0;
    max-width: 100%;
  }
}
.order-page .flex .right h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.order-page .flex .right p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
}

.cart-history-page {
  background-color: #ffffff;
  padding: 24px 0 64px;
  min-height: 560px;
}
.cart-history-page .history-main-block h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
@media (max-width: 960px) {
  .cart-history-page .history-main-block h1 {
    font-size: 36px;
    line-height: normal;
  }
}
.cart-history-page .history-main-block .show-more {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 292px;
  margin: 0 auto;
  cursor: pointer;
}
.cart-history-page .history-main-block .show-more.active {
  background: #FF9A02;
}
@media (max-width: 1200px) {
  .cart-history-page .history-main-block .show-more {
    margin: 36px auto 0;
  }
}
.cart-history-page .history-main-block .history-main-item .date-block .date {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #FF9A02;
}
.cart-history-page .history-main-block .history-main-item .date-block .time {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000;
  margin: 0 0 0 8px;
}
.cart-history-page .history-main-block .history-main-item .history-item {
  display: none;
}
.cart-history-page .history-main-block .history-main-item .history-item.show {
  display: block;
}
.cart-history-page .history-main-block .pagination {
  justify-content: center;
}

.login-page {
  background-color: #fff;
  padding: 24px 0 135px;
}
.login-page h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.login-page form {
  margin: 0;
}
.login-page form .check-label input:focus + .emul-label {
  top: -13px !important;
  font-size: 12px !important;
  line-height: 120% !important;
  color: #A9A9A9 !important;
}
.login-page form .check-label .emul-label {
  font-size: 16px !important;
  line-height: 130% !important;
  color: #767676 !important;
  top: 4px !important;
}
.login-page form .check-label.value-exists .emul-label {
  top: -13px !important;
  font-size: 12px !important;
  line-height: 120% !important;
  color: #A9A9A9 !important;
}
.login-page form .not-login {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #4368EC;
  display: block;
}
.login-page form .red-btn {
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
}
.login-page form .red-btn:disabled {
  background: #ADADAD;
  cursor: default;
}
.login-page form .red-btn:disabled:hover {
  box-shadow: none;
}
.login-page form .red-btn:hover {
  box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}
.login-page form .sign-in-btn {
  background: #FFFFFF;
  border-radius: 2px;
  height: 44px;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF9A02;
  transition: 0.3s;
}
.login-page form .sign-in-btn:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.05);
}
.login-page .login-with-social p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  margin: 0;
  color: #BFBFBF;
}
.login-page .login-with-social .socials-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
@media (max-width: 435px) {
  .login-page .login-with-social .socials-list {
    flex-wrap: wrap;
  }
}
.login-page .login-with-social .socials-list .social-items {
  position: relative;
  transition: 0.3s;
}
@media (max-width: 435px) {
  .login-page .login-with-social .socials-list .social-items {
    margin: 0;
  }
}
.login-page .login-with-social .socials-list .social-items:after {
  transition: 0.3s;
}
.login-page .login-with-social .socials-list .social-items:hover:after {
  content: "";
  background: #FF103B;
  border-radius: 8px;
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  width: 32px;
  height: 4px;
}
.login-page .user-login {
  display: flex;
  align-items: center;
}
.login-page .user-login .avatar {
  display: inline-block;
}
.login-page .user-login .avatar img {
  width: 48px;
  height: 48px;
  min-width: 48px;
}
.login-page .user-login span {
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  color: #181818;
}
.login-page .dark-gray .check-label .emul-label {
  color: #767676 !important;
}
.login-page .light-gray .check-label .emul-label {
  color: #BFBFBF !important;
}

.mini-container {
  width: 403px;
  min-width: 403px;
  margin: 0 auto;
}
@media (max-width: 435px) {
  .mini-container {
    width: 100%;
    min-width: 100%;
  }
}

.login-recovery p {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #BFBFBF;
}
.login-recovery span {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: #ffffff;
  display: block;
}
.login-recovery .gray-btn {
  background: #ADADAD;
  border-radius: 2px;
  width: 100%;
  height: 44px;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  padding: 0 24px;
}
.login-recovery .gray-btn span {
  font-family: "TT Commons", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #ffffff;
}
.login-recovery .counting-button {
  background: #ADADAD;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 24px;
}
.login-recovery .counting-button:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
}
.login-recovery .counting-button.orange {
  background: #FF9A02;
  justify-content: center;
}
.login-recovery .counting-button span {
  font-family: "TT Commons";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}

.orange-btn {
  background: #FF9A02;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.orange-btn:disabled {
  background: #ADADAD;
  cursor: default;
}
.orange-btn:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.1);
}

.password-input {
  position: relative;
}
.password-input .show-pass {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 5;
}
.password-input .text-input {
  position: relative;
}

.phone-change h1 {
  text-align: center;
  font-size: 48px;
}
.phone-change button a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}
.phone-change .emul-label {
  font-size: 16px !important;
}
.phone-change .message-counting p {
  text-align: center;
  margin: 0 0 6px 0;
  color: #BFBFBF;
  font-size: 16px;
}
.phone-change .message-counting .counting-button {
  cursor: pointer;
  display: flex;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #FFFFFF;
  border: 0;
  transition: 0.3s;
  justify-content: center;
  align-items: center;
  padding: 5px 24px;
}
.phone-change .message-counting .counting-button:hover {
  box-shadow: 0 4px 12px rgba(47, 44, 44, 0.15);
}
.phone-change .message-counting .counting-button span {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
}
.phone-change .message-counting .counting-button #timer {
  display: none;
}
.phone-change .message-counting .counting-button.pointer-none {
  background: #767676 !important;
  justify-content: space-between;
}
.phone-change .message-counting .counting-button.pointer-none:hover {
  cursor: not-allowed;
}
.phone-change .message-counting .counting-button.pointer-none #timer {
  display: block;
}
.phone-change .buttons {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 460px) {
  .phone-change .buttons {
    flex-direction: column-reverse;
  }
  .phone-change .buttons button {
    width: 100% !important;
    margin-top: 10px;
  }
}
.phone-change .buttons .btn {
  width: 45%;
  border-radius: 2px;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  padding: 16px 0 12px 0;
  color: #FFFFFF;
  cursor: pointer;
}
.phone-change .buttons .btn.cancel {
  color: #181818;
  background: none;
  border: none;
  transition: 0.5s;
}
.product-create-page {
  background-color: #ffffff;
  padding: 24px 0 64px;
}
.product-create-page .create-product-main h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
.product-create-page .create-product-main form {
  margin: 0;
}
.product-create-page .create-product-main .main-flex {
  display: flex;
}
@media (max-width: 1200px) {
  .product-create-page .create-product-main .main-flex {
    flex-wrap: wrap;
  }
}
.product-create-page .create-product-main .main-flex .main-left {
  width: 700px;
  min-width: 700px;
}
@media (max-width: 1200px) {
  .product-create-page .create-product-main .main-flex .main-left {
    width: 100%;
    min-width: 100%;
  }
}
.product-create-page .create-product-main .main-flex .main-left .flex {
  display: flex;
}
.product-create-page .create-product-main .main-flex .main-left .flex .filepond--browser.filepond--browser {
  margin: 30px 0 0 0;
}
.product-create-page .create-product-main .main-flex .main-left .flex .filepond--root {
  min-height: 390px !important;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left {
  width: 236px;
  min-width: 236px;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .load-flex-parent .img-load {
  width: 204px;
  height: 298px;
  margin: 44px 0 0 0;
  border-radius: 6px;
  overflow: hidden;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .load-flex-parent .img-load img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .load-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .load-flex .text {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FF9A02;
  margin: 0 0 0 4px;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .filepond--drop-label {
  background-color: #ffffff;
  display: flex;
  align-items: flex-start;
}
.product-create-page .create-product-main .main-flex .main-left .flex .left .filepond--panel {
  background-color: #ffffff;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right {
  width: 100%;
}
@media (max-width: 1200px) {
  .product-create-page .create-product-main .main-flex .main-left .flex .right {
    margin: 36px 0 0;
  }
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .about-product textarea {
  border: 1px solid #BFBFBF;
  box-sizing: border-box;
  border-radius: 2px;
  padding: 16px;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
  width: 100%;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .about-product textarea::placeholder {
  color: #767676;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 120%;
  color: #A9A9A9;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice {
  display: flex;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label .text {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 90%;
  color: #181818;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label input {
  display: none;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label input:checked + .indicator:after {
  background: #FF103B;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label .indicator {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid #FF9A02;
  border-radius: 13px;
  margin: 0 0 3px;
}
.product-create-page .create-product-main .main-flex .main-left .flex .right .artikul .artikul-choice .radiobutton-item label .indicator:after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 2px;
  bottom: 2px;
  background: #BFBFBF;
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  transition: 0.3s;
}
.product-create-page .create-product-main .main-flex .main-left .category-block h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul {
  list-style: none;
  padding: 0;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li {
  border: 1px solid #EEEEEE;
  box-sizing: border-box;
  border-radius: 2px;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li.acc_active {
  border: 1px solid #FFC702;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li.acc_active .title {
  border: 0;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li.acc_active .title:after {
  background-image: url(../svg/acc-minus.svg);
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li .title {
  height: 52px;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 6px 16px 0;
  cursor: pointer;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
  position: relative;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li .title:after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  bottom: 18px;
  background-image: url(../svg/acc-plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.product-create-page .create-product-main .main-flex .main-left .category-block ul li .body .flex-category {
  display: flex;
  margin: 16px 32px;
}
.product-create-page .create-product-main .main-flex .main-left .flex-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-create-page .create-product-main .main-flex .main-left .red-btn {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 292px;
  border: 0;
  cursor: pointer;
  transition: 0.3s;
  margin: 48px auto 0 auto;
}
.product-create-page .create-product-main .main-flex .main-left .red-btn:hover {
  box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}
.product-create-page .create-product-main .main-flex .main-right {
  width: 100%;
}
@media (max-width: 1200px) {
  .product-create-page .create-product-main .main-flex .main-right {
    margin: 48px 0 0;
  }
}
.product-create-page .create-product-main .main-flex .main-right h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.product-create-page .create-product-main .main-flex .main-right p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
}

.error-message_front {
  display: none;
}
.error-message_front .error-message {
  font-weight: normal;
  font-size: 16px;
  line-height: 100%;
  color: #FF103B;
  margin: 0 0 12px 0;
}

.filepond--root .filepond--credits {
  display: none !important;
}

.profile-page {
  padding: 24px 0 64px;
  background-color: #ffffff;
  min-height: 560px;
}
.profile-page h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 55px;
  color: #181818;
}
@media (max-width: 960px) {
  .profile-page h1 {
    font-size: 36px;
    line-height: normal;
  }
}
@media (max-width: 360px) {
  .profile-page h1 {
    margin-top: 20px;
  }
}
.profile-page form {
  margin: 0;
}
.profile-page .flex {
  display: flex;
  justify-content: space-between;
}
.profile-page .flex .left {
  width: 403px;
  min-width: 403px;
}
@media (max-width: 430px) {
  .profile-page .flex .left {
    width: 100%;
    min-width: 100%;
  }
}
.profile-page .flex .left .change-password-block h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 37px;
  color: #181818;
}
.profile-page .flex .left button {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #FFFFFF;
  background: #FF103B;
  border-radius: 2px;
  height: 44px;
  width: 100%;
  border: 0;
  cursor: pointer;
}
.profile-page .flex .left button.parent-box {
  position: relative;
}
.profile-page .flex .left button a {
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-page .flex .right {
  width: 100%;
  max-width: 400px;
}
@media (max-width: 960px) {
  .profile-page .flex .right {
    margin: 36px 0 0;
  }
}
.profile-page .flex .right h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #000000;
}
.profile-page .flex .right p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 175%;
  color: #181818;
}
.profile-page.centered h1 {
  text-align: center;
}
.profile-page.centered .flex {
  justify-content: center;
}

.global-input {
  position: relative;
}
.global-input .input-text.readonly + .emul-label {
  top: -12px;
}
.global-input .edit-input {
  position: absolute;
  right: 0;
  top: -4px;
  z-index: 5;
}
.global-input .text-input {
  position: relative;
}

.edit-shop .shop_btns .red-btn {
  background: #FF103B;
  border-radius: 2px;
  height: 36px;
  width: 100%;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: 0.3s;
}
@media (max-width: 840px) {
  .edit-shop .shop_btns .red-btn {
    margin: 0 0 20px 50px;
  }
  .edit-shop .shop_btns .red-btn:last-child {
    margin: 0 0 0 50px;
  }
}
@media (max-width: 500px) {
  .edit-shop .shop_btns .red-btn {
    margin: 0 0 20px;
  }
  .edit-shop .shop_btns .red-btn:last-child {
    margin: 0;
  }
 .shop-info-top .shop-logo{
    height:70px;
    border-radius:50%;
  }
 .shop-info-top .shop-logo img{
  width:100%;
  height:100%;
  object-fit:cover;
 }
 .shop-info-top{
  display:flex;
  gap:10px;
  font-weight:700;
  font-size:24px
 }
 .shop-info-mobile{
  display:flex;
  gap:7px;
  font-size:18px;
  font-weight:500;
  align-items:center;
 }
 .rating-stars-shop .star{
  color:gold;
  line-height:20px;
 }
 .rating-stars-shop{
  display:flex;
  align-items:center;
 }
 .rating-stars-shop2{
  display:flex;
  gap:2px;
 }
 .shop-socials{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px
 }
 .info-shop .info-shop-items .shop-socials .info-shop-item{
  margin-top:0;
 }
 .shop-info-content-mobile{
  display:block;
 }
}
.edit-shop .shop_btns .red-btn:hover {
  box-shadow: 0 10px 12px rgba(234, 2, 2, 0.3);
}
.edit-shop .all-function {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #FFFFFF;
  border: 1.5px solid #EEEEEE;
  border-radius: 0px 2px 2px 0px;
  width: 105px;
  height: 35px;
  min-width: 105px;
  position: absolute;
  right: 20px;
  top: 20px;
}
.edit-shop .all-function .func {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.33%;
  border-right: 1px solid #EEEEEE;
  cursor: pointer;
}
.edit-shop .all-function .func:last-child {
  border-right: 0;
}
.edit-shop .banner .slider-item {
  background: radial-gradient(81.94% 196.41% at 6.28% 13.22%, #F0F0F0 0%, #F0F0F0 100%);
  border-radius: 2px;
  width: 100%;
  position: relative;
  height: 348px;
  overflow: hidden;
}
.edit-shop .banner .slider-item img {
  display: block;
  margin: auto;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.modal-delete-banner .modal-container {
  padding: 90px 54px 64px;
}
.modal-delete-banner .modal-container img {
  margin: 0 auto;
  display: block;
}

.detail-order-page .container .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.detail-order-page .container .date {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 28px;
  color: #181818;
}
.detail-order-page .container .date .orange {
  color: #FF9A02;
}
.detail-order-page .container .main-block {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .detail-order-page .container .main-block {
    flex-wrap: wrap;
  }
  .detail-order-page .container .main-block .right-side {
    margin: 0 auto;
  }
}
.detail-order-page .container .main-block .left-side {
  min-width: 768px;
  width: 768px;
}
@media (max-width: 1200px) {
  .detail-order-page .container .main-block .left-side {
    min-width: 100%;
    width: 100%;
  }
}
.detail-order-page .container .main-block .left-side .order-detail-card {
  display: flex;
  border-bottom: 2px solid #ADADAD;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
@media (max-width: 460px) {
  .detail-order-page .container .main-block .left-side .order-detail-card {
    flex-direction: column;
  }
  .detail-order-page .container .main-block .left-side .order-detail-card .img {
    margin: 0 auto 10px;
  }
}
.detail-order-page .container .main-block .left-side .order-detail-card .img {
  width: 204px;
  min-width: 204px;
}
.detail-order-page .container .main-block .left-side .order-detail-card .img img {
  width: 100%;
  border-radius: 2px;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info .description {
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 150%;
  color: #000000;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info .category {
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
  color: #767676;
  border-bottom: 1px solid #BFBFBF;
  padding-bottom: 24px;
}
@media (max-width: 960px) {
  .detail-order-page .container .main-block .left-side .order-detail-card .info .category {
    padding-top: 10px;
  }
}
.detail-order-page .container .main-block .left-side .order-detail-card .info ul {
  padding: 0;
  margin: 0;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info ul li {
  list-style: none;
  font-weight: normal;
  padding-bottom: 24px;
  margin: 0;
  font-style: normal;
  font-size: 16px;
  line-height: 18px;
  color: #181818;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info ul li span {
  min-width: 100px;
  display: inline-block;
  color: #ADADAD;
}
.detail-order-page .container .main-block .left-side .order-detail-card .info ul li.total {
  color: #FF103B;
  margin-top: 30px;
}
@media (max-width: 960px) {
  .detail-order-page .container .main-block .left-side .order-detail-card .info ul li.total {
    margin-top: 5px;
  }
}
.detail-order-page .container .main-block .right-side {
  width: 100%;
  max-width: 368px;
}

.mb-50 {
  margin: 0 0 50px 0;
}

.mr-32 {
  margin: 0 32px 0 0;
}

.mb-22 {
  margin: 0 0 22px;
}

.mt-22 {
  margin: 22px 0 0;
}

.mb-24 {
  margin: 0 0 24px;
}

.mt-16 {
  margin: 16px 0 0;
}

.mt-24 {
  margin: 24px 0 0;
}

.mt-12 {
  margin: 12px 0 0;
}

.mr-24 {
  margin: 0 24px 0 0;
}

.mb-12 {
  margin: 0 0 12px;
}

.mb-10 {
  margin: 0 0 10px;
}

.mb-8 {
  margin: 0 0 8px;
}

.mb-64 {
  margin: 0 0 64px;
}

.mr-20 {
  margin: 0 20px 0 0;
}

.mr-48 {
  margin: 0 48px 0 0;
}

.mb-16 {
  margin: 0 0 16px;
}

.mb-36 {
  margin: 0 0 36px;
}

.mr-36 {
  margin: 0 36px 0 0;
}

.mb-55 {
  margin: 0 0 55px 0;
}

.mt-36 {
  margin: 36px 0 0;
}

.ml-8 {
  margin: 0 0 0 8px;
}

.mr-12 {
  margin: 0 12px 0 0;
}

.mt-54 {
  margin: 54px 0 0;
}

.mrl-16 {
  margin: 0 16px;
}

.mb-6 {
  margin: 0 0 6px;
}

.mr-56 {
  margin: 0 56px 0 0;
}

.mt-48 {
  margin: 48px 0 0;
}

.mt-60 {
  margin: 60px 0 0;
}

.mt-8 {
  margin: 8px 0 0;
}

.mr-110 {
  margin: 0 110px 0 0;
}

.mt-50 {
  margin: 50px 0 0;
}

.mt-56 {
  margin: 56px 0 0;
}

.mt-95 {
  margin: 95px 0 0;
}

.mt-70 {
  margin: 70px 0 0;
}

.mt-24 {
  margin: 24px 0 0;
}

.mr-42 {
  margin: 0 42px 0 0;
}

.mr-22 {
  margin: 0 22px 0 0;
}

.mr-68 {
  margin: 0 68px 0 0;
}

.mt-44 {
  margin: 44px 0 0;
}

.ml-10 {
  margin: 0 0 0 10px;
}

.mb-20 {
  margin: 0 0 20px;
}

.mt-68 {
  margin: 68px 0 0;
}

.ml-25 {
  margin: 0 0 0 25px;
}

.ml-24 {
  margin: 0 0 0 25px;
}

.ml-43 {
  margin: 0 0 0 43px;
}

.mb-30 {
  margin: 0 0 30px 0;
}

.mt-90 {
  margin: 90px 0 0;
}

.mr-16 {
  margin: 0 16px 0 0;
}

.mt-6 {
  margin: 6px 0 0;
}

.mt-32 {
  margin: 32px 0 0;
}

/* Category Page Styles */
.tap-category-page {
  padding-bottom: 80px;
}
.tap-category-page .container {
  max-width: 1440px;
  padding: 0 32px;
}
@media (max-width: 1440px) {
  .tap-category-page .container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .tap-category-page .container {
    padding: 0 16px;
  }
}
.tap-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 10px 0;
}
.tap-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 15px;
  font-weight: 500;
  color: #121a26;
  text-decoration: none;
  transition: color 0.2s ease;
}
.tap-breadcrumbs__item:hover {
  color: #fe3650;
}
.tap-breadcrumbs__item--current {
  color: #606266;
  opacity: 0.5;
  cursor: default;
}
.tap-breadcrumbs__item--current:hover {
  color: #606266;
}
.tap-breadcrumbs__separator {
  width: 12px;
  height: 12px;
  background: url("../svg/right-arrow.svg") center / contain no-repeat;
  opacity: 0.35;
}
.tap-breadcrumbs .icon-home {
  width: 18px;
  height: 18px;
  background: url("../svg/category-icon/home.svg") center / contain no-repeat;
  display: inline-flex;
}
.tap-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  margin-bottom: 24px;
}
.tap-category-header__title-group {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tap-category-header__title {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.366;
  color: #121a26;
  margin: 0;
}
.tap-category-header__count {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.428;
  color: #606266;
}
.tap-sort-dropdown {
  position: relative;
}
.tap-sort-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: #82868d;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tap-sort-dropdown__trigger:hover {
  background: #6a6d73;
}
.tap-sort-dropdown__icon {
  width: 16px;
  height: 16px;
  background: url("../svg/right-arrow.svg") center / contain no-repeat;
  display: inline-flex;
  filter: brightness(0) invert(1);
  transform: rotate(90deg);
}
.tap-sort-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  min-width: 204px;
  overflow: hidden;
  z-index: 50;
}
.tap-sort-dropdown__menu.show {
  display: block;
}
.tap-sort-dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #121a26;
  text-decoration: none;
  border-bottom: 0.5px solid #d4d6db;
  transition: background 0.2s ease;
}
.tap-sort-dropdown__item:last-child {
  border-bottom: none;
}
.tap-sort-dropdown__item:hover {
  background: #f9f9fa;
}
.tap-sort-dropdown__item.is-active {
  background: #f9f9fa;
}
.tap-sort-dropdown__check {
  width: 12px;
  height: 8px;
  background: url("../svg/check.svg") center / contain no-repeat;
  display: inline-flex;
}
.tap-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 100px;
  margin-top: 80px;
}
.tap-pagination__controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.tap-pagination__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: #f9f9fa;
  cursor: pointer;
  transition: background 0.2s ease;
  padding: 0;
  text-decoration: none;
  color: inherit;
}
.tap-pagination__arrow:hover:not(.tap-pagination__arrow--disabled) {
  background: #ecedf0;
}
.tap-pagination__arrow--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.tap-pagination__arrow .icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}
.tap-pagination__arrow .icon-chevron-left {
  background: url("../svg/left-arrow.svg") center / contain no-repeat;
}
.tap-pagination__arrow .icon-chevron-right {
  background: url("../svg/right-arrow.svg") center / contain no-repeat;
}
.tap-pagination__arrow .icon-chevron-double-left {
  width: 20px;
  height: 20px;
  background: url("../svg/left-arrow.svg") center / contain no-repeat;
  position: relative;
}
.tap-pagination__arrow .icon-chevron-double-left::before {
  content: '';
  position: absolute;
  left: -6px;
  width: 16px;
  height: 16px;
  background: url("../svg/left-arrow.svg") center / contain no-repeat;
}
.tap-pagination__arrow .icon-chevron-double-right {
  width: 20px;
  height: 20px;
  background: url("../svg/right-arrow.svg") center / contain no-repeat;
  position: relative;
}
.tap-pagination__arrow .icon-chevron-double-right::before {
  content: '';
  position: absolute;
  right: -6px;
  width: 16px;
  height: 16px;
  background: url("../svg/right-arrow.svg") center / contain no-repeat;
}
.tap-pagination__pages {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
}
.tap-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  background: #f6f6f7;
  color: #121a26;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.tap-pagination__page:hover {
  background: #ecedf0;
}
.tap-pagination__page--active {
  background: #82868d;
  color: #ffffff;
}
.tap-pagination__page--active:hover {
  background: #82868d;
}
.tap-pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: #121a26;
  font-weight: 600;
  font-size: 15px;
}
.tap-pagination__info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tap-pagination__text {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.666;
  color: #44444f;
}
.tap-pagination__per-page {
  position: relative;
}
.tap-pagination__per-page-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ebecf0;
  background: #ffffff;
  color: #363638;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.tap-pagination__per-page-btn:hover {
  border-color: #d4d6db;
}
.tap-pagination__per-page-btn .icon-chevron-down {
  width: 16px;
  height: 16px;
  background: url("../svg/right-arrow.svg") center / contain no-repeat;
  display: inline-flex;
  opacity: 0.5;
  transform: rotate(90deg);
}
@media (max-width: 1200px) {
  .tap-pagination {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .tap-pagination__controls {
    justify-content: center;
  }
  .tap-pagination__info {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .tap-category-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tap-category-header__title {
    font-size: 24px;
  }
}

/* Product Detail Page */
.tap-product-detail {
  padding-bottom: 80px;
}
.tap-product-detail__content {
  display: grid;
  grid-template-columns: 645px 1fr;
  gap: 64px;
  margin-top: 24px;
}
@media (max-width: 1200px) {
  .tap-product-detail__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.tap-product-gallery {
  display: flex;
  gap: 8px;
}
.tap-product-gallery__thumbnails {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 870px;
  overflow-y: auto;
}
.tap-product-gallery__thumbnail {
  width: 89px;
  height: 120px;
  border-radius: 12px;
  border: 1px solid #ebecf0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.tap-product-gallery__thumbnail:hover {
  border-color: #fe3650;
}
.tap-product-gallery__thumbnail.is-active {
  border: 2px solid #fe3650;
}
.tap-product-gallery__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tap-product-gallery__main {
  position: relative;
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f5f7;
}
.tap-product-gallery__labels {
  position: absolute;
  bottom: 4px;
  right: 4px;
  display: flex;
  gap: 8px;
  z-index: 10;
}
.tap-product-gallery .badge {
  padding: 0;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(6px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(254, 54, 80, 0.9);
}
.tap-product-gallery .badge--new {
  background: rgba(254, 54, 80, 0.9);
}
.tap-product-gallery .badge--discount {
  background: rgba(254, 54, 80, 0.9);
}
.tap-product-gallery__favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 15;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tap-product-gallery__image-container {
  position: relative;
  width: 100%;
  height: 870px;
}
.tap-product-gallery__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.tap-product-gallery__image.is-active {
  opacity: 1;
}
@media (max-width: 1200px) {
  .tap-product-gallery {
    flex-direction: column;
  }
  .tap-product-gallery__thumbnails {
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .tap-product-gallery__thumbnail {
    flex-shrink: 0;
  }
}
.tap-product-info {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.tap-product-info__title {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.366;
  color: #000000;
  margin: 0;
}
.tap-product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tap-product-info__rating-value {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #363638;
  opacity: 0.7;
}
.tap-product-info__rating-value .icon {
  width: 16px;
  height: 16px;
}
.tap-product-info__reviews {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  color: #606266;
  opacity: 0.5;
}
.tap-product-info__reviews .icon {
  width: 16px;
  height: 16px;
}
.tap-product-info__price-panel {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tap-product-info__price {
  display: flex;
  align-items: center;
  gap: 8px;
}
.tap-product-info__price-current {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.366;
  color: #000000;
}
.tap-product-info__price-old {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.366;
  color: #606266;
  opacity: 0.5;
  text-decoration: line-through;
}
.tap-product-info__seller {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #ebecf0;
  border-radius: 12px;
}
.tap-product-info__seller-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.tap-product-info__seller-info {
  display: flex;
  gap: 8px;
  flex: 1;
}
.tap-product-info__seller-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ebecf0;
  flex-shrink: 0;
}
.tap-product-info__seller-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tap-product-info__seller-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9fa;
  font-size: 20px;
  font-weight: 700;
  color: #fe3650;
  text-transform: uppercase;
}
.tap-product-info__seller-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.tap-product-info__seller-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin: 0;
}
.tap-product-info__seller-meta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}
.tap-product-info__seller-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tap-product-info__seller-rating .icon {
  width: 16px;
  height: 16px;
}
.tap-product-info__seller-separator {
  color: #c4c6cc;
  margin: 0 4px;
}
.tap-product-info__seller-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: background 0.2s ease;
}
.tap-product-info__seller-link:hover {
  background: #f9f9fa;
}
.tap-product-info__seller-link .icon {
  width: 16px;
  height: 16px;
}
.tap-product-info__features {
  display: flex;
  gap: 24px;
}
.tap-product-info__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f9f9fa;
  border-radius: 12px;
  flex: 1;
}
.tap-product-info__feature .icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.tap-product-info__feature-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.tap-product-info__feature-label {
  font-size: 15px;
  font-weight: 400;
  color: #606266;
}
.tap-product-info__feature-value {
  font-size: 15px;
  font-weight: 700;
  color: #000000;
}
.tap-product-info__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.tap-product-info__btn--primary {
  background: #fe3650;
  color: #ffffff;
}
.tap-product-info__btn--primary:hover {
  background: #e02e46;
}
.tap-product-info__btn .icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}
.tap-product-info__description {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tap-product-info__description-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.366;
  color: #000000;
  margin: 0;
}
.tap-product-info__description-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.375;
  color: #000000;
}
.tap-product-reviews {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 8px 0;
}
.tap-product-reviews__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.tap-product-reviews__title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tap-product-reviews__title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.366;
  color: #000000;
  margin: 0;
}
.tap-product-reviews__count {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375;
  color: #000000;
}
.tap-product-reviews__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.tap-product-reviews__rating-value {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.444;
  color: #000000;
}
.tap-product-reviews__rating-stars {
  display: flex;
  gap: 2px;
}
.tap-product-reviews__rating-stars .icon {
  width: 24px;
  height: 24px;
}
.tap-product-reviews__rating-stars .icon-rating--empty {
  opacity: 0.3;
}
.tap-product-reviews__item-rating .icon-rating--empty {
  opacity: 0.3;
}
.tap-product-reviews__rating-count {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.444;
  color: #606266;
}
.tap-product-reviews__list {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 24px 0;
}
.tap-product-reviews__item {
  flex: 0 0 400px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #ebecf0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tap-product-reviews__item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.tap-product-reviews__item-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tap-product-reviews__item-name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375;
  color: #000000;
}
.tap-product-reviews__item-date {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.428;
  color: #606266;
  opacity: 0.5;
}
.tap-product-reviews__item-rating {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}
.tap-product-reviews__item-rating .icon {
  width: 20px;
  height: 20px;
}
.tap-product-reviews__item-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.428;
  color: #363638;
  margin: 0;
}
.tap-product-reviews__empty {
  font-size: 14px;
  color: #606266;
  text-align: center;
  padding: 24px;
}
.tap-product-reviews__more-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 10px;
}
.tap-product-reviews__more {
  align-self: center;
  padding: 12px 16px;
  height: auto;
  min-height: 48px;
  font-size: 17px;
  font-weight: 600;
  gap: 8px;
  width: auto;
  min-width: 200px;
}
.tap-product-reviews__more .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.tap-product-reviews__more-link {
  color: #fe3650;
  text-decoration: none;
  margin-left: 4px;
}
.tap-product-reviews__more-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .tap-product-detail {
    padding-top: 100px;
  }
  .tap-product-detail__content {
    gap: 32px;
  }
  .tap-product-info {
    gap: 32px;
  }
  .tap-product-info__title {
    font-size: 20px;
  }
  .tap-product-info__price-current {
    font-size: 24px;
  }
  .tap-product-info__seller-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .tap-product-info__features {
    flex-direction: column;
  }
  .tap-product-reviews__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .tap-product-reviews__item {
    flex: 0 0 300px;
  }
}

@media (max-width: 768px) {




.tap-product-mobile-topbar {
  position: sticky;
  top: 62px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 6px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}
.tap-product-mobile-topbar__spacer {
  flex: 1;
}
.tap-product-mobile-topbar__btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid #ebecf0;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.tap-product-mobile-topbar__btn--back:before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #121a26;
  -webkit-mask: url("../svg/left-arrow.svg") center/18px 18px no-repeat;
  mask: url("../svg/left-arrow.svg") center/18px 18px no-repeat;
  opacity: 0.9;
}
.tap-product-mobile-topbar__btn--share:before {
  content: "";
  width: 18px;
  height: 18px;
  background-color: #121a26;
  -webkit-mask: url("../svg/tap-header/share.svg") center/18px 18px no-repeat;
  mask: url("../svg/tap-header/share.svg") center/18px 18px no-repeat;
  opacity: 0.9;
}
.tap-product-mobile-topbar__favorite {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid #ebecf0;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tap-product-mobile-topbar__favorite .icon {
  width: 18px;
  height: 18px;
}
.tap-product-gallery__favorite {
  display: none;
}
.tap-product-gallery__pager {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}
.tap-product-gallery__main {
  position: relative;
}
/* Hide desktop add-to-cart button on mobile (use sticky bar instead) */
.tap-product-info__btn--primary {
  display: none;
}
.tap-product-sticky-buy {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 86px;
  padding: 10px 12px;
  z-index: 75;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid #ebecf0;
}
.tap-product-sticky-buy__inner {
  max-width: 720px;
}

.tap-mobile-categories__header {
  position: sticky;
  top: 61px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border-bottom: 1px solid #f3f3f3;
}
.tap-mobile-categories__back {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f9f9fa;
  text-decoration: none;
  flex-shrink: 0;
}
.tap-mobile-categories__back .tap-icon {
  width: 20px;
  height: 20px;
  background-color: #121a26;
  -webkit-mask: url("../svg/tap-header/chevron-left.svg") center/20px 20px no-repeat;
  mask: url("../svg/tap-header/chevron-left.svg") center/20px 20px no-repeat;
}
.tap-mobile-categories__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #121a26;
  margin: 0;
  flex: 1;
}
.tap-mobile-categories__list {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.tap-mobile-categories__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  text-decoration: none;
  color: #121a26;
  border-bottom: 1px solid #f3f3f3;
  transition: background 0.2s ease;
}
.tap-mobile-categories__item:active {
  background: #f9f9fa;
}
.tap-mobile-categories__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f9f9fa;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.tap-mobile-categories__item-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tap-mobile-categories__item-icon-placeholder {
  font-size: 20px;
  font-weight: 700;
  color: #606266;
}
.tap-mobile-categories__item-title {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.375;
  color: #121a26;
}
.tap-mobile-categories__item-arrow {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tap-mobile-categories__item-arrow .tap-icon {
  width: 16px;
  height: 16px;
  background-color: #b7bbc2;
  -webkit-mask: url("../svg/tap-header/chevron-right.svg") center/16px 16px no-repeat;
  mask: url("../svg/tap-header/chevron-right.svg") center/16px 16px no-repeat;
}
.tap-mobile-categories__empty {
  padding: 48px 16px;
  text-align: center;
}
.tap-mobile-categories__empty p {
  font-size: 16px;
  font-weight: 400;
  color: #606266;
  margin: 0;
}
.tap-icon--chevron-left {
  width: 20px;
  height: 20px;
  background-color: #121a26;
  -webkit-mask: url("../svg/tap-header/chevron-left.svg") center/20px 20px no-repeat;
  mask: url("../svg/tap-header/chevron-left.svg") center/20px 20px no-repeat;
}
.tap-icon--chevron-right {
  width: 16px;
  height: 16px;
  background-color: #b7bbc2;
  -webkit-mask: url("../svg/tap-header/chevron-right.svg") center/16px 16px no-repeat;
  mask: url("../svg/tap-header/chevron-right.svg") center/16px 16px no-repeat;
}

}

/* FIXES FOR CART BUTTON AND MOBILE GALLERY */

/* 1. Кнопка "В корзину" -> "Добавлено" (Второстепенный цвет) */
.tap-product-info__btn--primary.active {
  background: #f9f9fa !important;
  color: #121a26 !important;
}
.tap-product-info__btn--primary.active .icon {
  filter: brightness(0) !important;
}

/* 2. Sticky кнопка "В корзине" (Второстепенный цвет) */
.tap-product-sticky-buy__btn--added,
.tap-product-sticky-buy__btn.active {
  background: #f9f9fa !important;
  color: #121a26 !important;
}
.tap-product-sticky-buy__btn--added .icon,
.tap-product-sticky-buy__btn.active .icon {
  filter: brightness(0) !important;
}
.tap-product-sticky-buy__btn .icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* 3. Мобильная галерея */
@media (max-width: 768px) {
  .tap-product-detail,
  .tap-product-detail__left,
  .tap-product-gallery,
  .tap-product-gallery__main {
    overflow: visible !important;
  }

  .tap-product-gallery__image-container {
    position: relative;
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    height: auto !important;
    min-height: 400px;
    max-height: 70vh;
    width: 100%;
    touch-action: pan-x;
    will-change: scroll-position;
  }
  
  .tap-product-gallery__image-container::-webkit-scrollbar {
    display: none;
  }
  
  .tap-product-gallery__image {
    position: relative !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 400px;
    max-height: 70vh;
    object-fit: cover;
    scroll-snap-align: start;
    display: block !important;
    opacity: 1 !important;
    top: auto !important;
    left: auto !important;
    pointer-events: auto !important;
  }
  
  .tap-product-gallery__thumbnails {
    display: none !important;
  }
}

/* FIXES FOR MOBILE BOTTOM MENU AND SEARCH PADDING */

/* 1. Mobile Bottom Navigation */
.tap-mobile-nav {
  display: none;
}

@media (max-width: 992px) {
  body {
    padding-bottom: 60px; /* Space for bottom nav */
  }

  .tap-mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #eee;
    z-index: 1000;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    height: auto;
  }

  .tap-mobile-nav__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #888;
    font-size: 10px;
    gap: 4px;
    width: 25%;
    position: relative;
  }

  .tap-mobile-nav__item.active,
  .tap-mobile-nav__item:hover {
    color: #121a26;
  }

  .tap-mobile-nav__icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    opacity: 0.5;
  }

  .tap-mobile-nav__item.active .tap-mobile-nav__icon,
  .tap-mobile-nav__item:hover .tap-mobile-nav__icon {
    opacity: 1;
    filter: brightness(0); /* Make black */
  }

  .tap-mobile-nav__icon--home {
    background-image: url('../svg/category-icon/home.svg');
  }
  .tap-mobile-nav__icon--categories {
    background-image: url('../svg/tap-header/catalog-grid.svg');
  }
  .tap-mobile-nav__icon--basket {
    background-image: url('../svg/icon-cart.svg');
  }
  .tap-mobile-nav__icon--profile {
    background-image: url('../svg/icon-user.svg');
  }

  .tap-mobile-nav__badge {
    position: absolute;
    top: -5px;
    right: calc(50% - 15px);
    background: #FF103B;
    color: #fff;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 10px;
    min-width: 16px;
    text-align: center;
  }
  .tap-mobile-nav__badge.is-hidden {
      display: none;
  }
}

/* FIXES FOR MOBILE HEADER PADDING AND SEARCH TOP POSITION */

@media (max-width: 1200px) {
  /* Убираем отступы у мобильного хедера, чтобы поиск был компактнее */
  .mobile-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    height: auto;
    min-height: 50px; /* Минимальная высота */
    display: flex;
    align-items: center;
  }
  
  .mobile-header .container {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  /* Корректируем высоту плейсхолдера, так как хедер стал меньше */
  .header-placeholder {
    height: 50px !important;
  }

  /* Корректируем позицию выпадающего поиска */
  .mobile-search {
    top: 50px !important;
    padding: 0 !important; /* На всякий случай дублируем */
  }
}


.tap-home .header-placeholder {
    display: none !important;
}
