@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
}

@media screen and (max-width: 576px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

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

ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

body {
  font-family: "Manrope";
  color: #343A40;
}

.color-600 {
  color: #6C757D;
}

.color-500 {
  color: #ADB5BD;
}

.color-400 {
  color: #CED4DA;
}

.color-300 {
  color: #DEE2E6;
}

.color-red-500 {
  color: #DC3545;
}

.color-green-500 {
  color: rgb(25, 135, 84);
}

.color-800 {
  color: #343A40;
}

.color-600 {
  color: #6C757D;
}

.color-brand-new {
  color: #B74079;
}

.color-brand-orange {
  color: rgb(226, 128, 79);
}

.color-green {
  color: #198754;
}

.color-black {
  color: black;
}

.text-12 {
  font-size: 12px; /*13*/
  font-weight: 400;
  font-style: normal;
  line-height: 16.8px;
}

.text-old-price-20 {
  font-size: 20px;
  font-weight: 300;
  line-height: 27.2px;
  text-decoration: line-through;
}

.text-12-bold {
  font-size: 12px; /*13*/
  font-weight: 600;
  font-style: normal;
  line-height: 16.39px;
}

.button-default-short {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  background-color: #343A40;
  border-radius: 8px;
  padding: 0 20px;
  color: white;
  transition: background-color 0.3s ease;
}
.button-default-short:hover {
  background-color: #495057;
}

.button-light-short {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  background-color: #E9ECEF;
  border-radius: 8px;
  padding: 0 20px;
  color: white;
  transition: background-color 0.3s ease;
}
.button-light-short:hover {
  background-color: #DEE2E6;
}

.more {
  position: absolute;
  cursor: pointer;
  color: #6EA8FE;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -57.29%, #FFFFFF 60.68%);
  height: 96px;
  width: 100%;
  bottom: 0;
}
.more-block {
  position: relative;
  overflow: hidden;
}
.more-block.open {
  height: auto !important;
  overflow: visible;
}

h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30.25px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #E9ECEF;
}

.advertise {
  z-index: 1;
  position: relative;
  border-radius: 8px;
  height: 98px;
  padding: 12px 16px;
  border: none;
  overflow: hidden;
}
.advertise p {
  z-index: 3;
}
.advertise::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
  z-index: 1;
  box-sizing: border-box;
}
.advertise::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  transition: background 2s;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), linear-gradient(-90deg, rgba(248, 249, 250, 0) 0%, #F8F9FA 60%);
  z-index: 2;
  box-sizing: border-box;
}
.advertise:hover::after {
  background: linear-gradient(-90deg, rgba(248, 249, 250, 0) 0%, #F8F9FA 68.41%), linear-gradient(-90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
}
.advertise p {
  position: relative;
  text-align: left;
}

.recomendation-block {
  position: relative;
  border-radius: 8px;
  height: 98px;
  padding: 12px 16px;
  border: none;
  overflow: hidden;
}
.recomendation-block p {
  z-index: 3;
}
.recomendation-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  transform: scaleX(-1);
  z-index: 1;
  box-sizing: border-box;
}
.recomendation-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(-90deg, rgba(248, 249, 250, 0) 0%, #F8F9FA 68.41%), linear-gradient(-90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 100%);
  z-index: 2;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.recomendation-block:hover::after {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), linear-gradient(-90deg, rgba(248, 249, 250, 0) 0%, #F8F9FA 60%);
}
.recomendation-block p {
  position: relative;
  text-align: left;
}

.button-default {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  background-color: #343A40;
  border-radius: 8px;
  padding: 0 28px;
  color: white;
  transition: background-color 0.3s ease;
}
.button-default.bg-gray {
  background-color: #E9ECEF;
  color: black;
}
.button-default:hover {
  background-color: #495057;
}

.button-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  background-color: #E9ECEF;
  border-radius: 8px;
  padding: 0 28px;
  color: #343A40;
  transition: background-color 0.3s ease;
}
.button-light:hover {
  background-color: #DEE2E6;
}

.text-13 {
  font-size: 13px; /*13*/
  font-weight: 400;
  font-style: normal;
  line-height: 17.76px;
}

.text-14 {
  font-size: 14px; /*13*/
  font-weight: 400;
  font-style: normal;
  line-height: 19.6px;
}

.text-14-semi {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.6px;
}

.text-14-bold {
  font-size: 14px;
  font-weight: 600;
  line-height: 19.25px;
}

.text-14-boldest {
  font-size: 14px;
  font-weight: 800;
  line-height: 19.25px;
}

.text-22 {
  font-size: 22px;
  font-weight: 600;
  line-height: 30.25px;
}

.text-22-semi {
  font-size: 22px;
  font-weight: 600;
  line-height: 30.25px;
}

.text-16-semi {
  font-size: 16px;
  font-weight: 500;
  line-height: 22.4px;
}

.text-16 {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}

.text-16-bold {
  font-size: 16px;
  font-weight: 600;
  line-height: 22.4px;
}

@media screen and (max-width: 576px) {
  .text-16-bold-mobile {
    font-size: 16px;
    font-weight: 600;
    line-height: 22.4px;
  }
}

.text-20-bold {
  font-size: 20px;
  font-weight: 600;
  line-height: 27.32px;
}

.text-20 {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.text-20-semi {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
}

.text-24 {
  font-size: 24px;
  font-weight: 500;
  line-height: 33.6px;
}

.text-28 {
  font-size: 28px;
  font-weight: 500;
  line-height: 29.2px; /*39.2px;*/
}

.text-36 {
  font-size: 36px;
  font-weight: 500;
  font-style: normal;
  line-height: 36px;
}

.header-1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 43.71px;
  margin-bottom: 0;
}

.border-gray {
  margin: 12px 0;
  border: 1px solid #E9ECEF;
}

.input-default {
  padding: 6px 12px;
  border: 1px solid rgb(206, 212, 218);
  border-radius: 12px;
  background-color: inherit;
  outline: none;
}
.input-default::placeholder {
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  color: #ADB5BD;
}
.input-default:focus {
  border-color: rgb(110, 168, 254);
}

.input-area {
  padding: 6px 12px;
  border: 1px solid rgb(206, 212, 218);
  border-radius: 12px;
  background-color: inherit;
  height: 94px;
  outline: none;
  resize: none;
}
.input-area::placeholder {
  font-size: 14px;
  line-height: 19.6px;
  font-weight: 400;
  color: #ADB5BD;
}
.input-area:focus {
  border-color: rgb(110, 168, 254);
}

.cart-button {
  position: relative;
}
.cart-button.with-circle::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 17px;
  width: 7.5px;
  height: 7.5px;
  background-color: #B74079;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 576px) {
  .header-1-mobile {
    font-size: 24px;
    font-weight: 600;
    line-height: 33px;
    margin-bottom: 0;
  }
}

.header-2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 38.25px;
  margin-bottom: 0;
}

@media screen and (max-width: 576px) {
  .header-2-mobile {
    font-size: 20px;
    font-weight: 600;
    line-height: 27.32px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 576px) {
  .text-12-mobile {
    font-size: 12px;
    line-height: 16.8px;
    font-weight: 400;
    font-style: normal;
  }
}

@media screen and (max-width: 576px) {
  .text-14-mobile {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
  }
}

@media screen and (max-width: 576px) {
  .text-14-semi-mobile {
    font-size: 14px;
    font-weight: 500;
    line-height: 19.6px;
  }
}

button {
  border: none;
  background: transparent;
}

.gray-hr {
  border: 1px solid #E9ECEF;
}

.flex-gap-1 {
  gap: 12px;
}

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

@media screen and (max-width: 576px) {
  .mt-48-mobile {
    margin-top: 48px;
  }
}

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

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

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

p {
  margin-bottom: 0;
}

.discount {
  color: white;
  border-radius: 8px;
  width: fit-content;
  height: fit-content;
  background-color: #B74079;
}
@media screen and (max-width: 576px) {
  .discount-small-mobile {
    padding: 0 4px;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.card {
  position: relative;
  width: 200px;
  border: none;
  z-index: -1;
}
.card-like {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
  color: #CED4DA;
}
.card-old-price {
  text-decoration: line-through;
  color: #CED4DA;
}
.card-image {
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.card button {
  padding: 8px 0;
}
@media screen and (max-width: 576px) {
  .card {
    width: 100%;
  }
}

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