* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Montserrat;
}
* li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
  background: rgb(255, 255, 255);
}

@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.copyright {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgb(86, 21, 21);
}
.copyright__container {
  width: 100%;
  max-width: 1440px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .copyright__container {
    padding: 0rem 3vw 0rem 3vw;
  }
}
.copyright__content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0 10px 0;
  flex-direction: column;
}
.copyright__content .text {
  color: rgb(255, 255, 255);
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5px;
}
.copyright__content .text:nth-child(2) {
  margin-top: 10px;
}

.navBar {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgb(255, 255, 255);
  position: sticky;
  top: 0;
  z-index: 3;
}
.navBar__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .navBar__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.navBar--desktop.scrolling {
  height: 70px;
}
.navBar--desktop.loading {
  opacity: 0;
}
.navBar--desktop {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  transition: height 0.2s ease-out, opacity 0.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
  opacity: 1;
}
@media (max-width: 769px) {
  .navBar--desktop {
    display: none;
  }
}
.navBar--desktop__parents-wraper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 90%;
  width: 100%;
}
.navBar--desktop__logo-parent {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  min-width: 20px;
}
.navBar--desktop__logo-parent .logo {
  width: 80px;
}
.navBar--desktop__logo-parent:hover .logo {
  color: rgb(122, 48, 48);
}
.navBar--desktop__options-parent {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 2vw;
}
@media (max-width: 1025px) {
  .navBar--desktop__options-parent {
    margin-left: 2vw;
  }
}
.navBar--desktop__options-child {
  cursor: pointer;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navBar--desktop__options-child:hover .text {
  color: rgb(122, 48, 48);
}
.navBar--desktop__options-child:hover .line {
  transform: scaleX(1);
}
.navBar--desktop__wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 0.8rem 0 0.8rem;
  position: relative;
  height: 2.375rem;
}
@media (max-width: 1025px) {
  .navBar--desktop__wraper {
    padding: 0 0.7rem 0 0.7rem;
  }
}
.navBar--desktop__wraper .text {
  font-size: 0.875rem;
  color: rgba(61, 61, 61, 0.8);
  font-weight: 500;
  transition: 0.1s ease-out;
}
.navBar--desktop__wraper .line {
  width: 100%;
  position: absolute;
  height: 2px;
  background-color: rgb(122, 48, 48);
  transform-origin: left;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
  transition: 0.1s ease-out;
}
.navBar--desktop__links-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
}
.navBar--desktop__links-child {
  height: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navBar--desktop__links-child:hover .navBar--desktop__icon path {
  fill: rgb(122, 48, 48);
}
.navBar--desktop__icon-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.4rem 0 0.4rem;
  position: relative;
  height: 2.375rem;
  aspect-ratio: 1/1;
}
.navBar--desktop__icon-wraper:hover .icon path {
  fill: rgb(122, 48, 48);
}
.navBar--desktop__icon-wraper .icon {
  width: 24px;
  height: 24px;
}
.navBar--desktop__icon-wraper .icon path {
  fill: rgba(61, 61, 61, 0.8);
  transition: 0.1s ease-out;
}
.navBar--desktop__icon-wraper .notification {
  position: absolute;
  width: 16px;
  height: 16px;
  outline: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  background-color: rgb(122, 48, 48);
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navBar--desktop__icon-wraper .number {
  color: rgb(255, 255, 255);
  font-size: 0.6875rem;
}
.navBar--mobile.loading {
  opacity: 0;
}
.navBar--mobile {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  transition: opacity 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
  opacity: 1;
}
@media (min-width: 769px) {
  .navBar--mobile {
    display: none;
  }
}
.navBar--mobile__parent-wraper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90%;
  width: 100%;
}
.navBar--mobile__logo-parent {
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}
.navBar--mobile__logo-parent .logo {
  width: 80px;
}
.navBar--mobile__options-parent {
  height: 100%;
  display: flex;
  align-items: center;
}
.navBar--mobile__options-child {
  height: 100%;
  display: flex;
  align-items: center;
}
.navBar--mobile__icon-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0.3rem 0 0.3rem;
  height: 2.375rem;
  aspect-ratio: 1/1;
  position: relative;
}
.navBar--mobile__icon-wraper .icon {
  width: 24px;
  height: 24px;
}
.navBar--mobile__icon-wraper .icon path {
  fill: rgb(61, 61, 61);
}
.navBar--mobile__links-parent {
  height: 100%;
  display: flex;
  align-items: center;
}
.navBar--mobile__links-child {
  height: 100%;
  display: flex;
  align-items: center;
}
.navBar--mobile__links-child .notification {
  position: absolute;
  width: 16px;
  height: 16px;
  outline: 1px solid white;
  border-radius: 50%;
  background-color: rgb(122, 48, 48);
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navBar--mobile__links-child .number {
  color: white;
  font-size: 0.6875rem;
}

.sectionHeader {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgb(255, 255, 255);
}
.sectionHeader__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .sectionHeader__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.sectionHeader__parent.loading {
  opacity: 0;
  transform: translateY(30px);
}
.sectionHeader__parent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5rem 0 2.5rem 0;
  transition: 0.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 769px) {
  .sectionHeader__parent {
    padding: 4rem 0 2rem 0;
  }
}
.sectionHeader__child {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectionHeader__header {
  font-size: 2.125rem;
  color: rgb(122, 48, 48);
  font-weight: 600;
  letter-spacing: -3%;
}
@media (max-width: 769px) {
  .sectionHeader__header {
    font-size: 1.5rem;
  }
}
.sectionHeader__wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0.2rem 0.5rem 0.5rem;
}
.sectionHeader__wraper:hover .sectionHeader__text {
  color: rgb(122, 48, 48);
}
.sectionHeader__wraper:hover .sectionHeader__icon {
  transform: translateX(8%);
}
.sectionHeader__wraper:hover .sectionHeader__icon path {
  fill: rgb(122, 48, 48);
}
.sectionHeader__text {
  font-size: 0.9375rem;
  color: rgba(61, 61, 61, 0.8);
  font-weight: 500;
  transition: 0.1s ease-out;
  text-decoration: underline;
}
@media (max-width: 769px) {
  .sectionHeader__text {
    font-size: 0.8125rem;
    color: rgb(61, 61, 61);
  }
}
.sectionHeader__icon {
  width: 20px;
  height: 20px;
  transition: 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.sectionHeader__icon path {
  fill: rgba(61, 61, 61, 0.8);
  transition: 0.1s ease-out;
}
@media (max-width: 769px) {
  .sectionHeader__icon {
    width: 18px;
    height: 18px;
  }
}

.lineSeperator {
  width: 100%;
  display: flex;
  justify-content: center;
}
.lineSeperator__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .lineSeperator__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.lineSeperator__line {
  width: 100%;
  height: 1px;
  background-color: rgba(61, 61, 61, 0.8);
  opacity: 0.5;
  margin: 0.6rem 0;
}

.buttonSeperator.loading {
  opacity: 0.5;
}

.buttonSeperator {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
  gap: 12px;
  transition: 0.2s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
  opacity: 1;
}
.buttonSeperator__button {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem 1.5rem;
}
.buttonSeperator__button:hover .buttonSeperator__text {
  color: rgb(122, 48, 48);
}
.buttonSeperator__button:hover .buttonSeperator__icon {
  color: rgb(122, 48, 48);
  transform: translateX(8%);
}
.buttonSeperator__button:hover .buttonSeperator__icon path {
  fill: rgb(122, 48, 48);
}
.buttonSeperator__text {
  font-size: 0.9375rem;
  color: rgba(61, 61, 61, 0.8);
  font-weight: 500;
  transition: 0.1s ease-out;
  text-decoration: underline;
}
@media (max-width: 769px) {
  .buttonSeperator__text {
    font-size: 0.8125rem;
    color: rgb(61, 61, 61);
  }
}
.buttonSeperator__icon {
  width: 20px;
  height: 20px;
  transition: 0.2s cubic-bezier(0.86, 0, 0.07, 1);
}
.buttonSeperator__icon path {
  fill: rgba(61, 61, 61, 0.8);
  transition: 0.1s ease-out;
}
@media (max-width: 769px) {
  .buttonSeperator__icon {
    width: 18px;
    height: 18px;
  }
}

.slider {
  width: 100%;
  display: flex;
  justify-content: center;
}
.slider__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .slider__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.slider__parent.loading {
  opacity: 0.5;
  transform: translateY(15px);
}
.slider__parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3rem;
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 769px) {
  .slider__parent {
    padding-bottom: 2rem;
  }
}
.slider__child {
  width: 100%;
}
.slider__track {
  width: 100%;
}
.slider__list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.slider__card {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  cursor: pointer;
  width: 18%;
  min-width: 230px;
  overflow: hidden;
}
@media (max-width: 769px) {
  .slider__card {
    min-width: 200px;
  }
}
@media (max-width: 375px) {
  .slider__card {
    min-width: 160px;
  }
}

.footer {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgb(122, 48, 48);
  margin-top: 2rem;
  padding: 6rem 0rem 6rem 0rem;
}
@media (max-width: 769px) {
  .footer {
    margin-top: 4rem;
    padding: 4rem 0rem 4rem 0rem;
  }
}
.footer__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .footer__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.footer__parent {
  border: 2px solid rgb(255, 255, 255);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 1rem;
}
@media (max-width: 769px) {
  .footer__parent {
    flex-direction: column;
  }
}
.footer__left-wraper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 5rem 3rem;
  gap: 40px;
}
@media (max-width: 769px) {
  .footer__left-wraper {
    align-items: center;
    gap: 32px;
    padding: 2.5rem;
  }
}
.footer__left-wraper .logo {
  width: 110px;
}
@media (max-width: 769px) {
  .footer__left-wraper .logo {
    width: 90px;
  }
}
.footer__left-wraper .text {
  color: rgb(255, 255, 255);
  font-size: 0.9375rem;
  max-width: 400px;
  line-height: 29px;
}
@media (max-width: 769px) {
  .footer__left-wraper .text {
    width: 100%;
    text-align: center;
    line-height: 22px;
    font-size: 0.8125rem;
  }
}
.footer__left-wraper .button {
  background-color: rgb(255, 255, 255);
  outline: 1px solid rgb(255, 255, 255);
  border: none;
  padding: 1rem 3rem;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 769px) {
  .footer__left-wraper .button {
    padding: 1rem 2.5rem;
  }
}
.footer__left-wraper .button span {
  color: rgb(122, 48, 48);
  font-size: 0.875rem;
  transition: 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
@media (max-width: 769px) {
  .footer__left-wraper .button {
    width: 100%;
  }
}
.footer__left-wraper .button:hover {
  background-color: rgb(122, 48, 48);
}
.footer__left-wraper .button:hover span {
  color: rgb(255, 255, 255);
}
.footer__right-wraper {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  padding: 1rem;
  gap: 8px;
}
@media (max-width: 769px) {
  .footer__right-wraper {
    justify-content: center;
  }
}
.footer__wraper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__header {
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  font-weight: 600;
}
@media (max-width: 769px) {
  .footer__header {
    font-size: 1.125rem;
  }
}
.footer__text {
  font-size: 1rem;
  color: rgb(255, 255, 255);
  font-weight: 300;
}
@media (max-width: 769px) {
  .footer__text {
    font-size: 0.875rem;
  }
}
.footer__child:last-child {
  justify-content: space-between;
}
.footer__child {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 4px;
}
.footer__child .text {
  font-size: 1rem;
  color: rgb(255, 255, 255);
  font-weight: 300;
}
@media (max-width: 769px) {
  .footer__child .text {
    font-size: 0.8125rem;
  }
}
.footer__child .icon {
  width: 24px;
  height: 24px;
}
.footer__child .icon path {
  fill: rgb(255, 255, 255);
}
@media (max-width: 769px) {
  .footer__child .icon {
    width: 20px;
    height: 20px;
  }
}
.footer__child .icon-social {
  width: 24px;
  height: 24px;
}
.footer__child .icon-social path {
  stroke: rgb(255, 255, 255);
  stroke-width: 3;
}
@media (max-width: 769px) {
  .footer__child .icon-social {
    width: 20px;
    height: 20px;
  }
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
}

.overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-overlay.open {
  transform: translateX(0%);
  pointer-events: all;
}

.cart-overlay {
  z-index: 5;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: 550px;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
  transform: translateX(100%);
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 769px) {
  .cart-overlay {
    width: 100%;
    padding: 2rem 3.5vw;
  }
}
.cart-overlay__title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-overlay__title-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0.5rem;
}
.cart-overlay__title-wraper .text {
  font-size: 1rem;
  color: rgb(61, 61, 61);
  font-weight: 400;
}
.cart-overlay__title-wraper .icon {
  width: 18px;
  height: 18px;
}
.cart-overlay__title-wraper .icon path {
  fill: rgb(61, 61, 61);
}
.cart-overlay__close-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}
.cart-overlay__close-wraper .text {
  font-size: 1rem;
  color: rgb(61, 61, 61);
  font-weight: 400;
}
.cart-overlay__close-wraper .icon {
  width: 18px;
  height: 18px;
}
.cart-overlay__close-wraper .icon path {
  fill: rgb(61, 61, 61);
}
.cart-overlay__close-wraper:hover .text.close {
  color: rgb(122, 48, 48);
}
.cart-overlay__close-wraper:hover .icon.close path {
  fill: rgb(122, 48, 48);
}
.cart-overlay__items {
  width: 100%;
  height: 1100px;
  align-items: flex-start;
  overflow-y: auto;
  flex-direction: column;
  margin-top: 1rem;
}
.cart-overlay__items__wraper {
  width: 100%;
  display: flex;
  position: relative;
  margin: 1.5rem 0;
  min-height: 30px;
  padding: 0.6rem;
  gap: 20px;
  background-color: rgb(250, 248, 248);
}
.cart-overlay__items__wraper .line {
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: -12px;
  background: rgba(61, 61, 61, 0.8);
  opacity: 0.5;
}
.cart-overlay__items__image-parent {
  width: 100%;
  max-width: 85px;
  aspect-ratio: 1/1.13;
  display: flex;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}
.cart-overlay__items__image-parent img {
  width: 100%;
  position: absolute;
}
.cart-overlay__items__info-parent {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cart-overlay__items__child {
  width: 100%;
  display: flex;
  align-items: center;
}
.cart-overlay__items__child .model {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
  font-weight: 600;
}
.cart-overlay__items__child .model span {
  color: rgb(61, 61, 61);
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 4px;
}
.cart-overlay__items__child .price {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
  font-weight: 500;
}
.cart-overlay__items__child .price span {
  color: rgb(122, 48, 48);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-left: 4px;
}
.cart-overlay__items__child .buttons-wraper {
  border: 1px solid rgb(122, 48, 48);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-overlay__items__child .buttons-wraper button {
  border: none;
  width: 30px;
  height: 30px;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-overlay__items__child .buttons-wraper .butt {
  background-color: rgb(122, 48, 48);
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
}
.cart-overlay__items__child .buttons-wraper .num {
  color: rgb(61, 61, 61);
  font-weight: 500;
  font-size: 0.875rem;
}
.cart-overlay__items__remove-butt {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
  border: none;
  background-color: rgb(250, 248, 248);
  color: rgb(122, 48, 48);
  font-size: 0.875rem;
  text-decoration: underline;
  padding: 0.1rem;
  cursor: pointer;
}
.cart-overlay__items::-webkit-scrollbar {
  display: none;
}
.cart-overlay__total {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 8px;
}
.cart-overlay__total .line {
  width: 100%;
  height: 1px;
  background-color: rgba(61, 61, 61, 0.8);
  margin: 0.2rem 0;
}
.cart-overlay__total__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cart-overlay__total__total .total-text {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgb(61, 61, 61);
}
.cart-overlay__total__total .total-number {
  font-size: 1.375rem;
  font-weight: 400;
  color: rgb(61, 61, 61);
}
@media (max-width: 769px) {
  .cart-overlay__total__total .total-number {
    font-size: 1.25rem;
  }
}
.cart-overlay__total .text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(61, 61, 61, 0.8);
}
.cart-overlay__total .button {
  width: 100%;
  height: 50px;
  background-color: rgb(122, 48, 48);
  border: none;
  cursor: pointer;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-overlay__total .button span {
  color: rgb(255, 255, 255);
}
.cart-overlay__total .lookCart {
  width: 100%;
  text-align: center;
  color: rgb(61, 61, 61);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.2rem 0;
  text-decoration: underline;
}

.menu-overlay.open {
  transform: translateX(0%);
  pointer-events: all;
}

.menu-overlay {
  z-index: 5;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  max-width: 550px;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem;
  transform: translateX(-100%);
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 769px) {
  .menu-overlay {
    width: 100%;
    padding: 2rem 3.5vw;
  }
}
.menu-overlay__title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-overlay__title-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0.5rem;
}
.menu-overlay__title-wraper .text {
  font-size: 1rem;
  color: rgb(61, 61, 61);
  font-weight: 400;
}
.menu-overlay__title-wraper .icon {
  width: 18px;
  height: 18px;
}
.menu-overlay__title-wraper .icon path {
  fill: rgb(61, 61, 61);
}
.menu-overlay__close-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-overlay__close-wraper .text {
  font-size: 1rem;
  color: rgb(61, 61, 61);
  font-weight: 400;
}
.menu-overlay__close-wraper .icon {
  width: 18px;
  height: 18px;
}
.menu-overlay__close-wraper .icon path {
  fill: rgb(61, 61, 61);
}
.menu-overlay__close-wraper:hover .text.close {
  color: rgb(122, 48, 48);
}
.menu-overlay__close-wraper:hover .icon.close path {
  fill: rgb(122, 48, 48);
}
.menu-overlay__options-wraper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
}
.menu-overlay__option {
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: flex-start;
}
.menu-overlay__option .line {
  width: 100%;
  position: absolute;
  top: -8px;
  height: 1px;
  background-color: rgba(61, 61, 61, 0.8);
  opacity: 0.5;
}
.menu-overlay__option .text {
  font-size: 1rem;
  color: rgb(61, 61, 61);
  padding: 0.5rem;
}
.menu-overlay__contact-wraper {
  margin-top: auto;
  margin-bottom: 2rem;
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-overlay__contact-wraper .line {
  bottom: -8px;
  top: auto;
  height: 1px;
}
.menu-overlay .icon {
  width: 22px;
  height: 22px;
}
.menu-overlay .icon path {
  fill: rgb(61, 61, 61);
}

.description {
  width: 100%;
  display: flex;
  justify-content: center;
}
.description__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .description__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.description__parent {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 1rem;
}
.description .description__breadcrumbs {
  width: 100%;
  display: flex;
  align-items: center;
}
.description .description__breadcrumbs .link {
  font-size: 0.875rem;
  color: rgb(61, 61, 61);
  font-weight: 400;
}
@media (max-width: 769px) {
  .description .description__breadcrumbs .link {
    font-size: 0.8125rem;
  }
}
.description .description__breadcrumbs span {
  margin: 0px 4px;
}
.description .description__breadcrumbs a {
  color: rgb(61, 61, 61);
  font-weight: 400;
}
.description .description__title {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 3rem;
}
@media (max-width: 769px) {
  .description .description__title {
    padding-bottom: 2rem;
  }
}
.description .description__title .title {
  font-size: 2.25rem;
  color: rgb(122, 48, 48);
  font-weight: 600;
}
@media (max-width: 769px) {
  .description .description__title .title {
    font-size: 2rem;
  }
}

.filter::-webkit-scrollbar {
  display: none;
}

.filter {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow-y: auto;
  max-height: calc(100vh - 100px);
}
.filter__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter__title {
  font-size: 1.5rem;
  color: rgb(122, 48, 48);
  padding: 20px 0;
}
.filter__close-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.filter__close-wraper .close {
  font-size: 0.9375rem;
  color: rgb(122, 48, 48);
}
.filter__close-wraper .icon {
  width: 18px;
  height: 18px;
}
.filter__close-wraper .icon path {
  fill: rgb(122, 48, 48);
}
.filter__selected-filters {
  padding: 0.2rem 0.1rem 0.6rem 0.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.filter__selected-filters-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem;
  background-color: rgb(235, 203, 203);
}
.filter__selected-filters-wraper .text {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  padding: 0.1rem;
}
.filter__selected-filters-wraper .remove {
  font-size: 1rem;
  color: rgb(122, 48, 48);
  border: none;
  background: none;
  padding: 0.1rem 0.4rem;
  cursor: pointer;
}
.filter__selected-filters-remove {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0.2rem;
  background-color: rgb(250, 248, 248);
  cursor: pointer;
}
.filter__selected-filters-remove.open {
  display: flex;
}
.filter__selected-filters-remove .text {
  font-size: 0.8125rem;
  color: rgb(61, 61, 61);
  padding: 0.1rem;
}
.filter__body {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.filter__menu {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.filter__line {
  width: 100%;
  height: 1px;
  background-color: rgb(122, 48, 48);
  position: absolute;
  opacity: 0.2;
}
.filter__line:nth-last-of-type(even) {
  top: -1px;
}
.filter__line:nth-last-of-type(odd) {
  bottom: 0px;
}
.filter__top-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2rem;
  cursor: pointer;
}
.filter__filter-name {
  font-size: 1rem;
  color: rgb(122, 48, 48);
  pointer-events: none;
  padding: 1.3rem 0;
  user-select: none;
}
.filter__sort-text {
  font-size: 0.875rem;
  color: rgb(158, 113, 74);
  pointer-events: none;
  padding: 1.3rem 0;
  user-select: none;
}
.filter__menu.closed .filter__bot-container {
  max-height: 0px;
}
.filter__menu.type--checklist .filter__bot-container {
  overflow-y: auto;
}
.filter__menu.type--smallChecklist .filter__bot-container {
  overflow-y: hidden;
}
.filter__menu.type--buttons .filter__bot-container {
  overflow-y: hidden;
}
.filter__menu.type--price-slider .filter__bot-container {
  overflow-y: hidden;
  align-items: center;
}
.filter__bot-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-height: 200px;
  transition: 0.25s cubic-bezier(0.86, 0, 0.07, 1);
}
.filter__bot-container::-webkit-scrollbar {
  width: 4px;
}
.filter__bot-container::-webkit-scrollbar-track {
  background: #e0cbcb;
}
.filter__bot-container::-webkit-scrollbar-thumb {
  background: rgb(122, 48, 48);
  border-radius: 6px;
}
.filter__bot-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.filter__menu.type--buttons .filter__bot-track {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: row;
}
.filter__menu.type--price-slider .filter__bot-track {
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.filter__bot-track {
  width: 99%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  padding: 0.2rem 0 1rem 0;
}
.filter__bot-track.checked .box {
  background-color: rgb(158, 113, 74);
}
.filter__checklist-wraper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.filter__checklist-wraper.checked .box {
  background-color: rgb(158, 113, 74);
}
.filter__checklist-wraper .box {
  width: 16px;
  height: 16px;
  border-radius: 2px;
  border: 1px solid rgb(158, 113, 74);
}
.filter__checklist-wraper .textbox {
  font-size: 0.875rem;
  color: rgb(158, 113, 74);
  padding: 0.5rem;
  pointer-events: none;
}
.filter__checklist-wraper input {
  width: 100%;
  border: none;
  outline: none;
  background-color: rgb(250, 248, 248);
  font-size: 0.9375rem;
  padding: 0.6rem;
  color: rgb(158, 113, 74);
}
.filter__buttons-wraper {
  border: 1px solid rgb(158, 113, 74);
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1px;
  cursor: pointer;
}
.filter__buttons-wraper .number {
  font-size: 0.875rem;
  color: rgb(158, 113, 74);
  font-weight: 400;
}
.filter__buttons-wraper.checked {
  border: 1px solid rgb(158, 113, 74);
  background-color: rgb(158, 113, 74);
}
.filter__buttons-wraper.checked .number {
  color: rgb(255, 255, 255);
}
.filter__price-slider-wraper {
  width: 96%;
  height: 32px;
}
.filter__price-slider-wraper #price-slider {
  height: 10px;
  padding: 0 8px;
  margin-top: 10px;
}
.filter__price-slider-wraper #price-slider-overlay {
  height: 10px;
  padding: 0 8px;
  margin-top: 10px;
}
.filter__price-slider-wraper .noUi-connect {
  background: rgb(122, 48, 48);
  cursor: auto;
}
.filter__price-slider-wraper .noUi-handle {
  height: 18px;
  width: 18px;
  top: -5px;
  right: -9px; /* half the width */
  border-radius: 9px;
  transition: 0.1s ease-in-out;
}
.filter__price-slider-wraper .noUi-handle:hover {
  height: 22px;
  width: 22px;
  top: -7px;
  right: -11px; /* half the width */
  border-radius: 18px;
  cursor: pointer;
}
.filter__price-slider-wraper {
  /* Remove default lines inside handle */
}
.filter__price-slider-wraper .noUi-handle:before,
.filter__price-slider-wraper .noUi-handle:after {
  display: none;
}
.filter__price-wraper {
  width: 96%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter__price-wraper .text-wraper {
  border: 1px solid rgb(158, 113, 74);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  border-radius: 2px;
}
.filter__price-wraper .price {
  font-size: 0.875rem;
  color: rgb(158, 113, 74);
  font-weight: 400;
  padding: 0.5rem;
}

.dropdown {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.dropdown__header {
  padding: 0.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.dropdown__header .text {
  font-size: 1.125rem;
  color: rgb(61, 61, 61);
  font-weight: 500;
  pointer-events: none;
}
.dropdown__header .sortertext {
  margin-left: 12px;
  width: 130px;
  font-size: 0.875rem;
  color: rgb(158, 113, 74);
  font-weight: 400;
  user-select: none;
  pointer-events: none;
}
.dropdown__body.closed {
  transform: scale(0.95);
  opacity: 0;
  pointer-events: none;
}
.dropdown__body {
  border: 1px solid rgb(179, 179, 179);
  position: absolute;
  width: 200px;
  max-height: 300px;
  z-index: 2;
  right: 0;
  top: calc(100% + 12px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  transform-origin: right top;
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
  transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.dropdown__parent {
  width: 100%;
  height: 100%;
}
.dropdown__track {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0.5rem;
}
.dropdown__child:hover {
  background-color: rgb(250, 248, 248);
}
.dropdown__child {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.dropdown__child .text {
  pointer-events: none;
  font-size: 0.875rem;
  color: rgb(158, 113, 74);
  padding: 0.3rem 0;
}

.card {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.card__image-parent {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.card:hover .card__image-child .image {
  transform: scale(1.06);
}
.card:hover .card__wishlist {
  transform: translateX(0%);
  opacity: 1;
}
.card:hover .card__status {
  transform: translateX(0%);
  opacity: 1;
}
.card:hover .card__cart-button {
  transform: translate(-50%, 0%);
  opacity: 1;
}
.card__image-child {
  width: 100%;
  aspect-ratio: 1/1.13;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.card__image-child .image {
  width: 100%;
  position: absolute;
  transition: 0.4s;
}
.card__wishlist {
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 12px;
  top: 12px;
  height: 34px;
  width: 34px;
  border-radius: 4px;
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1), background-color 0.15s ease-in-out;
  transform: translateX(50%);
  opacity: 0;
}
@media (max-width: 769px) {
  .card__wishlist {
    height: 30px;
    width: 30px;
    transform: translateX(0%);
    opacity: 1;
    right: 8px;
    top: 8px;
  }
}
.card__wishlist .icon {
  width: 65%;
  height: 65%;
  pointer-events: none;
}
.card__wishlist .icon path {
  fill: rgb(122, 48, 48);
  transition: 0.15s ease-in-out;
}
.card__wishlist:hover {
  background-color: rgb(122, 48, 48);
}
.card__wishlist:hover .icon path {
  fill: rgb(255, 255, 255);
}
.card__wishlist.clicked {
  background-color: rgb(122, 48, 48);
}
.card__wishlist.clicked .icon path {
  fill: rgb(255, 255, 255);
}
.card__status {
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 12px;
  top: 12px;
  height: 34px;
  border-radius: 4px;
  transition: 0.35s cubic-bezier(0.86, 0, 0.07, 1);
  transform: translateX(-50%);
  opacity: 0;
}
@media (max-width: 769px) {
  .card__status {
    height: 30px;
    transform: translateX(0%);
    opacity: 1;
    left: 8px;
    top: 8px;
  }
}
.card__status.new .text-new {
  display: block;
}
.card__status.new {
  width: 68px;
}
@media (max-width: 769px) {
  .card__status.new {
    width: 60px;
  }
}
.card__status.sale .text-sale {
  display: block;
}
.card__status.sale {
  width: 76px;
}
@media (max-width: 769px) {
  .card__status.sale {
    width: 62px;
  }
}
.card__status.stock .text-stock {
  display: block;
}
.card__status.stock {
  width: 76px;
  background-color: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .card__status.stock {
    width: 62px;
  }
}
.card__status .text-new {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
  display: none;
}
@media (max-width: 769px) {
  .card__status .text-new {
    font-size: 0.75rem;
  }
}
.card__status .text-sale {
  color: rgb(122, 48, 48);
  font-size: 0.875rem;
  display: none;
}
@media (max-width: 769px) {
  .card__status .text-sale {
    font-size: 0.75rem;
  }
}
.card__status .text-stock {
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
  display: none;
}
@media (max-width: 769px) {
  .card__status .text-stock {
    font-size: 0.75rem;
  }
}
.card__cart-button {
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 65%;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.86, 0, 0.07, 1), opacity 0.35s cubic-bezier(0.86, 0, 0.07, 1), background-color 0.15s ease-in-out;
  padding: 0.7rem 0;
  transform: translate(-50%, 100%);
  opacity: 0;
}
@media (max-width: 769px) {
  .card__cart-button {
    display: none;
  }
}
.card__cart-button .text {
  color: rgb(61, 61, 61);
  font-size: 0.8125rem;
  transition: 0.15s ease-in-out;
}
.card__cart-button:hover {
  background-color: rgb(122, 48, 48);
}
.card__cart-button:hover .text {
  color: rgb(255, 255, 255);
}
.card__info-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap: 4px;
  padding-top: 8px;
}
.card__name-wraper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.card__name-wraper .name {
  font-size: 0.90625rem;
  font-weight: 600;
  color: rgb(61, 61, 61);
  text-align: left;
  width: 60%;
}
@media (max-width: 769px) {
  .card__name-wraper .name {
    font-size: 0.84375rem;
  }
}
.card__name-wraper .price {
  font-size: 0.9375rem;
  color: rgb(61, 61, 61);
  text-align: right;
}
@media (max-width: 769px) {
  .card__name-wraper .price {
    font-size: 0.875rem;
  }
}
.card__color-wraper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card__color-wraper .type {
  font-size: 0.875rem;
  color: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .card__color-wraper .type {
    font-size: 0.8125rem;
  }
}
.card__color-wraper .discount {
  font-size: 0.875rem;
  color: rgb(122, 48, 48);
  text-decoration: line-through;
}
@media (max-width: 769px) {
  .card__color-wraper .discount {
    font-size: 0.8125rem;
  }
}
.card__color-wraper .colors {
  margin-right: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.card__color-wraper .color {
  width: 14px;
  aspect-ratio: 1/1;
  border-radius: 2px;
}
@media (max-width: 769px) {
  .card__color-wraper .color {
    width: 12px;
  }
}
.card__color-wraper .color:nth-child(1) {
  outline: 1px solid rgb(61, 61, 61);
  background-color: rgb(61, 61, 61);
}
.card__color-wraper .color:nth-child(2) {
  outline: 1px solid rgb(122, 48, 48);
  background-color: rgb(122, 48, 48);
}
.card__color-wraper .color:nth-child(3) {
  outline: 1px solid rgb(61, 61, 61);
  background-color: rgb(255, 255, 255);
}

.d-topmenu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  position: relative;
}
.d-topmenu:hover {
  background-color: rgb(250, 248, 248);
}
.d-topmenu .text {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
}
.d-topmenu .icon {
  width: 16px;
  height: 16px;
}
.d-topmenu .icon path {
  fill: rgb(61, 61, 61);
}

.d-dropmenu-filter {
  position: absolute;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 4px;
  width: 250px;
  background: rgb(255, 255, 255);
  top: 100%;
  left: 0;
  transform: translateY(4px) scale(0.9);
  transform-origin: left top;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0.5rem;
  z-index: 2;
}
.d-dropmenu-filter.open {
  transform: translateY(4px) scale(1);
  opacity: 1;
  pointer-events: all;
}
.d-dropmenu-filter__category {
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 0.6rem;
}
.d-dropmenu-filter__category:hover {
  background-color: rgb(250, 248, 248);
}
.d-dropmenu-filter__text {
  color: rgb(61, 61, 61);
  font-size: 1rem;
}

.d-dropmenu {
  background-color: rgb(255, 255, 255);
  z-index: 2;
  position: absolute;
  border: 1px solid rgb(235, 235, 235);
  border-radius: 4px;
  width: 250px;
  background: rgb(255, 255, 255);
  top: 100%;
  left: 0;
  transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0.5rem;
  transform: translateY(4px) scale(0.9);
  transform-origin: left top;
  opacity: 0;
  pointer-events: none;
}
.d-dropmenu.open {
  transform: translateY(4px) scale(1);
  opacity: 1;
  pointer-events: all;
}
.d-dropmenu__remove {
  position: absolute;
  right: 4px;
  top: 4px;
  color: rgb(122, 48, 48);
  font-size: 0.875rem;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
}
.d-dropmenu__filter-name {
  display: flex;
  align-items: center;
  width: 100%;
}
.d-dropmenu__name {
  font-size: 0.75rem;
  color: rgb(61, 61, 61);
  pointer-events: none;
}
.d-dropmenu__filter-search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}
.d-dropmenu__input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  color: rgb(61, 61, 61);
  font-size: 0.9375rem;
  outline: none;
  border: none;
  background-color: rgb(250, 248, 248);
}
.d-dropmenu__input:focus ~ .label {
  opacity: 0;
}
.d-dropmenu__input:not(:placeholder-shown) ~ .d-dropmenu__label {
  opacity: 0;
}
.d-dropmenu__label {
  position: absolute;
  left: 0.8rem;
  color: rgba(61, 61, 61, 0.8);
  opacity: 0.5;
  font-size: 0.9375rem;
  pointer-events: none;
}
.d-dropmenu__filter-categories {
  margin-top: 0.2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  max-height: 156px;
  overflow-y: auto;
}
.d-dropmenu__filter-categories::-webkit-scrollbar {
  display: none;
}
.d-dropmenu__category {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5rem 0.6rem;
  background-color: rgb(255, 255, 255);
}
.d-dropmenu__category.hide {
  display: none;
}
.d-dropmenu__category:hover {
  background-color: rgb(250, 248, 248);
}
.d-dropmenu__text {
  pointer-events: none;
  color: rgba(61, 61, 61, 0.8);
  font-size: 0.875rem;
}

.d-table {
  width: 100%;
  display: flex;
  justify-content: center;
}
.d-table__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .d-table__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.d-table__parent {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.d-table__track-holder {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  padding-bottom: 3rem;
}
.d-table__track-holder::-webkit-scrollbar {
  height: 4px;
}
.d-table__track-holder::-webkit-scrollbar-track {
  border-radius: 8px;
  background-color: #e7e7e7;
  border: 1px solid #cacaca;
}
.d-table__track-holder::-webkit-scrollbar-thumb {
  border-radius: 8px;
  background-color: #929292;
}
.d-table__track {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 2rem;
}
.d-table__head-names {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1px;
}
.d-table__head-names #name {
  width: 160px;
}
.d-table__head-names #category {
  width: 140px;
}
.d-table__head-names #material {
  width: 130px;
}
.d-table__head-names #gender {
  width: 120px;
}
.d-table__head-names #stock {
  width: 94px;
}
.d-table__head-names #price {
  width: 110px;
}
.d-table__head-names #discount {
  width: 90px;
}
.d-table__head-names #variations {
  width: 100px;
}
.d-table__head-names #date {
  width: 130px;
}
.d-table__head-names #shop {
  width: 100px;
}
.d-table__head-names #description {
  width: 180px;
}
.d-table__head-names .number-input {
  width: 100px;
}
.d-table__head-names .name-wraper {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
}
.d-table__head-names .name-wraper:hover {
  background-color: rgb(250, 248, 248);
}
.d-table__head-names .name-wraper .name {
  color: rgb(61, 61, 61);
  font-size: 0.9375rem;
}
.d-table__head-names .name-wraper .icon {
  width: 18px;
  height: 18px;
}
.d-table__head-names .name-wraper .icon path {
  fill: rgb(61, 61, 61);
}
.d-table__head-names .name-wraper .arrow {
  right: 0.5rem;
  position: absolute;
}
.d-table__table {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
  width: 100%;
}
.d-table__table .row {
  position: absolute;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  gap: 1px;
}
.d-table__table .row.selected {
  background-color: rgb(250, 248, 248);
}
.d-table__table .row.selected .select {
  opacity: 1;
  background-color: rgb(61, 61, 61);
}
.d-table__table .row:hover {
  background-color: rgb(250, 248, 248);
}
.d-table__table .row:hover .column {
  overflow: visible;
}
.d-table__table .row:hover .column .value {
  overflow: visible;
  z-index: 1;
  background-color: rgb(250, 248, 248);
}
.d-table__table .row:hover .select {
  opacity: 1;
}
.d-table__table .select {
  position: absolute;
  right: 100%;
  width: 20px;
  height: 20px;
  transform: translateX(-50%);
  opacity: 0.2;
  border: 1px solid rgba(61, 61, 61, 0.8);
}
.d-table__table #c-name {
  width: 160px;
}
.d-table__table #c-category {
  width: 140px;
}
.d-table__table #c-material {
  width: 130px;
}
.d-table__table #c-gender {
  width: 120px;
}
.d-table__table #c-stock {
  width: 94px;
}
.d-table__table #c-price {
  width: 110px;
}
.d-table__table #c-discount {
  width: 90px;
}
.d-table__table #c-variations {
  width: 100px;
}
.d-table__table #c-date {
  width: 130px;
}
.d-table__table #c-shop {
  width: 100px;
}
.d-table__table .c-number-input {
  width: 100px;
}
.d-table__table .column {
  display: flex;
  align-items: center;
  outline: 1px solid rgb(235, 235, 235);
  overflow: hidden;
  padding: 0.3rem 0.5rem;
  cursor: pointer;
  height: 36px;
}
.d-table__table .column .input-value {
  border: 1px solid black;
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.875rem;
  background-color: rgba(235, 235, 235, 0);
  background-color: #E8F1EC;
  color: #50946E;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.d-table__table .column .value {
  background-color: rgb(255, 255, 255);
  z-index: 0;
  overflow: hidden;
  padding: 0.1rem 0.2rem;
  color: rgb(61, 61, 61);
  font-size: 0.9375rem;
}
.d-table__table .column .bg-value {
  background-color: rgb(255, 255, 255);
  overflow: hidden;
  padding: 0.1rem 0.2rem;
  background-color: #E8F1EC;
  color: #50946E;
  border-radius: 5px;
  font-size: 0.9375rem;
}
.d-table__table .column .checkbox-wraper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.d-table__table .column .checkbox-wraper.checked .checkbox {
  background-color: #50946E;
}
.d-table__table .column .checkbox-wraper .checkbox-name {
  color: rgb(61, 61, 61);
  font-size: 0.9375rem;
  padding: 0.1rem 0.2rem;
}
.d-table__table .column .checkbox-wraper .checkbox {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1px solid #50946E;
}

.d-productOverlay {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-height: 800px;
  max-width: 1000px;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(202, 202, 202);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  padding: 2rem;
}
.d-productOverlay.open, .d-productOverlay.openProduct {
  opacity: 1;
  pointer-events: all;
}
@media (max-width: 769px) {
  .d-productOverlay {
    width: 100vw;
    height: 100vh;
    max-height: none;
    padding: 2.5rem 2.5vw;
    border-radius: 0px;
  }
}
.d-productOverlay__product-parent {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.d-productOverlay__product-container {
  display: flex;
}
@media (max-width: 769px) {
  .d-productOverlay__product-container {
    flex-direction: column;
  }
}
.d-productOverlay__product-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 350px;
  padding: 0.5rem;
  position: relative;
}
@media (max-width: 769px) {
  .d-productOverlay__product-image {
    min-width: auto;
  }
}
.d-productOverlay__product-image .image-wraper {
  width: 100%;
  aspect-ratio: 1/1.13;
  background-color: #CF5148;
  background-color: rgb(122, 48, 48);
  border-radius: 4px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: sticky;
  top: 8px;
}
.d-productOverlay__product-image .image-wraper .placeholder {
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 1.25rem;
  opacity: 0.5;
}
.d-productOverlay__product-image .image-wraper .img {
  width: 100%;
  position: absolute;
}
.d-productOverlay__product-information {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  gap: 4px;
}
.d-productOverlay__name-infowraper {
  width: 100%;
  background-color: #E8F1EC;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.4rem;
  border-radius: 2px;
}
.d-productOverlay__name-infowraper.wrong {
  background-color: #FCE9E7;
}
.d-productOverlay__name-infowraper.wrong .name-input {
  background-color: #FCE9E7;
  color: #CF5148;
}
.d-productOverlay__name-infowraper.wrong .icon {
  opacity: 1;
  transform: translateX(-10%);
}
.d-productOverlay__name-infowraper .icon {
  transition: 0.1s ease-in-out;
  opacity: 0;
  width: 24px;
  height: 24px;
  transform: translateX(50%);
}
.d-productOverlay__name-infowraper .icon path {
  fill: #CF5148;
}
@media (max-width: 769px) {
  .d-productOverlay__name-infowraper {
    padding: 0.4rem;
  }
  .d-productOverlay__name-infowraper .name-input {
    font-size: 1.25rem;
  }
}
.d-productOverlay__name-infowraper .name-input {
  width: 100%;
  outline: none;
  border: none;
  padding: 0.4rem;
  font-size: 1.5rem;
  color: rgb(61, 61, 61);
  background-color: #E8F1EC;
  font-weight: 600;
}
@media (max-width: 769px) {
  .d-productOverlay__name-infowraper .name-input {
    font-size: 1.25rem;
  }
}
.d-productOverlay__category-infowraper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.d-productOverlay__category-infowraper .category-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
}
.d-productOverlay__category-infowraper .category-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__category-infowraper .category-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__category-infowraper .category-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__category-infowraper .category-label {
    min-width: 90px;
  }
  .d-productOverlay__category-infowraper .category-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__category-infowraper .category-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__category-infowraper .category-value {
  display: flex;
  align-items: center;
  background-color: #E8F1EC;
  width: 100%;
  padding: 0.3rem;
  cursor: pointer;
  position: relative;
}
.d-productOverlay__category-infowraper .category-value .d-dropmenu {
  width: 100%;
}
.d-productOverlay__category-infowraper .category-value .category-input {
  padding: 0.2rem;
  width: 100%;
  outline: none;
  border: none;
  background-color: #E8F1EC;
  font-weight: 500;
  color: #50946E;
  font-size: 0.9375rem;
}
@media (max-width: 769px) {
  .d-productOverlay__category-infowraper .category-value .category-input {
    font-size: 0.875rem;
  }
}
.d-productOverlay__category-infowraper .category-value .text {
  pointer-events: none;
  padding: 0.2rem;
  width: 100%;
  outline: none;
  border: none;
  background-color: #E8F1EC;
  font-weight: 500;
  color: #50946E;
  font-size: 0.9375rem;
}
@media (max-width: 769px) {
  .d-productOverlay__category-infowraper .category-value .text {
    font-size: 0.875rem;
  }
}
.d-productOverlay__category-infowraper .category-value .icon {
  transition: 0.1s ease-in-out;
  opacity: 0;
  width: 24px;
  height: 24px;
  transform: translateX(50%);
}
.d-productOverlay__category-infowraper .category-value .icon path {
  fill: #CF5148;
}
.d-productOverlay__category-infowraper.wrong .category-value {
  background-color: #FCE9E7;
}
.d-productOverlay__category-infowraper.wrong .category-value .icon {
  opacity: 1;
  transform: translateX(-10%);
}
.d-productOverlay__category-infowraper.wrong .category-input {
  background-color: #FCE9E7;
  color: #CF5148;
}
.d-productOverlay__category-infowraper.wrong .text {
  background-color: #FCE9E7;
  color: #CF5148;
}
.d-productOverlay__gender-infowraper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.d-productOverlay__gender-infowraper .gender-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  cursor: pointer;
}
.d-productOverlay__gender-infowraper .gender-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__gender-infowraper .gender-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__gender-infowraper .gender-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__gender-infowraper .gender-label {
    min-width: 90px;
  }
  .d-productOverlay__gender-infowraper .gender-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__gender-infowraper .gender-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__gender-infowraper .gender-value {
  display: flex;
  align-items: center;
  background-color: #E8F1EC;
  width: 100%;
  padding: 0.3rem;
  position: relative;
  cursor: pointer;
}
.d-productOverlay__gender-infowraper .gender-value .d-dropmenu {
  width: 100%;
}
.d-productOverlay__gender-infowraper .gender-value .text {
  padding: 0.2rem;
  width: 100%;
  outline: none;
  border: none;
  background-color: #E8F1EC;
  font-weight: 500;
  color: #50946E;
  font-size: 0.9375rem;
}
@media (max-width: 769px) {
  .d-productOverlay__gender-infowraper .gender-value .text {
    font-size: 0.875rem;
  }
}
.d-productOverlay__gender-infowraper .gender-value .icon {
  transition: 0.1s ease-in-out;
  opacity: 0;
  width: 24px;
  height: 24px;
  transform: translateX(50%);
}
.d-productOverlay__gender-infowraper .gender-value .icon path {
  fill: #CF5148;
}
.d-productOverlay__gender-infowraper.wrong .gender-value {
  background-color: #FCE9E7;
}
.d-productOverlay__gender-infowraper.wrong .gender-value .icon {
  opacity: 1;
  transform: translateX(-10%);
}
.d-productOverlay__gender-infowraper.wrong .gender-input {
  background-color: #FCE9E7;
  color: #CF5148;
}
.d-productOverlay__gender-infowraper.wrong .text {
  background-color: #FCE9E7;
  color: #CF5148;
}
.d-productOverlay__stock-infowraper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.d-productOverlay__stock-infowraper .stock-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  cursor: pointer;
}
.d-productOverlay__stock-infowraper .stock-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__stock-infowraper .stock-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__stock-infowraper .stock-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__stock-infowraper .stock-label {
    min-width: 90px;
  }
  .d-productOverlay__stock-infowraper .stock-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__stock-infowraper .stock-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__stock-infowraper .stock-value {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.3rem;
  position: relative;
}
.d-productOverlay__stock-infowraper .stock-value .text {
  padding: 0.2rem;
  width: 100%;
  outline: none;
  border: none;
  font-weight: 500;
  color: #50946E;
  font-size: 0.9375rem;
}
@media (max-width: 769px) {
  .d-productOverlay__stock-infowraper .stock-value .text {
    font-size: 0.875rem;
  }
}
.d-productOverlay__price-infowraper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.d-productOverlay__price-infowraper .price-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  cursor: pointer;
}
.d-productOverlay__price-infowraper .price-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__price-infowraper .price-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__price-infowraper .price-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__price-infowraper .price-label {
    min-width: 90px;
  }
  .d-productOverlay__price-infowraper .price-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__price-infowraper .price-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__price-infowraper .price-value {
  display: flex;
  align-items: center;
  background-color: #E8F1EC;
  width: 100%;
  padding: 0.3rem;
  position: relative;
}
.d-productOverlay__price-infowraper .price-value .price-input {
  padding: 0.2rem;
  width: 100%;
  outline: none;
  border: none;
  background-color: #E8F1EC;
  font-weight: 500;
  color: #50946E;
  font-size: 0.9375rem;
}
@media (max-width: 769px) {
  .d-productOverlay__price-infowraper .price-value .price-input {
    font-size: 0.875rem;
  }
}
.d-productOverlay__price-infowraper .price-value .icon {
  transition: 0.1s ease-in-out;
  opacity: 0;
  width: 24px;
  height: 24px;
  transform: translateX(50%);
}
.d-productOverlay__price-infowraper .price-value .icon path {
  fill: #CF5148;
}
.d-productOverlay__price-infowraper .price-value.wrong {
  background-color: #FCE9E7;
}
.d-productOverlay__price-infowraper .price-value.wrong .price-input {
  background-color: #FCE9E7;
  color: #CF5148;
}
.d-productOverlay__price-infowraper .price-value.wrong .icon {
  opacity: 1;
  transform: translateX(-10%);
}
.d-productOverlay__discount-infowraper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.d-productOverlay__discount-infowraper .discount-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  cursor: pointer;
}
.d-productOverlay__discount-infowraper .discount-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__discount-infowraper .discount-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__discount-infowraper .discount-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__discount-infowraper .discount-label {
    min-width: 90px;
  }
  .d-productOverlay__discount-infowraper .discount-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__discount-infowraper .discount-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__discount-infowraper .discount-value {
  display: flex;
  align-items: center;
  background-color: #E8F1EC;
  width: 100%;
  padding: 0.3rem;
  position: relative;
}
.d-productOverlay__discount-infowraper .discount-value .discount-input {
  padding: 0.2rem;
  width: 100%;
  outline: none;
  border: none;
  background-color: #E8F1EC;
  font-weight: 500;
  color: #50946E;
  font-size: 0.9375rem;
}
@media (max-width: 769px) {
  .d-productOverlay__discount-infowraper .discount-value .discount-input {
    font-size: 0.875rem;
  }
}
.d-productOverlay__discount-infowraper .discount-value .icon {
  transition: 0.1s ease-in-out;
  opacity: 0;
  width: 24px;
  height: 24px;
  transform: translateX(50%);
}
.d-productOverlay__discount-infowraper .discount-value .icon path {
  fill: #CF5148;
}
.d-productOverlay__discount-infowraper .discount-value.wrong {
  background-color: #FCE9E7;
}
.d-productOverlay__discount-infowraper .discount-value.wrong .discount-input {
  background-color: #FCE9E7;
  color: #CF5148;
}
.d-productOverlay__discount-infowraper .discount-value.wrong .icon {
  opacity: 1;
  transform: translateX(-10%);
}
.d-productOverlay__date-infowraper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.d-productOverlay__date-infowraper .date-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  cursor: pointer;
}
.d-productOverlay__date-infowraper .date-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__date-infowraper .date-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__date-infowraper .date-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__date-infowraper .date-label {
    min-width: 90px;
  }
  .d-productOverlay__date-infowraper .date-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__date-infowraper .date-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__date-infowraper .date-value {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.3rem;
  position: relative;
}
.d-productOverlay__date-infowraper .date-value .text {
  padding: 0.2rem;
  width: 100%;
  outline: none;
  border: none;
  font-weight: 500;
  color: #50946E;
  font-size: 0.9375rem;
}
@media (max-width: 769px) {
  .d-productOverlay__date-infowraper .date-value .text {
    font-size: 0.875rem;
  }
}
.d-productOverlay__shop-infowraper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.d-productOverlay__shop-infowraper .shop-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  cursor: pointer;
}
.d-productOverlay__shop-infowraper .shop-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__shop-infowraper .shop-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__shop-infowraper .shop-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__shop-infowraper .shop-label {
    min-width: 90px;
  }
  .d-productOverlay__shop-infowraper .shop-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__shop-infowraper .shop-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__shop-infowraper .shop-checkbox {
  display: flex;
  align-items: center;
  background-color: #E8F1EC;
  width: 100%;
  padding: 0.3rem;
  position: relative;
  justify-content: flex-start;
  gap: 8px;
  cursor: pointer;
}
.d-productOverlay__shop-infowraper .shop-checkbox .checkbox-text {
  padding: 0.2rem;
  outline: none;
  border: none;
  background-color: #E8F1EC;
  font-weight: 500;
  color: #50946E;
  font-size: 0.9375rem;
}
@media (max-width: 769px) {
  .d-productOverlay__shop-infowraper .shop-checkbox .checkbox-text {
    font-size: 0.875rem;
  }
}
.d-productOverlay__shop-infowraper .shop-checkbox .checkbox {
  width: 18px;
  height: 18px;
  border: 1px solid #50946E;
}
.d-productOverlay__shop-infowraper .shop-checkbox.checked .checkbox {
  background-color: #50946E;
}
.d-productOverlay__description-infowraper {
  width: 100%;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 2px;
  display: flex;
  gap: 8px;
}
.d-productOverlay__description-infowraper .description-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  cursor: pointer;
}
.d-productOverlay__description-infowraper .description-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__description-infowraper .description-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__description-infowraper .description-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__description-infowraper .description-label {
    min-width: 90px;
  }
  .d-productOverlay__description-infowraper .description-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__description-infowraper .description-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__description-infowraper .description-value {
  display: flex;
  align-items: center;
  background-color: #E8F1EC;
  width: 100%;
  padding: 0.3rem;
  position: relative;
  justify-content: flex-start;
  gap: 8px;
  cursor: pointer;
}
.d-productOverlay__description-infowraper .description-value .description-input {
  padding: 0.2rem;
  width: 100%;
  outline: none;
  border: none;
  background-color: #E8F1EC;
  font-weight: 500;
  color: #50946E;
  font-size: 0.9375rem;
  height: 130px;
}
.d-productOverlay__description-infowraper .description-value .icon {
  transition: 0.1s ease-in-out;
  opacity: 0;
  width: 24px;
  height: 24px;
  transform: translateX(50%);
}
.d-productOverlay__description-infowraper .description-value .icon path {
  fill: #CF5148;
}
.d-productOverlay__description-infowraper .description-value.wrong {
  background-color: #FCE9E7;
}
.d-productOverlay__description-infowraper .description-value.wrong .description-input {
  background-color: #FCE9E7;
  color: #CF5148;
}
.d-productOverlay__description-infowraper .description-value.wrong .icon {
  opacity: 1;
  transform: translateX(-10%);
}
.d-productOverlay__images-infowraper {
  width: 100%;
  position: relative;
  justify-content: flex-start;
  align-items: flex-start;
  border-radius: 2px;
  display: flex;
  gap: 8px;
}
.d-productOverlay__images-infowraper .images-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  cursor: pointer;
}
.d-productOverlay__images-infowraper .images-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__images-infowraper .images-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__images-infowraper .images-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__images-infowraper .images-label {
    min-width: 90px;
  }
  .d-productOverlay__images-infowraper .images-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__images-infowraper .images-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__images-infowraper .images-value {
  display: flex;
  align-items: center;
  background-color: #E8F1EC;
  width: 100%;
  padding: 0.3rem;
  position: relative;
  justify-content: flex-start;
  gap: 8px;
}
.d-productOverlay__images-infowraper .images-value .icon {
  margin-left: auto;
  transition: 0.1s ease-in-out;
  opacity: 0;
  width: 24px;
  height: 24px;
  transform: translateX(50%);
}
.d-productOverlay__images-infowraper .images-value .icon path {
  fill: #CF5148;
}
.d-productOverlay__images-infowraper .images-value.wrong {
  background-color: #FCE9E7;
}
.d-productOverlay__images-infowraper .images-value.wrong .description-input {
  background-color: #FCE9E7;
  color: #CF5148;
}
.d-productOverlay__images-infowraper .images-value.wrong .icon {
  opacity: 1;
  transform: translateX(-10%);
}
.d-productOverlay__images-infowraper .image-input {
  max-width: 75px;
  width: 100%;
  aspect-ratio: 1/1.13;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.1s;
  outline: 2px solid #E8F1EC;
}
.d-productOverlay__images-infowraper .image-input.selected {
  outline: 2px solid rgb(122, 48, 48);
}
.d-productOverlay__images-infowraper .image-input {
  background-color: #D27B2D;
}
.d-productOverlay__images-infowraper .image-input .placeholder {
  color: rgb(255, 255, 255);
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.6;
  pointer-events: none;
}
.d-productOverlay__images-infowraper .image-input .img {
  position: absolute;
  width: 100%;
  pointer-events: none;
}
.d-productOverlay__drop-infowraper {
  width: 100%;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  border-radius: 2px;
  display: flex;
  gap: 8px;
}
.d-productOverlay__drop-infowraper .drop-label {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 100px;
  cursor: pointer;
}
.d-productOverlay__drop-infowraper .drop-label .label {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
}
.d-productOverlay__drop-infowraper .drop-label .icon {
  width: 18px;
  height: 18px;
}
.d-productOverlay__drop-infowraper .drop-label .icon path {
  fill: rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .d-productOverlay__drop-infowraper .drop-label {
    min-width: 90px;
  }
  .d-productOverlay__drop-infowraper .drop-label .label {
    font-size: 0.875rem;
  }
  .d-productOverlay__drop-infowraper .drop-label .icon {
    width: 16px;
    height: 16px;
  }
}
.d-productOverlay__drop-infowraper .drop-value {
  display: flex;
  align-items: center;
  background-color: #E8F1EC;
  width: 100%;
  padding: 2rem 0.3rem;
  position: relative;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  border: 1px dashed #50946E;
}
.d-productOverlay__drop-infowraper .placeholder {
  font-size: 0.875rem;
  color: #50946E;
  opacity: 0.6;
}
.d-productOverlay__drop-infowraper .drop-input {
  display: none;
}
.d-productOverlay__drop-infowraper .drop-butt {
  cursor: pointer;
  border: none;
  background-color: rgb(255, 255, 255);
  color: #50946E;
  cursor: pointer;
  padding: 0.6rem 2rem;
  font-size: 0.875rem;
}
.d-productOverlay__variant-container {
  padding: 1rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.d-productOverlay__buttons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
@media (max-width: 769px) {
  .d-productOverlay__buttons {
    flex-direction: column;
    gap: 8px;
  }
}
.d-productOverlay__left-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-productOverlay__left-buttons {
    width: 100%;
  }
}
.d-productOverlay__left-buttons .slider-button {
  border: 1px solid rgb(122, 48, 48);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  display: none;
}
.d-productOverlay__left-buttons .slider-button.open {
  display: flex;
}
.d-productOverlay__left-buttons .slider-button.selected {
  background-color: rgb(122, 48, 48);
  pointer-events: none;
}
.d-productOverlay__left-buttons .slider-button.selected span {
  color: rgb(255, 255, 255);
}
@media (max-width: 769px) {
  .d-productOverlay__left-buttons .slider-button {
    width: 100%;
  }
}
.d-productOverlay__left-buttons .catalog-button {
  border: 1px solid rgb(122, 48, 48);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  display: none;
}
.d-productOverlay__left-buttons .catalog-button.open {
  display: flex;
}
.d-productOverlay__left-buttons .catalog-button.selected {
  background-color: rgb(122, 48, 48);
  pointer-events: none;
}
.d-productOverlay__left-buttons .catalog-button.selected span {
  color: rgb(255, 255, 255);
}
@media (max-width: 769px) {
  .d-productOverlay__left-buttons .catalog-button {
    width: 100%;
  }
}
.d-productOverlay__left-buttons span {
  font-size: 0.875rem;
  color: rgb(61, 61, 61);
}
.d-productOverlay__right-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-productOverlay__right-buttons {
    justify-content: flex-end;
    width: 100%;
  }
}
.d-productOverlay__right-buttons .add-button {
  border: 1px solid rgb(122, 48, 48);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  position: relative;
}
@media (max-width: 769px) {
  .d-productOverlay__right-buttons .add-button {
    width: 100%;
  }
}
.d-productOverlay__right-buttons .add-button .d-dropmenu {
  left: auto;
  right: 0;
}
.d-productOverlay__right-buttons .size-button {
  border: 1px solid rgb(122, 48, 48);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  position: relative;
}
@media (max-width: 769px) {
  .d-productOverlay__right-buttons .size-button {
    width: 100%;
  }
}
.d-productOverlay__right-buttons .delete-button {
  border: 1px solid rgb(122, 48, 48);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 2rem;
  cursor: pointer;
  background-color: rgb(122, 48, 48);
  position: relative;
}
@media (max-width: 769px) {
  .d-productOverlay__right-buttons .delete-button {
    width: 100%;
  }
}
.d-productOverlay__right-buttons .delete-button span {
  font-size: 0.875rem;
  color: rgb(255, 255, 255);
}
.d-productOverlay__right-buttons span {
  font-size: 0.875rem;
  color: rgb(61, 61, 61);
}
.d-productOverlay__table-parent .d-table__container {
  padding: 0;
}
@media (max-width: 769px) {
  .d-productOverlay__table-parent .d-table__container {
    padding: 0;
  }
}
.d-productOverlay__table-parent .d-table .row {
  position: relative;
}
.d-productOverlay__button-parent {
  width: 100%;
  height: 9%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1rem;
}
.d-productOverlay__button-parent .finish-product {
  padding: 0.8rem 2.5rem;
  border: 1px solid rgb(122, 48, 48);
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}
@media (max-width: 769px) {
  .d-productOverlay__button-parent .finish-product {
    width: 100%;
  }
}
.d-productOverlay__button-parent .finish-product span {
  font-size: 0.875rem;
  color: rgb(122, 48, 48);
}

.grid-parent {
  width: 100%;
  border: 1px solid black;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  margin-top: 2rem;
}
.grid-parent .item {
  border: 2px solid black;
  height: 400px;
}

.scrolling-contect {
  width: 100%;
  height: 2000px;
  background-color: rgba(250, 235, 215, 0.4);
}

.hero {
  width: 100%;
}
.hero__container {
  width: 100%;
  height: 770px;
  position: relative;
}
@media (max-width: 769px) {
  .hero__container {
    height: 670px;
  }
}
.hero__images-parent {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__images-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero__images-track {
  width: 400%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__image-holder {
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero__image-holder:nth-child(1) {
  background-image: url("/image/home_image1.png");
}
.hero__image-holder:nth-child(2) {
  background-image: url("/image/home_image2.png");
}
.hero__image-holder:nth-child(3) {
  background-image: url("/image/home_image3.png");
}
.hero__image-holder:nth-child(4) {
  background-image: url("/image/home_image1.png");
}
.hero__overlay {
  width: 100%;
  position: absolute;
  bottom: 0;
  height: 35%;
  background: linear-gradient(0deg, rgb(9, 9, 9) 0%, rgba(9, 9, 9, 0) 100%);
}
.hero__content-parent.loading {
  opacity: 0;
}
.hero__content-parent {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 1;
  transition: opacity 0.3s linear 0.2s;
}
@media (max-width: 769px) {
  .hero__content-parent {
    gap: 16px;
  }
}
.hero__header {
  color: rgb(255, 255, 255);
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 28px;
}
@media (max-width: 769px) {
  .hero__header {
    font-size: 2.25rem;
  }
}
.hero__paragraph {
  color: rgb(255, 255, 255);
  font-size: 0.8125rem;
}
.hero__button {
  border: none;
  background-color: rgb(122, 48, 48);
  outline: none;
  padding: 16px 94px 16px 94px;
  transition: 0.2s cubic-bezier(0.86, 0, 0.07, 1);
  cursor: pointer;
  border-radius: 1px;
}
@media (max-width: 769px) {
  .hero__button {
    padding: 16px 64px 16px 64px;
  }
}
.hero__button span {
  transition: 0.2s cubic-bezier(0.86, 0, 0.07, 1);
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
  text-wrap: noWrap;
}
.hero__button:hover {
  background-color: rgb(255, 255, 255);
}
.hero__button:hover span {
  color: rgb(122, 48, 48);
}
.hero__slider {
  width: 270px;
  height: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 769px) {
  .hero__slider {
    width: 200px;
  }
}
.hero__slider .slider {
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex: 1;
  transition: 0.5s ease-in-out;
}
.hero__slider .timer {
  width: 100%;
  height: 100%;
  background-color: rgb(122, 48, 48);
  transform-origin: left;
  transform: scaleX(0);
}
.hero__slider .slider.animating {
  flex: 5;
}
.hero__slider .slider.animating .timer {
  animation: timerAnimation 7s linear;
}

@keyframes timerAnimation {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.redStrip {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: rgb(122, 48, 48);
}
.redStrip__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .redStrip__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.redStrip__parent {
  width: 100%;
  min-height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 769px) {
  .redStrip__parent {
    gap: 2px;
  }
}
.redStrip__child {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0 8px 0;
}
.redStrip__wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 769px) {
  .redStrip__wraper {
    flex-direction: column;
    gap: 4px;
  }
}
.redStrip__text {
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
  text-align: center;
  letter-spacing: -2%;
}
@media (max-width: 769px) {
  .redStrip__text {
    font-size: 0.8125rem;
  }
}
.redStrip__icon {
  width: 22px;
  height: 22px;
}
@media (max-width: 769px) {
  .redStrip__icon {
    width: 20px;
    height: 20px;
  }
}

.categories {
  width: 100%;
  display: flex;
  justify-content: center;
}
.categories__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .categories__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.categories__parent-wraper.loading {
  opacity: 0.5;
  transform: translateY(15px);
}
.categories__parent-wraper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
  opacity: 1;
  transform: translateY(0px);
}
.categories__scroller-parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.categories__child {
  width: 100%;
}
.categories__track {
  width: 100%;
}
.categories__list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.categories__card {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}
.categories__card:hover .categories__image {
  transform: scale(1.06);
}
.categories__card:hover .categories__text {
  color: rgb(122, 48, 48);
}
.categories__image-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1/1.15;
}
.categories__image {
  width: 100%;
  transition: 0.45s;
  transform-origin: center center;
  object-fit: cover;
}
.categories__text-wraper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.categories__text {
  font-size: 0.9375rem;
  color: rgba(61, 61, 61, 0.8);
  font-weight: 500;
  transition: 0.1s ease-out;
  padding: 0.6rem 0rem;
}
.categories__pagination-parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}
.categories__pagination-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 769px) {
  .categories__pagination-wraper {
    gap: 8px;
  }
}
.categories__pagination-child {
  width: 5px;
  height: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 425px) {
  .categories__pagination-child:nth-child(5) {
    display: none;
  }
}
@media (min-width: 769px) {
  .categories__pagination-child:nth-child(4) {
    display: none;
  }
}
@media (min-width: 1025px) {
  .categories__pagination-child:nth-child(3) {
    display: none;
  }
}
@media (min-width: 1100px) {
  .categories__pagination-child {
    display: none;
  }
}
.categories__input {
  display: none;
}
.categories__label {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(61, 61, 61, 0.8);
  opacity: 0.5;
}
.categories__input:checked + .categories__label {
  background-color: rgb(122, 48, 48);
  opacity: 1;
}

.catalog {
  width: 100%;
  display: flex;
  justify-content: center;
}
.catalog__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .catalog__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.catalog__parent.loading {
  opacity: 0.5;
  transform: translateY(15px);
}
.catalog__parent {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 22px;
  justify-content: center;
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 1025px) {
  .catalog__parent {
    gap: 12px;
  }
}
@media (max-width: 769px) {
  .catalog__parent {
    grid-template-columns: repeat(2, 1fr);
  }
}
.catalog__child {
  user-select: none;
  cursor: pointer;
  margin-top: 12px;
}

.sales {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.sales.none .none {
  pointer-events: none;
}
.sales.none .sales__bigImage, .sales__midImage, .sales__smallImage, .sales__discount {
  cursor: pointer;
}
.sales__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .sales__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.sales__parent.loading {
  opacity: 0.5;
  transform: translateY(15px);
}
.sales__parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) 0.1s;
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 769px) {
  .sales__parent {
    flex-direction: column;
  }
}
.sales__split {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1.11;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 769px) {
  .sales__split {
    gap: 12px;
  }
}
.sales__vertical-split {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 769px) {
  .sales__vertical-split {
    gap: 12px;
  }
}
.sales__bigImage .text-wraper {
  width: 92%;
  position: absolute;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.sales__bigImage .text-wraper h3 {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
}
.sales__bigImage .text-wraper .line {
  height: 2px;
  width: 40px;
  background: rgb(255, 255, 255);
}
.sales__bigImage .text-wraper p {
  color: rgb(255, 255, 255);
  font-weight: 300;
  font-size: 0.875rem;
  text-transform: uppercase;
}
.sales__bigImage:hover .overlay-gradient {
  height: 100%;
  opacity: 0.8;
}
.sales__bigImage .overlay-gradient {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50%;
  opacity: 0.5;
  background: linear-gradient(0deg, rgb(9, 9, 9) 0%, rgba(9, 9, 9, 0) 100%);
  transition: 0.15s ease-in-out;
  cursor: pointer;
}
.sales__bigImage .image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sales__midImage .text-wraper {
  width: 92%;
  position: absolute;
  top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.sales__midImage .text-wraper h3 {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: clamp(1.25rem, 1.6vw, 1.75rem);
}
.sales__midImage:hover .overlay-gradient {
  height: 100%;
  opacity: 0.8;
}
.sales__midImage .overlay-gradient {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  opacity: 0.5;
  background: linear-gradient(180deg, rgb(9, 9, 9) 0%, rgba(9, 9, 9, 0) 100%);
  transition: 0.1s ease-in-out;
  cursor: pointer;
}
.sales__midImage .image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sales__smallImage .text-wraper {
  width: 92%;
  position: absolute;
  top: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
}
.sales__smallImage .text-wraper h3 {
  color: rgb(255, 255, 255);
  font-weight: 400;
  font-size: clamp(1.125rem, 1.6vw, 1.75rem);
}
.sales__smallImage:hover .overlay-gradient {
  height: 100%;
  opacity: 0.8;
}
.sales__smallImage .overlay-gradient {
  position: absolute;
  top: 0;
  width: 100%;
  height: 50%;
  opacity: 0.5;
  background: linear-gradient(180deg, rgb(9, 9, 9) 0%, rgba(9, 9, 9, 0) 100%);
  transition: 0.1s ease-in-out;
  cursor: pointer;
}
.sales__smallImage .image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.sales__discount:hover .overlay-gradient {
  opacity: 0.7;
}
.sales__discount .overlay-gradient {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: rgb(9, 9, 9);
  transition: 0.1s ease-in-out;
  cursor: pointer;
}
.sales__discount .image-container {
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url("");
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.sales__discount .description-text {
  position: absolute;
  z-index: 2;
  color: rgb(255, 255, 255);
  font-size: 1rem;
  top: 12px;
}
@media (max-width: 769px) {
  .sales__discount .description-text {
    font-size: 0.8125rem;
  }
}
.sales__discount .discount-text {
  position: relative;
  z-index: 2;
  color: rgb(255, 255, 255);
  font-size: clamp(1.25rem, 2.4vw, 2.5rem);
  font-weight: 500;
}
@media (max-width: 769px) {
  .sales__discount .discount-text {
    font-size: clamp(1.375rem, 5.2vw, 2.25rem);
  }
}
.sales__discount .discount-text span {
  font-size: 1rem;
}
@media (max-width: 769px) {
  .sales__discount .discount-text span {
    font-size: 0.75rem;
  }
}
.sales__discount .butt {
  transition: 0.1s ease-in-out;
  z-index: 2;
  color: rgb(122, 48, 48);
  background-color: rgb(255, 255, 255);
  padding: 0.75rem 1rem;
  position: absolute;
  bottom: 12px;
  width: 90%;
  max-width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.sales__discount .butt:hover {
  background-color: rgb(122, 48, 48);
}
.sales__discount .butt:hover span {
  color: rgb(255, 255, 255);
}
@media (max-width: 769px) {
  .sales__discount .butt {
    padding: 0.6rem 1rem;
  }
}
.sales__discount .butt span {
  transition: 0.1s ease-in-out;
  font-size: 1rem;
  letter-spacing: -1px;
}
@media (max-width: 769px) {
  .sales__discount .butt span {
    font-size: 0.75rem;
  }
}
.sales__big-wraper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  cursor: pointer;
  gap: 20px;
  position: relative;
  aspect-ratio: 1/1;
}
.sales__big-wraper .big-image {
  background-image: url("/image/sales-large.png");
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sales__big-wraper.right:hover .sales__hover-overlay {
  opacity: 0.8;
}
.sales__hover-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(61, 61, 61);
  opacity: 0;
  transition: 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  mix-blend-mode: multiply;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sales__icon {
  width: 300px;
  height: 300px;
}
.sales__icon path {
  stroke-width: 4;
  stroke: rgb(255, 255, 255);
}
.sales__big-wraper.left {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  cursor: auto;
}
@media (max-width: 769px) {
  .sales__big-wraper.left {
    gap: 16px;
  }
}
.sales__medium-wraper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 20px;
  position: relative;
}
@media (max-width: 769px) {
  .sales__medium-wraper {
    gap: 16px;
  }
}
.sales__medium-wraper .medium-image {
  background-image: url("/image/sales-medium.png");
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.sales__small-wraper.content {
  padding: 1rem;
  background-color: rgb(250, 248, 248);
  border: 1px solid rgb(235, 235, 235);
}
.sales__small-wraper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  height: 100%;
  position: relative;
  cursor: pointer;
}
.sales__small-wraper .small-image {
  background-image: url("/image/sales-small.png");
  width: 100%;
  height: 100%;
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.sales__small-wraper .text {
  font-weight: 600;
  color: rgb(122, 48, 48);
  letter-spacing: -3%;
  font-size: clamp(0.875rem, 1.4vw, 1.25rem);
}
@media (max-width: 769px) {
  .sales__small-wraper .text {
    font-size: 4vw;
    font-size: clamp(0.875rem, 4vw, 1.25rem);
  }
}
.sales__small-wraper .sales {
  font-size: 3.3vw;
  font-weight: 600;
  color: rgb(122, 48, 48);
  letter-spacing: -3%;
  display: flex;
  align-items: flex-end;
}
.sales__small-wraper .sales span {
  font-size: 1.9vw;
  margin-right: 6px;
}
@media (max-width: 769px) {
  .sales__small-wraper .sales span {
    font-size: 5vw;
  }
}
@media (max-width: 769px) {
  .sales__small-wraper .sales {
    font-size: 10vw;
  }
}
.sales__small-wraper .button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(122, 48, 48);
  width: 90%;
  border: none;
  padding: 0.8rem 0;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  outline: 1px solid rgb(122, 48, 48);
}
@media (max-width: 769px) {
  .sales__small-wraper .button {
    font-size: 10vw;
  }
}
.sales__small-wraper .button span {
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
  transition: 0.2s ease-in-out;
}
@media (max-width: 769px) {
  .sales__small-wraper .button span {
    font-size: 0.75rem;
  }
}
.sales__small-wraper .button:hover {
  background-color: rgb(255, 255, 255);
}
.sales__small-wraper .button:hover span {
  color: rgb(122, 48, 48);
}
.sales__overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, rgb(9, 9, 9) 0%, rgba(9, 9, 9, 0) 100%);
  transform: rotate(180deg);
}
.sales__text {
  font-size: 1.875rem;
  color: rgb(255, 255, 255);
  letter-spacing: -3%;
  transform: rotate(180deg);
  font-weight: 300;
  position: absolute;
  bottom: 20px;
  right: 12px;
  font-size: clamp(1.25rem, 1.5vw, 1.625rem);
}
@media (max-width: 769px) {
  .sales__text {
    font-size: clamp(1rem, 3.9vw, 1.625rem);
  }
}

.overlay__filter-sort.open {
  transform: translateX(0%);
  pointer-events: all;
  opacity: 1;
}

.overlay__filter-sort {
  z-index: 4;
  position: fixed;
  right: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  background: rgb(255, 255, 255);
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1rem;
  transform: translateX(100%);
  pointer-events: none;
  opacity: 0;
  transition: 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (max-width: 769px) {
  .overlay__filter-sort {
    display: flex;
  }
}
.overlay__filter-sort__container {
  width: 100%;
  height: 100%;
}
.overlay__filter-sort__title-wraper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.overlay__filter-sort__title-wraper .text {
  font-size: 1rem;
  color: rgb(122, 48, 48);
}

.sort-filter {
  width: 100%;
  display: flex;
  justify-content: center;
}
.sort-filter__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .sort-filter__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.sort-filter__parent {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.sort-filter__button-wraper {
  display: flex;
  align-items: center;
  visibility: hidden;
}
@media (max-width: 769px) {
  .sort-filter__button-wraper {
    visibility: visible;
  }
}
.sort-filter__button-wraper .text {
  font-size: 1rem;
  font-weight: 600;
  color: rgb(61, 61, 61);
}
.sort-filter__button-wraper .icon {
  width: 24px;
  height: 24px;
}
.sort-filter__button-wraper .icon path {
  fill: rgb(61, 61, 61);
}
.sort-filter__products-wraper {
  display: flex;
}
.sort-filter__products-wraper .text {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(61, 61, 61, 0.8);
}

.sort {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}
@media (max-width: 769px) {
  .sort {
    display: none;
  }
}
.sort__container {
  width: 100%;
  max-width: 1440px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .sort__container {
    padding: 0rem 3vw 0rem 3vw;
  }
}
.sort__parent {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.sort__dropdown-container {
  width: 300px;
  min-height: 30px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.filter-msg {
  width: 100%;
  display: flex;
  justify-content: center;
  display: none;
}
@media (max-width: 769px) {
  .filter-msg {
    display: flex;
  }
}
.filter-msg__container {
  width: 100%;
  max-width: 1440px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .filter-msg__container {
    padding: 0rem 3vw 0rem 3vw;
  }
}
.filter-msg__parent {
  padding: 0.2rem 0.1rem 0.2rem 0.1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.filter-msg .js-clearMsg-button {
  padding: 0.2rem 0.1rem 0.2rem 0.1rem;
  display: none;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
}
.filter-msg .js-clearMsg-button.open {
  display: flex;
}
.filter-msg__child.clear {
  background-color: rgb(250, 248, 248);
  font-size: 0.875rem;
}
.filter-msg__child.clear .text {
  color: rgb(61, 61, 61);
}
.filter-msg__child {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.2rem;
  background-color: rgb(235, 203, 203);
}
.filter-msg__child .text {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  padding: 0.1rem;
}
.filter-msg__child .remove {
  font-size: 1rem;
  color: rgb(122, 48, 48);
  border: none;
  background: none;
  padding: 0.1rem 0.4rem;
  cursor: pointer;
}

.shop {
  width: 100%;
  display: flex;
  justify-content: center;
}
.shop__container {
  width: 100%;
  max-width: 1440px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .shop__container {
    padding: 0rem 3vw 0rem 3vw;
  }
}
.shop__parent.loading {
  opacity: 0;
  transform: translateY(15px);
}
.shop__parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
  opacity: 1;
  transform: translateY(0px);
  position: relative;
  padding-bottom: 7rem;
}
@media (max-width: 769px) {
  .shop__parent {
    padding-bottom: 5rem;
  }
}
.shop__filters-wraper {
  display: flex;
  justify-content: center;
  width: 350px;
  position: sticky;
  top: 80px;
  padding: 1rem;
}
@media (max-width: 769px) {
  .shop__filters-wraper {
    display: none;
  }
}
.shop__products-wraper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(211px, 1fr));
  gap: 12px;
  justify-content: start;
  padding: 12px;
}
@media (max-width: 1025px) {
  .shop__products-wraper {
    grid-template-columns: repeat(3, minmax(211px, 1fr));
  }
}
@media (max-width: 769px) {
  .shop__products-wraper {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    padding: 4px;
  }
}
@media (max-width: 375px) {
  .shop__products-wraper {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 6px;
    padding: 0px;
  }
}
.shop__card {
  user-select: none;
  cursor: pointer;
  margin-top: 16px;
}
.shop__pagination-wraper {
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop__buttons-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 769px) {
  .shop__buttons-wraper {
    gap: 4px;
  }
}
.shop__buttons-wraper .icon {
  width: 20px;
  height: 20px;
}
.shop__buttons-wraper .icon path {
  fill: rgb(255, 255, 255);
}
@media (max-width: 769px) {
  .shop__buttons-wraper .icon {
    width: 18px;
    height: 18px;
  }
}
.shop__buttons-wraper .button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 769px) {
  .shop__buttons-wraper .button {
    width: 38px;
    height: 38px;
  }
}
.shop__buttons-wraper .button .text {
  color: rgb(61, 61, 61);
  font-size: 1rem;
}
@media (max-width: 769px) {
  .shop__buttons-wraper .button .text {
    font-size: 0.875rem;
  }
}
.shop__buttons-wraper .button:hover {
  background-color: rgb(250, 248, 248);
}
.shop__buttons-wraper .button.selected {
  background-color: rgb(122, 48, 48);
}
.shop__buttons-wraper .button.selected .text {
  color: rgb(255, 255, 255);
}
.shop__buttons-wraper .button.none {
  opacity: 0.7;
  pointer-events: none;
}

.wishlist {
  width: 100%;
  display: flex;
  justify-content: center;
}
.wishlist__container {
  width: 100%;
  max-width: 1440px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .wishlist__container {
    padding: 0rem 3vw 0rem 3vw;
  }
}
.wishlist__parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1) 0.2s;
  opacity: 1;
  transform: translateY(0px);
  position: relative;
  padding-bottom: 7rem;
}
@media (max-width: 769px) {
  .wishlist__parent {
    padding-bottom: 5rem;
  }
}
.wishlist__products-wraper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
  justify-content: center;
  padding: 12px;
}
@media (max-width: 1025px) {
  .wishlist__products-wraper {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
  }
}
@media (max-width: 769px) {
  .wishlist__products-wraper {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    padding: 4px;
  }
}
@media (max-width: 375px) {
  .wishlist__products-wraper {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 6px;
    padding: 0px;
  }
}
.wishlist .wishlist__card {
  user-select: none;
  cursor: pointer;
  margin-top: 16px;
}

.product {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 5rem;
}
.product__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .product__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.product__parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 769px) {
  .product__parent {
    flex-direction: column;
  }
}
.product__image-container {
  width: 55%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 100px;
  width: 100%;
  min-width: 600px;
}
@media (max-width: 769px) {
  .product__image-container {
    width: 100%;
    position: relative;
    top: 0;
    min-width: 0px;
  }
}
@media (max-width: 1100px) {
  .product__image-container {
    min-width: 600px;
  }
}
@media (max-width: 1025px) {
  .product__image-container {
    min-width: 500px;
  }
}
@media (max-width: 769px) {
  .product__image-container {
    width: 100%;
    position: relative;
    top: 0;
    min-width: 0px;
  }
}
.product__image-parent {
  width: 100%;
  aspect-ratio: 1/1.13;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 769px) {
  .product__image-parent {
    width: 100%;
    aspect-ratio: 1/1.3;
  }
}
.product__image-child {
  width: 100%;
  display: flex;
  height: 100%;
}
.product__image-child img {
  width: 100%;
}
.product__imgFade {
  width: 100%;
  height: 100%;
}
.product__imgFade__track {
  width: 100%;
  height: 100%;
}
.product__imgFade__img-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.product__imgFade__img-wraper img {
  width: 100%;
  position: absolute;
}
.product__imgFade .splide__pagination__page {
  width: 8px;
  height: 8px;
  background: rgb(255, 255, 255);
  border-radius: 999px;
  margin: 0 8px;
  opacity: 1;
  transition: all 0.3s ease;
}
.product__imgFade .splide__pagination__page:hover {
  background: #afafaf;
}
.product__imgFade {
  /* Active button */
}
.product__imgFade .splide__pagination__page.is-active {
  background: rgb(122, 48, 48);
  transform: scale(1.3);
}
.product__imgFade .splide__arrow {
  width: 36px;
  height: 36px;
  background: none;
  opacity: 1;
  border-radius: 999px;
  border: none;
  transition: all 0.3s ease;
}
.product__imgFade {
  /* Hover */
}
.product__imgFade .splide__arrow:hover {
  background: rgba(223, 154, 154, 0.5);
}
.product__imgFade {
  /* SVG icon */
}
.product__imgFade .splide__arrow svg {
  fill: rgb(122, 48, 48);
  width: 1rem;
  height: 1rem;
}
.product__imgFade {
  /* Disabled state */
}
.product__imgFade .splide__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.product__buttons-child {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
}
@media (max-width: 769px) {
  .product__buttons-child {
    padding: 0.3rem;
  }
}
.product__buttons-child .left-button {
  width: 38px;
  height: 38px;
  background: rgb(122, 48, 48);
  cursor: pointer;
  border: none;
  border-radius: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 769px) {
  .product__buttons-child .left-button {
    width: 32px;
    height: 32px;
  }
}
.product__buttons-child .right-button {
  width: 38px;
  height: 38px;
  background: rgb(122, 48, 48);
  cursor: pointer;
  border: none;
  border-radius: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 769px) {
  .product__buttons-child .right-button {
    width: 32px;
    height: 32px;
  }
}
.product__buttons-child .icon {
  width: 18px;
  height: 18px;
}
.product__buttons-child .icon path {
  fill: rgb(255, 255, 255);
}
@media (max-width: 769px) {
  .product__buttons-child .icon {
    width: 16px;
    height: 16px;
  }
}
.product__pagination-child {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 769px) {
  .product__pagination-child {
    bottom: 4%;
  }
}
.product__pagination-child .pag {
  width: 6px;
  height: 6px;
  background-color: rgb(250, 248, 248);
  border-radius: 10px;
}
.product__pagination-child .pag:first-child {
  background-color: rgb(122, 48, 48);
}
.product__pagination-child .pag.selected {
  background-color: rgb(122, 48, 48);
}
.product__info-container {
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 769px) {
  .product__info-container {
    width: 100%;
  }
}
.product__small-label {
  width: 100%;
  margin-top: 0.1rem;
}
.product__small-label .text {
  color: rgb(61, 61, 61);
  font-size: 0.75rem;
}
.product__small-label .underline {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
  text-decoration: underline;
}
.product__small-label .sale {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
}
.product__small-label .sale span {
  font-size: 0.625rem;
}
.product__product-name {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product__product-name .head {
  color: rgb(122, 48, 48);
  font-size: 2rem;
  font-weight: 600;
}
.product__product-name .stock {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
  text-align: right;
}
.product__product-gender {
  width: 100%;
  margin: 1rem 0;
}
.product__product-gender .gender {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
}
.product__product-price {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 12px;
}
.product__product-price .price {
  color: rgb(122, 48, 48);
  font-size: 1.75rem;
  font-weight: 600;
}
.product__product-price .discount {
  color: rgba(61, 61, 61, 0.8);
  font-size: 1.125rem;
  font-weight: 400;
  text-decoration: line-through;
  opacity: 0.8;
}
.product__product-description {
  width: 100%;
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product__product-description .text {
  width: 80%;
  font-size: 1rem;
  color: rgba(61, 61, 61, 0.8);
}
@media (max-width: 1100px) {
  .product__product-description .text {
    min-width: 90%;
  }
}
.product__product-description .text span {
  font-weight: 600;
}
.product__line {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 3rem 0 2rem 0;
}
.product__line .line {
  width: 100%;
  height: 1px;
  background-color: rgb(61, 61, 61);
  opacity: 0.5;
}
.product__type-selector {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1.5rem 0 0.5rem 0;
}
.product__type-selector .name {
  color: rgb(61, 61, 61);
  font-size: 1.25rem;
  font-weight: 600;
}
.product__type-selector .stock {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
}
.product__color-selector {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0;
}
.product__color-selector .child.selected {
  border: 3px solid rgb(122, 48, 48);
  border-collapse: collapse;
}
.product__color-selector .child {
  width: 75px;
  border: 1px solid rgb(158, 113, 74);
  aspect-ratio: 1/1.13;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.product__color-selector .img {
  width: 100%;
  position: absolute;
}
.product__size-selector {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 1rem 0;
}
.product__size-selector .child.out {
  opacity: 0.5;
  pointer-events: none;
}
.product__size-selector .child.selected {
  background-color: rgb(158, 113, 74);
}
.product__size-selector .child.selected .text {
  color: rgb(255, 255, 255);
}
.product__size-selector .child {
  width: 44px;
  height: 44px;
  border: 1px solid rgb(158, 113, 74);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1px;
  cursor: pointer;
}
.product__size-selector .text {
  color: rgb(158, 113, 74);
  font-size: 0.875rem;
}
.product__buttons-wraper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 1.5rem 0 0 0;
}
.product__buttons-wraper.out {
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 769px) {
  .product__buttons-wraper {
    flex-wrap: wrap;
  }
}
.product__buttons-wraper .submit-butt {
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(122, 48, 48);
  width: 100%;
  position: relative;
  transition: 0.1s ease-in-out;
}
.product__buttons-wraper .submit-butt.out {
  opacity: 0.5;
  pointer-events: none;
}
@media (max-width: 769px) {
  .product__buttons-wraper .submit-butt {
    order: 2;
  }
}
.product__buttons-wraper .submit-butt:hover {
  background-color: rgb(109, 36, 36);
}
.product__buttons-wraper .submit-butt .text {
  color: rgb(255, 255, 255);
  font-size: 0.9375rem;
}
.product__buttons-wraper .submit-butt {
  /* HTML: <div class="loader"></div> */
}
.product__buttons-wraper .submit-butt .loader {
  position: absolute;
  height: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, rgb(255, 255, 255) 94%, rgba(0, 0, 0, 0)) top/4px 4px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, rgb(255, 255, 255));
  mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 4px), #000 0);
  animation: l13 1s infinite linear;
}
@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
.product__buttons-wraper .wishlist-butt {
  border: 1px solid rgb(122, 48, 48);
  min-width: 48px;
  min-height: 48px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(255, 255, 255);
  gap: 8px;
  transition: 0.2s ease-in-out;
}
.product__buttons-wraper .wishlist-butt:hover {
  background-color: rgb(122, 48, 48);
}
.product__buttons-wraper .wishlist-butt:hover .icon path {
  fill: rgb(255, 255, 255);
}
.product__buttons-wraper .wishlist-butt:hover .text {
  color: rgb(255, 255, 255);
}
.product__buttons-wraper .wishlist-butt.clicked {
  background-color: rgb(122, 48, 48);
}
.product__buttons-wraper .wishlist-butt.clicked .icon path {
  fill: rgb(255, 255, 255);
}
.product__buttons-wraper .wishlist-butt.clicked .text {
  color: rgb(255, 255, 255);
}
@media (max-width: 769px) {
  .product__buttons-wraper .wishlist-butt {
    width: calc(100% - 160px);
    max-height: 48px;
    order: 1;
  }
}
.product__buttons-wraper .wishlist-butt .icon {
  width: 50%;
  height: 50%;
}
@media (max-width: 769px) {
  .product__buttons-wraper .wishlist-butt .icon {
    width: 26px;
    height: 26px;
  }
}
.product__buttons-wraper .wishlist-butt .icon path {
  transition: 0.2s ease-in-out;
  fill: rgb(122, 48, 48);
}
.product__buttons-wraper .wishlist-butt .text {
  color: rgb(122, 48, 48);
  font-size: 0.9375rem;
  display: none;
}
@media (max-width: 769px) {
  .product__buttons-wraper .wishlist-butt .text {
    display: block;
  }
}
.product__amount {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__amount.out {
  opacity: 0.5;
  pointer-events: none;
}
.product__amount .butt {
  border: 1px solid rgb(122, 48, 48);
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
}
.product__amount .butt:hover {
  background-color: rgb(109, 36, 36);
}
.product__amount .butt span {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(255, 255, 255);
}
.product__amount .amount-butt {
  border: 1px solid rgb(122, 48, 48);
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__amount .amount-butt span {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(122, 48, 48);
}
.product__shiping-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.3rem 0;
}
.product__shiping-info .text {
  color: rgb(122, 48, 48);
  font-size: 1rem;
  font-weight: 500;
}
.product__shiping-info .id {
  color: rgb(61, 61, 61);
  font-size: 0.75rem;
}

.cart {
  width: 100%;
  display: flex;
  justify-content: center;
}
.cart__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .cart__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.cart__parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 769px) {
  .cart__parent {
    flex-direction: column;
  }
}
.cart__products-wraper {
  width: 80%;
}
@media (max-width: 769px) {
  .cart__products-wraper {
    width: 100%;
  }
}
.cart__header {
  width: 100%;
  height: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem;
  margin-bottom: 1.7rem;
}
.cart__header .text {
  font-size: 0.9375rem;
  color: rgb(61, 61, 61);
}
.cart__product {
  margin-top: 24px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0.6rem;
  background-color: rgb(250, 248, 248);
  gap: 12px;
}
@media (max-width: 1025px) {
  .cart__product {
    align-items: flex-start;
  }
}
.cart__product .line {
  width: 100%;
  height: 1px;
  background-color: rgba(61, 61, 61, 0.8);
  opacity: 0.6;
  position: absolute;
  top: -16px;
  left: 0;
}
.cart__image-parent {
  width: 100%;
  max-width: 90px;
  aspect-ratio: 1/1.13;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 769px) {
  .cart__image-parent {
    max-width: 90px;
  }
}
.cart__image-parent .img {
  width: 100%;
  position: absolute;
}
.cart__info-parent {
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1025px) {
  .cart__info-parent {
    height: auto;
    padding-bottom: 3rem;
  }
}
@media (max-width: 769px) {
  .cart__info-parent {
    flex-direction: column;
    gap: 8px;
  }
}
.cart .remove {
  position: absolute;
  left: 0;
  bottom: 4px;
  color: rgb(122, 48, 48);
  text-decoration: underline;
  font-size: 0.9375rem;
  cursor: pointer;
}
@media (max-width: 1025px) {
  .cart .remove {
    right: 4px;
    left: auto;
  }
}
.cart .buttons-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 45%;
  transform: translateX(-50%);
}
@media (max-width: 1025px) {
  .cart .buttons-wraper {
    left: 4px;
    bottom: 4px;
    transform: translateX(0%);
  }
}
.cart .buttons-wraper .butt {
  border: 1px solid rgb(122, 48, 48);
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
}
@media (max-width: 1025px) {
  .cart .buttons-wraper .butt {
    width: 34px;
    height: 34px;
  }
}
.cart .buttons-wraper .butt:hover {
  background-color: rgb(109, 36, 36);
}
.cart .buttons-wraper .butt span {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(255, 255, 255);
  pointer-events: none;
}
.cart .buttons-wraper .amount-butt {
  border: 1px solid rgb(122, 48, 48);
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1025px) {
  .cart .buttons-wraper .amount-butt {
    width: 34px;
    height: 34px;
  }
}
.cart .buttons-wraper .amount-butt span {
  font-size: 1rem;
  font-weight: 500;
  color: rgb(122, 48, 48);
}
.cart__left-container {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cart__left-container .name {
  font-size: 1.25rem;
  font-weight: 600;
  color: rgb(61, 61, 61);
}
@media (max-width: 769px) {
  .cart__left-container .name {
    font-size: 1rem;
  }
}
.cart__left-container .model {
  font-size: 0.875rem;
  color: rgb(61, 61, 61);
}
@media (max-width: 769px) {
  .cart__left-container .model {
    font-size: 0.8125rem;
  }
}
.cart__left-container .size {
  font-size: 0.875rem;
  color: rgb(61, 61, 61);
}
@media (max-width: 769px) {
  .cart__left-container .size {
    font-size: 0.8125rem;
  }
}
.cart__left-container .discount {
  font-size: 0.875rem;
  color: rgb(61, 61, 61);
}
@media (max-width: 769px) {
  .cart__left-container .discount {
    font-size: 0.8125rem;
  }
}
.cart__right-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4px;
}
@media (max-width: 769px) {
  .cart__right-container {
    align-items: flex-start;
  }
}
.cart__right-container .price-wraper {
  position: relative;
  flex: 1;
}
.cart__right-container .price-wraper .price {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgb(61, 61, 61);
  text-align: right;
}
@media (max-width: 769px) {
  .cart__right-container .price-wraper .price {
    font-size: 0.9375rem;
  }
}
.cart__right-container .price-wraper .price span {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  font-weight: 500;
}
@media (max-width: 769px) {
  .cart__right-container .price-wraper .price span {
    font-size: 0.8125rem;
  }
}
.cart__right-container .date {
  font-size: 0.9375rem;
  color: rgb(61, 61, 61);
}
@media (max-width: 769px) {
  .cart__right-container .date {
    font-size: 0.8125rem;
  }
}
.cart__total-wraper {
  width: 20%;
  min-width: 400px;
  position: sticky;
  top: 100px;
  background-color: rgb(250, 248, 248);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 2rem;
  gap: 32px;
}
@media (max-width: 1100px) {
  .cart__total-wraper {
    min-width: 320px;
  }
}
@media (max-width: 769px) {
  .cart__total-wraper {
    width: 100%;
    min-width: 10px;
  }
}
.cart .total-wraper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart .total-wraper .total {
  color: rgb(61, 61, 61);
  font-size: 1rem;
}
.cart .total-wraper .price {
  color: rgb(61, 61, 61);
  font-size: 1.5rem;
  font-weight: 600;
}
.cart .text {
  text-align: center;
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
  line-height: 24px;
}
.cart .butt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.7rem 0;
  background-color: rgb(122, 48, 48);
  border: 1px solid rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
  cursor: pointer;
}
.cart .butt span {
  color: rgb(255, 255, 255);
  font-size: 0.875rem;
}
.cart .butt:hover {
  background-color: rgb(109, 36, 36);
}

.checkout {
  width: 100%;
  display: flex;
  justify-content: center;
}
.checkout__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .checkout__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.checkout__parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 769px) {
  .checkout__parent {
    flex-direction: column-reverse;
  }
}
.checkout__credentials {
  width: 80%;
  padding: 1.4rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 769px) {
  .checkout__credentials {
    width: 100%;
    padding: 1.4rem 0.5rem;
  }
}
.checkout__name-wraper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 20px;
}
@media (max-width: 769px) {
  .checkout__name-wraper {
    flex-direction: column;
    gap: 20px;
  }
}
.checkout__input-parent {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.checkout__input-parent input:focus {
  border: 1px solid rgba(61, 61, 61, 0.8);
}
.checkout__input-parent input:focus ~ label {
  opacity: 0;
}
.checkout__input-parent input:not(:placeholder-shown) ~ label {
  opacity: 0;
}
.checkout__input-parent.wrong input {
  border: 1px solid rgb(122, 48, 48);
}
.checkout__input-parent.wrong .wrong-msg {
  opacity: 1;
}
.checkout__input-parent.wrong .icon {
  opacity: 1;
}
.checkout__input-parent label {
  position: absolute;
  font-size: 1rem;
  color: rgba(61, 61, 61, 0.8);
  padding: 0.9rem;
  pointer-events: none;
  transition: 0.1s ease-in-out;
}
.checkout__input-parent input {
  border-radius: 2px;
  background-color: rgb(250, 248, 248);
  border: 1px solid rgb(250, 248, 248);
  width: 100%;
  font-size: 1rem;
  color: rgb(61, 61, 61);
  padding: 0.9rem;
  outline: none;
  transition: 0.1s ease-in-out;
}
.checkout__input-parent .icon {
  position: absolute;
  right: 2rem;
}
@media (max-width: 769px) {
  .checkout__input-parent .icon {
    right: 1rem;
  }
}
.checkout__input-parent .icon {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: 0.1s ease-in-out;
}
.checkout__input-parent .icon path {
  fill: rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
}
.checkout__input-parent .wrong-msg {
  position: absolute;
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  bottom: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.1s ease-in-out;
}
.checkout__transport-wraper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout__transport-wraper .input {
  width: 100%;
  padding: 0.9rem;
  background-color: rgb(250, 248, 248);
  border-radius: 2px;
}
.checkout__transport-wraper .text {
  font-size: 1rem;
  color: rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
}
.checkout__payment-wraper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout__payment-wraper .input {
  width: 100%;
  padding: 0.9rem;
  background-color: rgb(250, 248, 248);
  border-radius: 2px;
}
.checkout__payment-wraper .text {
  font-size: 1rem;
  color: rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
}
.checkout .submit-butt {
  width: 100%;
  padding: 1.1rem;
  background-color: rgb(122, 48, 48);
  border-radius: 2px;
  border: 1px solid rgb(250, 248, 248);
  cursor: pointer;
}
.checkout .submit-butt:hover {
  background-color: rgb(109, 36, 36);
}
.checkout .submit-butt span {
  font-size: 0.875rem;
  color: rgb(255, 255, 255);
  transition: 0.1s ease-in-out;
}
.checkout__products-wraper {
  width: 20%;
  min-width: 425px;
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1.4rem;
  gap: 16px;
}
@media (max-width: 1100px) {
  .checkout__products-wraper {
    min-width: 375px;
  }
}
@media (max-width: 769px) {
  .checkout__products-wraper {
    width: 100%;
    min-width: 10px;
    padding: 1.4rem 0.5rem;
    position: relative;
    top: 0;
  }
}
.checkout__product-parent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-height: 500px;
  width: 100%;
  gap: 12px;
  overflow-y: auto;
}
.checkout__product {
  width: 100%;
  display: flex;
  gap: 8px;
  padding: 0.5rem;
  background-color: rgb(250, 248, 248);
}
.checkout__image-wraper {
  width: 70px;
  min-width: 70px;
  aspect-ratio: 1/1.13;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.checkout__image-wraper .img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.checkout__image-wraper .img img {
  width: 100%;
  position: absolute;
}
.checkout__number {
  border: 2px solid rgb(122, 48, 48);
  border-radius: 3px;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(30%, -30%);
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.checkout__number .num {
  color: rgb(122, 48, 48);
  font-size: 0.8125rem;
}
.checkout__info-wraper {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 769px) {
  .checkout__info-wraper {
    flex-direction: column;
  }
}
.checkout__info-wraper .name-wraper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.checkout__info-wraper .name {
  font-size: 0.9375rem;
  color: rgb(61, 61, 61);
  font-weight: 600;
}
.checkout__info-wraper .color {
  font-size: 0.8125rem;
  color: rgb(61, 61, 61);
}
@media (max-width: 769px) {
  .checkout__info-wraper .color {
    font-size: 0.75rem;
  }
}
.checkout__info-wraper .size {
  font-size: 0.8125rem;
  color: rgb(61, 61, 61);
}
@media (max-width: 769px) {
  .checkout__info-wraper .size {
    font-size: 0.75rem;
  }
}
.checkout__info-wraper .discount {
  margin-top: auto;
  font-size: 0.8125rem;
  color: rgb(61, 61, 61);
}
@media (max-width: 769px) {
  .checkout__info-wraper .discount {
    font-size: 0.75rem;
  }
}
.checkout__info-wraper .price {
  font-size: 0.9375rem;
  color: rgb(61, 61, 61);
  font-weight: 500;
  text-align: right;
}
@media (max-width: 769px) {
  .checkout__info-wraper .price {
    text-align: left;
  }
}
.checkout__total-wraper {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 8px;
}
.checkout__total-wraper .line {
  width: 100%;
  height: 1px;
  top: -8px;
  left: 0;
  position: absolute;
  background-color: rgba(61, 61, 61, 0.8);
  opacity: 0.5;
}
.checkout__total-wraper .subtotal, .checkout__total-wraper .transport, .checkout__total-wraper .total {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.checkout__total-wraper .text {
  color: rgba(61, 61, 61, 0.8);
  font-size: 0.8125rem;
}
.checkout__total-wraper .total {
  margin-top: 1rem;
}
.checkout__total-wraper .total .big-text {
  font-size: 1.25rem;
  color: rgb(122, 48, 48);
  font-weight: 500;
}
.checkout__total-wraper .total .price {
  font-size: 1.75rem;
  color: rgb(122, 48, 48);
  font-weight: 600;
}
@media (max-width: 769px) {
  .checkout__total-wraper .total .price {
    font-size: 1.625rem;
  }
}

.perchase-message {
  position: fixed;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: rgb(255, 255, 255);
  border: 1px solid rgba(61, 61, 61, 0.8);
  z-index: 3;
  padding: 1rem 1.5rem;
  opacity: 0;
  min-width: 288px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  gap: 8px;
  transition: 0.2s ease-in-out;
}
@media (max-width: 769px) {
  .perchase-message {
    padding: 1rem;
  }
}
.perchase-message.show {
  opacity: 1;
  bottom: 3%;
  transform: translate(-50%, 0%);
}
.perchase-message .text {
  font-size: 0.9375rem;
  color: rgb(61, 61, 61);
  font-weight: 500;
}
.perchase-message .icon {
  width: 22px;
  height: 22px;
}
.perchase-message .icon path {
  fill: rgb(66, 209, 0);
}

.register {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.register__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 370px;
  gap: 20px;
  align-items: center;
  padding: 1rem;
}
.register h1 {
  font-size: 1.875rem;
  color: rgb(61, 61, 61);
  font-weight: 600;
  margin-bottom: 24px;
}
.register__input-parent {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.register__input-parent input:focus {
  border: 1px solid rgba(61, 61, 61, 0.8);
}
.register__input-parent input:focus ~ label {
  opacity: 0;
}
.register__input-parent input:not(:placeholder-shown) ~ label {
  opacity: 0;
}
.register__input-parent.wrong input {
  border: 1px solid rgb(122, 48, 48);
}
.register__input-parent.wrong .wrong-msg {
  opacity: 1;
}
.register__input-parent.wrong .icon {
  opacity: 1;
}
.register__input-parent label {
  position: absolute;
  font-size: 1rem;
  color: rgba(61, 61, 61, 0.8);
  padding: 0.9rem;
  pointer-events: none;
  transition: 0.1s ease-in-out;
}
.register__input-parent input {
  border-radius: 2px;
  background-color: rgb(250, 248, 248);
  border: 1px solid rgb(250, 248, 248);
  width: 100%;
  font-size: 1rem;
  color: rgb(61, 61, 61);
  padding: 0.9rem;
  outline: none;
  transition: 0.1s ease-in-out;
}
.register__input-parent .icon {
  position: absolute;
  right: 2rem;
}
@media (max-width: 769px) {
  .register__input-parent .icon {
    right: 1rem;
  }
}
.register__input-parent .icon {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: 0.1s ease-in-out;
}
.register__input-parent .icon path {
  fill: rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
}
.register__input-parent .wrong-msg {
  position: absolute;
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  bottom: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.1s ease-in-out;
}
.register__button {
  margin-top: 24px;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
  padding: 1rem;
  border: 1px solid rgb(122, 48, 48);
}
.register__button span {
  color: rgb(255, 255, 255);
  font-size: 1rem;
}

.login {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login__container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 370px;
  gap: 20px;
  align-items: center;
  padding: 1rem;
}
.login h1 {
  font-size: 1.875rem;
  color: rgb(61, 61, 61);
  font-weight: 600;
  margin-bottom: 24px;
}
.login__input-parent {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.login__input-parent input:focus {
  border: 1px solid rgba(61, 61, 61, 0.8);
}
.login__input-parent input:focus ~ label {
  opacity: 0;
}
.login__input-parent input:not(:placeholder-shown) ~ label {
  opacity: 0;
}
.login__input-parent.wrong input {
  border: 1px solid rgb(122, 48, 48);
}
.login__input-parent.wrong .wrong-msg {
  opacity: 1;
}
.login__input-parent.wrong .icon {
  opacity: 1;
}
.login__input-parent label {
  position: absolute;
  font-size: 1rem;
  color: rgba(61, 61, 61, 0.8);
  padding: 0.9rem;
  pointer-events: none;
  transition: 0.1s ease-in-out;
}
.login__input-parent input {
  border-radius: 2px;
  background-color: rgb(250, 248, 248);
  border: 1px solid rgb(250, 248, 248);
  width: 100%;
  font-size: 1rem;
  color: rgb(61, 61, 61);
  padding: 0.9rem;
  outline: none;
  transition: 0.1s ease-in-out;
}
.login__input-parent .icon {
  position: absolute;
  right: 2rem;
}
@media (max-width: 769px) {
  .login__input-parent .icon {
    right: 1rem;
  }
}
.login__input-parent .icon {
  width: 24px;
  height: 24px;
  opacity: 0;
  transition: 0.1s ease-in-out;
}
.login__input-parent .icon path {
  fill: rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
}
.login__input-parent .wrong-msg {
  position: absolute;
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  bottom: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.1s ease-in-out;
}
.login__button {
  margin-top: 24px;
  cursor: pointer;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(122, 48, 48);
  transition: 0.1s ease-in-out;
  padding: 1rem;
  border: 1px solid rgb(122, 48, 48);
}
.login__button span {
  color: rgb(255, 255, 255);
  font-size: 1rem;
}

.d-username {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background-color: #FCE9E7;
  height: 150px;
  align-items: center;
  padding: 1rem 0;
}
.d-username__name {
  color: rgb(122, 48, 48);
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 769px) {
  .d-username__name {
    font-size: 1.375rem;
  }
}
.d-username__account-buttons {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .d-username__account-buttons {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.d-username__parent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}
@media (max-width: 769px) {
  .d-username__parent {
    gap: 0px;
  }
}
.d-username__parent .logout-button {
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.1rem;
  color: rgba(61, 61, 61, 0.8);
  cursor: pointer;
  transition: 0.1s ease-in-out;
  font-weight: 500;
  user-select: none;
}
.d-username__parent .logout-button:hover {
  color: rgb(122, 48, 48);
}
.d-username__parent .register-button {
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.8rem 1.1rem;
  color: rgba(61, 61, 61, 0.8);
  cursor: pointer;
  transition: 0.1s ease-in-out;
  font-weight: 500;
  user-select: none;
}
.d-username__parent .register-button:hover {
  color: rgb(122, 48, 48);
}

.d-routes {
  width: 100%;
  display: flex;
  justify-content: center;
}
.d-routes__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .d-routes__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.d-routes__parent {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 2.5rem 1rem;
}
@media (max-width: 769px) {
  .d-routes__parent {
    gap: 2.5vw;
    padding: 1.5rem 0.5rem;
  }
}
.d-routes__route {
  position: relative;
  width: 300px;
  height: 150px;
  border-radius: 6px;
  background-color: rgb(250, 248, 248);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  cursor: pointer;
  transition: 0.1s ease-in-out;
  user-select: none;
}
.d-routes__route.current {
  background-color: #FBEBDE;
}
.d-routes__route.current .text {
  transform: translateY(-10%);
}
.d-routes__route:hover {
  background-color: #FBEBDE;
}
.d-routes__route:hover .text {
  transform: translateY(-10%);
}
@media (max-width: 769px) {
  .d-routes__route {
    height: auto;
    aspect-ratio: 1/1;
    padding: 0.35rem;
  }
}
.d-routes__route .text {
  transition: 0.1s ease-in-out;
  color: rgb(122, 48, 48);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 769px) {
  .d-routes__route .text {
    font-size: 0.75rem;
  }
}

.d-header {
  width: 100%;
  display: flex;
  justify-content: center;
}
.d-header__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .d-header__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.d-header__parent {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.5rem 0;
}
@media (max-width: 769px) {
  .d-header__parent {
    gap: 32px;
    flex-direction: column;
  }
}
.d-header__title-wraper {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 769px) {
  .d-header__title-wraper {
    width: 100%;
    justify-content: flex-start;
  }
}
.d-header__title-wraper .title {
  font-size: 1.75rem;
  color: rgb(122, 48, 48);
  font-weight: 600;
}
.d-header__title-wraper .icon {
  width: 28px;
  height: 28px;
}
.d-header__title-wraper .icon path {
  fill: rgb(122, 48, 48);
}
.d-header__upload-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.d-header__upload-wraper .drop-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 1px dashed rgb(122, 48, 48);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  transition: 0.2s;
  background: rgb(250, 248, 248);
  cursor: pointer;
}
@media (max-width: 769px) {
  .d-header__upload-wraper .drop-area {
    position: relative;
    left: 0;
    transform: translateX(0%);
  }
}
.d-header__upload-wraper .drop-area.dragover {
  background: #E5F2FC;
  border-color: #387DC9;
}
.d-header__upload-wraper .drop-area p {
  margin: 0;
  color: rgba(61, 61, 61, 0.8);
  font-size: 0.9375rem;
}
.d-header__upload-wraper .file-input {
  display: none;
}
.d-header__upload-wraper .file-item {
  color: #333;
}
.d-header__download-wraper {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.d-header__download-wraper .mark-all {
  border: none;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(250, 248, 248);
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.d-header__download-wraper .mark-all:hover {
  background-color: #FCE9E7;
}
.d-header__download-wraper .mark-all span {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
}
.d-header__download-wraper .download {
  border: none;
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(250, 248, 248);
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.d-header__download-wraper .download:hover {
  background-color: #FCE9E7;
}
.d-header__download-wraper .download span {
  color: rgb(61, 61, 61);
  font-size: 0.875rem;
}

.d-search {
  width: 100%;
  display: flex;
  justify-content: center;
}
.d-search__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .d-search__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.d-search__parent {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem 0;
}
@media (max-width: 769px) {
  .d-search__parent {
    flex-direction: column;
    gap: 20px;
  }
}
.d-search__search-wraper {
  display: flex;
  position: relative;
  align-items: center;
}
@media (max-width: 769px) {
  .d-search__search-wraper {
    width: 100%;
  }
}
.d-search__search-wraper .input {
  font-size: 0.875rem;
  color: rgb(61, 61, 61);
  padding: 0.7rem 2rem;
  outline: none;
  border: 1px solid rgb(250, 248, 248);
  background-color: rgb(250, 248, 248);
  transition: 0.1s ease-in-out;
  border-radius: 2px;
}
@media (max-width: 769px) {
  .d-search__search-wraper .input {
    width: 100%;
  }
}
.d-search__search-wraper .input:focus {
  border: 1px solid rgba(61, 61, 61, 0.8);
}
.d-search__search-wraper .input:focus ~ .label {
  opacity: 0;
}
.d-search__search-wraper .input:not(:placeholder-shown) ~ .label {
  opacity: 0;
}
.d-search__search-wraper .label {
  pointer-events: none;
  font-size: 0.875rem;
  color: rgba(61, 61, 61, 0.8);
  position: absolute;
  left: 2rem;
  transition: 0.1s ease-in-out;
}
.d-search__barcode-wraper {
  margin-right: auto;
  display: flex;
  position: relative;
  align-items: center;
}
@media (max-width: 769px) {
  .d-search__barcode-wraper {
    width: 100%;
  }
}
.d-search__barcode-wraper .input {
  font-size: 0.875rem;
  color: rgb(61, 61, 61);
  padding: 0.7rem 2rem;
  outline: none;
  border: 1px solid rgb(250, 248, 248);
  background-color: rgb(250, 248, 248);
  transition: 0.1s ease-in-out;
  border-radius: 2px;
}
@media (max-width: 769px) {
  .d-search__barcode-wraper .input {
    width: 100%;
  }
}
.d-search__barcode-wraper .input:focus {
  border: 1px solid rgba(61, 61, 61, 0.8);
}
.d-search__barcode-wraper .input:focus ~ .label {
  opacity: 0;
}
.d-search__barcode-wraper .input:not(:placeholder-shown) ~ .label {
  opacity: 0;
}
.d-search__barcode-wraper .label {
  pointer-events: none;
  font-size: 0.875rem;
  color: rgba(61, 61, 61, 0.8);
  position: absolute;
  left: 2rem;
  transition: 0.1s ease-in-out;
}
.d-search__filter-wraper {
  display: flex;
  position: relative;
  align-items: center;
  gap: 12px;
}
@media (max-width: 769px) {
  .d-search__filter-wraper {
    width: 100%;
    justify-content: flex-end;
  }
}
.d-search__filter-wraper .delete-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0.6rem;
  background-color: rgb(122, 48, 48);
  cursor: pointer;
  transition: 0.1s ease-in-out;
  border-radius: 2px;
  visibility: hidden;
}
@media (max-width: 769px) {
  .d-search__filter-wraper .delete-wraper {
    width: 30%;
  }
}
.d-search__filter-wraper .delete-wraper.open {
  visibility: visible;
}
.d-search__filter-wraper .delete-wraper .text {
  font-size: 0.9375rem;
  color: rgb(255, 255, 255);
}
.d-search__filter-wraper .delete-wraper .icon {
  width: 22px;
  height: 22px;
}
.d-search__filter-wraper .delete-wraper .icon path {
  fill: rgb(255, 255, 255);
}
.d-search__filter-wraper .add-wraper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0.6rem;
  background-color: rgb(250, 248, 248);
  cursor: pointer;
  transition: 0.1s ease-in-out;
  border-radius: 2px;
}
@media (max-width: 769px) {
  .d-search__filter-wraper .add-wraper {
    width: 100%;
  }
}
.d-search__filter-wraper .add-wraper:hover {
  background-color: #FCE9E7;
}
.d-search__filter-wraper .filter-wraper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0.6rem;
  background-color: rgb(250, 248, 248);
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.d-search__filter-wraper .filter-wraper:hover {
  background-color: #FCE9E7;
}
@media (max-width: 769px) {
  .d-search__filter-wraper .filter-wraper {
    width: 100%;
  }
  .d-search__filter-wraper .filter-wraper .d-dropmenu {
    width: 100%;
  }
}
.d-search__filter-wraper .notification {
  position: absolute;
  right: -5px;
  top: -5px;
  width: 16px;
  height: 16px;
  background-color: rgb(122, 48, 48);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
}
.d-search__filter-wraper .notification .number {
  font-size: 0.8125rem;
  color: rgb(255, 255, 255);
}
.d-search__filter-wraper .text {
  font-size: 0.9375rem;
  color: rgba(61, 61, 61, 0.8);
  pointer-events: none;
}
.d-search__filter-wraper .icon {
  width: 22px;
  height: 22px;
  pointer-events: none;
}
.d-search__filter-wraper .icon path {
  fill: rgba(61, 61, 61, 0.8);
}
@media (max-width: 769px) {
  .d-search__filter-wraper .icon {
    display: none;
  }
}

.d-filters {
  width: 100%;
  display: flex;
  justify-content: center;
}
.d-filters__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .d-filters__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.d-filters__parent {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  padding: 1rem 0;
}
@media (max-width: 425px) {
  .d-filters__parent {
    flex-direction: column;
    gap: 8px;
  }
}
.d-filters__dropMenuParent {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.d-orders {
  width: 100%;
  display: flex;
  justify-content: center;
}
.d-orders__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .d-orders__container {
    padding: 0rem 2vw 0rem 2vw;
  }
}
.d-orders__parent {
  width: 100%;
  column-count: 2;
  column-gap: 16px;
}
@media (max-width: 769px) {
  .d-orders__parent {
    column-count: 1;
  }
}
.d-orders__order {
  margin-bottom: 16px;
  break-inside: avoid;
  border-radius: 4px;
  min-height: 200px;
  height: 100%;
  display: flex;
  padding: 8px 8px 2.5rem 8px;
  flex-direction: column;
  background-color: rgb(250, 248, 248);
  position: relative;
  gap: 8px;
}
.d-orders__order.downloaded {
  background-color: #FBEBDE;
}
.d-orders__order.checked {
  background-color: #E5F2FC;
}
.d-orders__order.scanned {
  background-color: #E8F1EC;
}
.d-orders__order.returned {
  background-color: #FCE9E7;
}
.d-orders__order .order-line {
  width: 100%;
  height: 1px;
  background-color: rgb(122, 48, 48);
  opacity: 0.3;
}
.d-orders__order .mark-button {
  border: 1px solid rgb(122, 48, 48);
  position: absolute;
  bottom: 8px;
  right: 8px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.1s ease-in-out;
}
.d-orders__order .mark-button:hover {
  background-color: rgb(122, 48, 48);
}
.d-orders__order .mark-button:hover span {
  color: rgb(255, 255, 255);
  pointer-events: none;
}
.d-orders__order .mark-button span {
  transition: 0.1s ease-in-out;
  color: rgb(122, 48, 48);
  font-size: 0.875rem;
}
.d-orders__order .main-order {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 769px) {
  .d-orders__order .main-order {
    flex-direction: column;
  }
}
.d-orders__order .main-order__left-wraper {
  display: flex;
  gap: 8px;
}
.d-orders__order .main-order__image-parent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}
.d-orders__order .main-order__image-parent .image {
  width: 80px;
  aspect-ratio: 1/1.13;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.d-orders__order .main-order__image-parent .img {
  width: 100%;
  position: absolute;
}
.d-orders__order .main-order__image-parent .order-id {
  width: 100%;
  border: 2px solid rgb(61, 61, 61);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  border-radius: 2px;
}
.d-orders__order .main-order__image-parent .id {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgb(61, 61, 61);
}
.d-orders__order .main-order__info-parent {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.d-orders__order .main-order__info-parent .product-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.d-orders__order .main-order__info-parent .name {
  color: rgb(122, 48, 48);
  font-size: 1rem;
}
.d-orders__order .main-order__info-parent .name span {
  font-weight: 500;
}
.d-orders__order .main-order__info-parent .order-stats {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  padding: 0.2rem 0 0.5rem 0;
}
.d-orders__order .main-order__info-parent .color {
  font-size: 0.8125rem;
  background-color: #ffd3ce;
  color: rgb(122, 48, 48);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}
.d-orders__order .main-order__info-parent .size {
  font-size: 0.8125rem;
  background-color: #ffd3ce;
  color: rgb(122, 48, 48);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}
.d-orders__order .main-order__info-parent .discount {
  font-size: 0.8125rem;
  background-color: #ffd3ce;
  color: rgb(122, 48, 48);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}
.d-orders__order .main-order__info-parent .quantity {
  font-size: 0.8125rem;
  background-color: #ffd3ce;
  color: rgb(122, 48, 48);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}
.d-orders__order .main-order__info-parent .order-credentials {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 0.6rem;
  gap: 2px;
}
.d-orders__order .main-order__info-parent .line {
  width: 2px;
  height: 100%;
  background-color: rgb(122, 48, 48);
  position: absolute;
  left: 0;
  top: 0;
}
.d-orders__order .main-order__info-parent .user-name {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
}
.d-orders__order .main-order__info-parent .user-name span {
  font-weight: 500;
}
.d-orders__order .main-order__info-parent .user-address {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
}
.d-orders__order .main-order__info-parent .user-address span {
  font-weight: 500;
}
.d-orders__order .main-order__info-parent .user-number {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
}
.d-orders__order .main-order__info-parent .user-number span {
  font-weight: 500;
}
.d-orders__order .main-order__info-parent .user-email {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
}
.d-orders__order .main-order__info-parent .user-email span {
  font-weight: 500;
}
.d-orders__order .main-order__right-wraper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-orders__order .main-order__right-wraper {
    margin-top: 1rem;
  }
}
.d-orders__order .main-order__price-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-orders__order .main-order__price-parent {
    align-items: flex-start;
  }
}
.d-orders__order .main-order__price-parent .total-price {
  font-size: 1rem;
  color: rgb(122, 48, 48);
  font-weight: 500;
  text-align: right;
}
.d-orders__order .main-order__price-parent .single-price {
  font-size: 0.875rem;
  color: rgb(122, 48, 48);
  text-align: right;
}
.d-orders__order .main-order__status-parent {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-orders__order .main-order__status-parent {
    align-items: flex-start;
    margin-top: 1rem;
  }
}
.d-orders__order .main-order__status-parent .status-wraper {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: flex-end;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-orders__order .main-order__status-parent .status-wraper {
    width: 100%;
    justify-content: space-between;
  }
}
.d-orders__order .main-order__status-parent .status {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  text-align: right;
  font-weight: 500;
  background-color: #ffd3ce;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}
.d-orders__order .main-order__status-parent .status-name {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  text-align: right;
}
.d-orders__order .main-order__status-parent .origin-wraper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-orders__order .main-order__status-parent .origin-wraper {
    width: 100%;
    justify-content: space-between;
  }
}
.d-orders__order .main-order__status-parent .origin {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  text-align: right;
  font-weight: 500;
}
.d-orders__order .main-order__status-parent .origin-name {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  text-align: right;
}
.d-orders__order .main-order__status-parent .date-wraper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-orders__order .main-order__status-parent .date-wraper {
    width: 100%;
    justify-content: space-between;
  }
}
.d-orders__order .main-order__status-parent .date {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  text-align: right;
  font-weight: 500;
}
.d-orders__order .main-order__status-parent .date-name {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  text-align: right;
}
.d-orders__order .second-order {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0.3rem 0;
}
@media (max-width: 769px) {
  .d-orders__order .second-order {
    flex-direction: column;
  }
}
.d-orders__order .second-order__left-wraper {
  display: flex;
  gap: 8px;
}
.d-orders__order .second-order__image-parent {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 4px;
}
.d-orders__order .second-order__image-parent .image {
  width: 60px;
  aspect-ratio: 1/1.13;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.d-orders__order .second-order__image-parent .img {
  width: 100%;
  position: absolute;
}
.d-orders__order .second-order__info-parent {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.d-orders__order .second-order__info-parent .product-name {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.d-orders__order .second-order__info-parent .name {
  color: rgb(122, 48, 48);
  font-size: 1rem;
}
.d-orders__order .second-order__info-parent .name span {
  font-weight: 500;
}
.d-orders__order .second-order__info-parent .order-stats {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: flex-start;
  padding: 0.2rem 0 0.5rem 0;
}
.d-orders__order .second-order__info-parent .color {
  font-size: 0.8125rem;
  background-color: #ffd3ce;
  color: rgb(122, 48, 48);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}
.d-orders__order .second-order__info-parent .size {
  font-size: 0.8125rem;
  background-color: #ffd3ce;
  color: rgb(122, 48, 48);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}
.d-orders__order .second-order__info-parent .discount {
  font-size: 0.8125rem;
  background-color: #ffd3ce;
  color: rgb(122, 48, 48);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}
.d-orders__order .second-order__info-parent .quantity {
  font-size: 0.8125rem;
  background-color: #ffd3ce;
  color: rgb(122, 48, 48);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 500;
}
.d-orders__order .second-order__right-wraper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-orders__order .second-order__right-wraper {
    margin-top: 1rem;
  }
}
.d-orders__order .second-order__price-parent {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
@media (max-width: 769px) {
  .d-orders__order .second-order__price-parent {
    align-items: flex-start;
  }
}
.d-orders__order .second-order__price-parent .total-price {
  font-size: 1rem;
  color: rgb(122, 48, 48);
  font-weight: 500;
  text-align: right;
}
.d-orders__order .second-order__price-parent .single-price {
  font-size: 0.875rem;
  color: rgb(122, 48, 48);
  text-align: right;
}

.radio-filter {
  width: 100%;
  display: flex;
  justify-content: center;
}
.radio-filter__container {
  width: 100%;
  max-width: 1380px;
  padding: 0rem 2rem 0rem 2rem;
}
@media (max-width: 769px) {
  .radio-filter__container {
    padding: 0rem 3.5vw 0rem 3.5vw;
  }
}
.radio-filter__parent {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
}
.radio-filter__radio-wraper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  border-radius: 8px;
  height: 35px;
  gap: 8px;
  background-color: rgb(250, 248, 248);
  cursor: pointer;
}
.radio-filter__radio-wraper.clicked .left-text {
  opacity: 0.5;
}
.radio-filter__radio-wraper.clicked .left-text .text {
  font-weight: 400;
}
.radio-filter__radio-wraper.clicked .right-text {
  opacity: 1;
}
.radio-filter__radio-wraper.clicked .right-text .text {
  font-weight: 500;
}
.radio-filter__radio-wraper .left-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  transition: 0.1s ease-in-out;
  opacity: 1;
}
.radio-filter__radio-wraper .left-text .text {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  padding: 0.2rem;
  font-weight: 500;
}
.radio-filter__radio-wraper .right-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  transition: 0.1s ease-in-out;
  opacity: 0.5;
}
.radio-filter__radio-wraper .right-text .text {
  font-size: 0.8125rem;
  color: rgb(122, 48, 48);
  padding: 0.2rem;
  font-weight: 400;
}

.pagination-wraper {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
.pagination-wraper .buttons-wraper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
@media (max-width: 769px) {
  .pagination-wraper .buttons-wraper {
    gap: 4px;
  }
}
.pagination-wraper .icon {
  width: 20px;
  height: 20px;
}
.pagination-wraper .icon path {
  fill: rgb(255, 255, 255);
}
@media (max-width: 769px) {
  .pagination-wraper .icon {
    width: 18px;
    height: 18px;
  }
}
.pagination-wraper .button {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.pagination-wraper .text {
  color: rgb(61, 61, 61);
  font-size: 1rem;
}
@media (max-width: 769px) {
  .pagination-wraper .text {
    font-size: 0.875rem;
  }
}
.pagination-wraper .button:hover {
  background-color: rgb(250, 248, 248);
}
.pagination-wraper .button.selected {
  background-color: rgb(122, 48, 48);
}
.pagination-wraper .button.selected .text {
  color: rgb(255, 255, 255);
}
.pagination-wraper .button.none {
  opacity: 0.7;
  pointer-events: none;
}

.sales-overlay {
  position: fixed;
  background: rgb(255, 255, 255);
  max-width: 425px;
  width: 100%;
  border-radius: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 1.5rem 0 2rem 0;
  opacity: 0;
  pointer-events: none;
}
.sales-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.sales-overlay .image-wraper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
}
.sales-overlay[data-number="2"] .image-parent2 {
  display: flex;
}
.sales-overlay:not([data-number="2"]) .image-parent1 {
  display: flex;
}
.sales-overlay .image-parent1 {
  width: 250px;
  aspect-ratio: 1/1.11;
  background-color: #FBEBDE;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  display: none;
}
.sales-overlay .image-parent1 .img {
  width: 100%;
  height: 100%;
  background-image: url("");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sales-overlay .image-parent2 {
  width: 90%;
  aspect-ratio: 2.22/1;
  background-color: #FBEBDE;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  display: none;
}
.sales-overlay .image-parent2 .img {
  width: 100%;
  height: 100%;
  background-image: url("");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sales-overlay .text-wraper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.sales-overlay .text-input {
  width: 90%;
  background-color: rgb(250, 248, 248);
  border-radius: 4px;
  border: 1px solid rgb(179, 179, 179);
  outline: none;
  padding: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: rgb(61, 61, 61);
}
.sales-overlay .upload-wraper {
  width: 100%;
  display: flex;
  justify-content: center;
}
.sales-overlay .js-drop-area {
  width: 90%;
  cursor: pointer;
}
.sales-overlay .remove-butt {
  width: 90%;
  display: flex;
  justify-content: flex-end;
  height: 30px;
}
.sales-overlay .remove-butt p {
  position: absolute;
  font-weight: 700;
  padding: 0.5rem 0.7rem;
  color: rgb(122, 48, 48);
  cursor: pointer;
}
.sales-overlay .submit-butt {
  width: 90%;
  display: flex;
  justify-content: center;
}
.sales-overlay .submit-butt .butt {
  border-radius: 4px;
  background-color: rgb(255, 255, 255);
  border: 1px solid rgb(122, 48, 48);
  padding: 0.6rem 0rem;
  width: 100%;
  transition: 0.1s ease-in-out;
  cursor: pointer;
}
.sales-overlay .submit-butt .butt.waiting {
  opacity: 0.8;
  pointer-events: none;
}
.sales-overlay .submit-butt .butt:hover {
  background-color: rgb(122, 48, 48);
}
.sales-overlay .submit-butt .butt:hover span {
  color: rgb(255, 255, 255);
}
.sales-overlay .submit-butt .butt span {
  color: rgb(122, 48, 48);
  font-size: 0.875rem;
  transition: 0.1s ease-in-out;
}

.thank-you {
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .thank-you {
    padding: 12px;
  }
}
.thank-you__header {
  text-align: center;
  margin-bottom: 30px;
}
.thank-you__header h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: rgb(122, 48, 48);
  font-weight: 600;
}
.thank-you__header p {
  color: #50946E;
}
.thank-you__form {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  background-color: rgb(250, 248, 248);
  margin-bottom: 30px;
  width: 100%;
  max-width: 700px;
}
.thank-you__form .form-row {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .thank-you__form .form-row {
    flex-direction: column;
  }
}
.thank-you__form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.thank-you__form .form-group label {
  font-size: 13px;
  margin-bottom: 6px;
  color: rgba(61, 61, 61, 0.8);
  margin-left: 4px;
  font-size: 0.875rem;
}
.thank-you__form .form-group input {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: 0.1s ease-in-out;
  font-size: 0.875rem;
}
.thank-you__form .form-group input:focus {
  border-color: rgba(61, 61, 61, 0.8);
}
.thank-you__form .user-order {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.thank-you__form .wraper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.thank-you__form .head {
  color: rgba(61, 61, 61, 0.8);
  font-weight: 500;
}
.thank-you__form .text {
  color: rgba(61, 61, 61, 0.8);
}
.thank-you__orders {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.thank-you__orders h2 {
  color: rgb(122, 48, 48);
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}
.thank-you__orders .orders-table {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.thank-you__orders .orders-table__header, .thank-you__orders .orders-table__row {
  display: grid;
  grid-template-columns: 80px 2fr 1fr 1fr 1fr 1fr;
  align-items: center;
}
.thank-you__orders .orders-table__header {
  font-weight: 600;
}
.thank-you__orders .orders-table__header div {
  padding: 15px;
  color: rgba(61, 61, 61, 0.8);
}
.thank-you__orders .orders-table__row {
  border-top: 1px solid #ececec;
}
.thank-you__orders .orders-table__row > div {
  padding: 15px;
  color: rgb(122, 48, 48);
}
.thank-you__orders .orders-table__image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.thank-you__orders .orders-table__price {
  font-weight: 600;
  color: rgba(61, 61, 61, 0.8);
}
@media (max-width: 768px) {
  .thank-you__orders .orders-table__header {
    display: none;
  }
  .thank-you__orders .orders-table__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    width: 200px;
  }
  .thank-you__orders .orders-table__row > div {
    padding: 0;
  }
}

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