@font-face {
  font-family: Circe;
  font-display: swap;
  src: url(../fonts/circe/Circe-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal
}
@font-face {
  font-family: Circe;
  font-display: swap;
  src: url(../fonts/circe/Circe-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal
}
:root {
  --fontFamily: "Circe",sans-serif;
  --fz: 16px;
  --mainColor: #1c1c1c;
  --black: #000;
  --white: #fff;
  --white-light: rgba(255, 255, 255, 0.8);
  --peachColor: #f89b93;
  --silver: #f5f6f7
}
/* reset css */
* {
  padding: 0;
  margin: 0;
  border: 0
}
*,
*::after,
*::before {
  box-sizing: border-box
}
*::after,
*::before {
  display: inline-block
}
body,
html {
  height: 100%;
  min-width: 320px
}
body {
  color: var(--mainColor);
  line-height: 1;
  font-family: var(--fontFamily);
  font-size: var(--fz);
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
button,
input,
textarea {
  font-family: var(--fontFamily);
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: rgba(0,0,0,0)
}
input,
textarea {
  width: 100%
}
label {
  display: inline-block
}
button,
option,
select {
  cursor: pointer
}
a {
  /*display: inline-block;*/
  color: inherit;
  text-decoration: none
}
ul li {
  list-style: none
}
img {
  vertical-align: top
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit
}
/* .lock body {
  overflow: hidden;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden
}
@supports (overflow:clip) {
  .wrapper {
    overflow: clip
  }
}
.wrapper>main {
  flex: 1 1 auto
}
.wrapper>* {
  min-width: 0
}
[class*=__container] {
  max-width: 118.25rem;
  margin: 0 auto;
  padding: 0 .9375rem
} */



.btn {
  display: inline-flex;
  padding: 12.5px 41px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  justify-content: center;
  background: var(--peachColor);
  color: var(--white);
  border: 1px solid var(--peachColor);
  transition: background-color .3s ease,border .3s ease
}
.btn-icon {
  padding: 7px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--mainColor);
  background-color: var(--white-light);
  transition: background-color .3s ease,box-shadow .3s ease
}
.btn-icon i {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--peachColor)
}
.btn-icon i img {
  max-width: 100%
}
.fav {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--silver)
}
.fav img {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  max-width: 100%
}


/* .options {
  display: flex;
  gap: 9px;
  align-items: flex-start
}
.options__item {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer
}
.options__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute
}
.options__input:focus-visible+.options__label:before {
  box-shadow: 0 0 5px var(--black)
}
.options__input:checked+.options__label:after {
  -webkit-transform: translate(-50%,-50%) scale(1);
  transform: translate(-50%,-50%) scale(1)
}
.options__label {
  display: inline-flex;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%)
}
.options__label:before {
  content: "";
  align-self: flex-start;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--peachColor);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%)
}
.options__label:after {
  content: "";
  transition: all .3s ease 0s;
  -webkit-transform: scale(0);
  transform: scale(0);
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--mainColor);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) scale(0);
  transform: translate(-50%,-50%) scale(0)
} */
.options-sizes {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  flex-wrap: wrap
}
.options-sizes.add {
  gap: 4px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: repeat(5, 1fr);
  height: 165px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: auto;
}
.options-sizes.add::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.options-sizes.add .options-sizes__label {
  padding: 5.5px 4px
}
.options-sizes.add .options-sizes__text {
  color: var(--white)
}
.options-sizes__item {
  flex: 0 1 auto;
  position: relative;
  cursor: pointer
}
.options-sizes__input {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute
}
.options-sizes__input:focus-visible+.options-sizes__label {
  box-shadow: 0 0 5px var(--black)
}
.options-sizes__input:checked+.options-sizes__label {
  border: 1px solid var(--peachColor)
}
.options-sizes__label {
  display: inline-flex;
  cursor: pointer;
  padding: 5.5px 10px;
  border: 1px solid #d9d9d9;
  transition: border .3s ease;
  justify-content: center;
  width: 100%;
  margin-top: 0;
}
.options-sizes__text {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  text-align: center
}
.quantity {
  width: 112px;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 8px
}
.quantity__button {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  position: relative;
  background-color: #f1f1f1;
  border-radius: 50%;
  cursor: pointer
}
.quantity__button::after,
.quantity__button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #b1b0b0;
  width: 12px;
  height: 1px;
  border-radius: 3px
}
.quantity__button--plus::before {
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%)
}
.quantity__button--plus::after {
  -webkit-transform: translate(-50%,-50%) rotate(-90deg);
  transform: translate(-50%,-50%) rotate(-90deg)
}
.quantity__button--minus::after,
.quantity__button--minus::before {
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%)
}
.quantity__input {
  flex: 0 0 50px;
  border: 1px solid #d9d9d9;
  width: 50px;
  height: 34px
}
.quantity__input input {
  height: 100%;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  line-height: 14;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
  padding-left: 0;
  margin-top: 0;
  border: 0;
}



.form-bra {
  display: flex;
  gap: 8px;
  align-items: center
}
.form-bra__image {
  flex: 0 0 66px;
  width: 66px;
  height: 42px
}
.form-bra__image img {
  max-width: 100%
}
.form-bra__ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.91;
  text-transform: uppercase
}
.form-bra__ttl i {
  flex: 0 0 12px;
  width: 12px;
  height: 12px
}
.form-bra__ttl i img {
  max-width: 100%
}

.basket {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 60;
  height: 100%;
  overflow-y: auto;
  background-color: var(--white);
  transition: right .5s ease
}
.basket__header {
  position: sticky;
  top: 0;
  z-index: 4;
  background-color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  padding: 22px 23px 22px 15px;
  border-bottom: 1px solid #f1f1f1
}
.basket__body {
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 40px 0 rgba(69,69,69,.25);
  padding: 32px 15px
}
.basket__ttl {
  font-weight: 700;
  font-size: 18px;
  line-height: 117%;
  text-transform: uppercase
}
.basket__close {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  position: relative
}
.basket__close::after,
.basket__close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  border-radius: 3px;
  background-color: #b1b0b0
}
.basket__close::before {
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg)
}
.basket__close::after {
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg)
}
.basket__list:not(:last-child) {
  margin-bottom: 24px
}
.basket__item:not(:last-child) {
  margin-bottom: 24px
}
.basket__article {
  display: grid;
  grid-template-columns: 112px auto;
  gap: 24px 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #d9d9d9
}
.basket__image {
  aspect-ratio: 112/168
}
.basket__image img {
  max-width: 100%
}
.basket__ttl-product {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase
}
.basket__ttl-product:not(:last-child) {
  margin-bottom: 5px
}
.basket__color {
  font-size: 12px
}
.basket__color span {
  font-weight: 700
}
.basket__color:not(:last-child) {
  margin-bottom: 5px
}
.basket__size {
  font-size: 12px
}
.basket__size span {
  font-weight: 700
}
.basket__size:not(:last-child) {
  margin-bottom: 4px
}
.basket__price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

.basket__old-price {
  position: relative;
  display: inline-block;
  &::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
    background-color: #1c1c1c;
  }
}
.basket__new-price {
  color: #f89b93;
}

.basket__price:not(:last-child) {
  margin-bottom: 15px
}
.basket__quantity:not(:last-child) {
  margin-bottom: 5px
}
.basket__actions {
  grid-column: 1/3;
  display: flex;
  align-items: center;
  gap: 10px
}
.basket__link {
  font-size: 11px;
  line-height: 1.91;
  text-transform: uppercase;
  color: #858585;
  margin-right: 9px;
  position: relative
}
.basket__link:not(:last-child)::after {
  content: "|";
  position: absolute;
  top: 0;
  right: -9px
}
.basket__footer:not(:last-child) {
  margin-bottom: 24px
}
.basket__delivery {
  display: flex;
  justify-content: space-between;
  gap: 20px
}
.basket__delivery :first-child {
  font-size: 12px;
  line-height: 1.75;
  text-transform: uppercase;
  color: var(--black)
}
.basket__delivery :last-child {
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.21;
  text-align: right
}
.basket__delivery:not(:last-child) {
  margin-bottom: 24px
}
.basket__total {
  display: flex;
  gap: 20px;
  justify-content: space-between
}
.basket__total :first-child {
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase
}
.basket__total :last-child {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--black)
}
.basket__total:not(:last-child) {
  margin-bottom: 24px
}
.basket__btn {
  padding-inline: 10px;
  width: 100%
}
.basket__btn:not(:last-child) {
  margin-bottom: 20px
}
.basket__continue-order:not(:last-child) {
  margin-bottom: 20px
}
.basket__continue-order button {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  text-align: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 175%;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: #858585;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: text-decoration-color .3s ease;
  color: #858585
}
.basket__free-delivery {
  background-color: #f1f1f1;
  position: relative;
  left: -15px;
  width: calc(100% + 30px);
  font-size: 13px;
  text-align: center;
  padding: 19px 8px
}
.basket__free-delivery:not(:last-child) {
  margin-bottom: 32px
}
.basket__add-to-order h3 {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center
}
.basket__add-to-order h3:not(:last-child) {
  margin-bottom: 24px
}
.basket__add-to-order ul {
  display: grid;
  grid-template-columns: repeat(2,auto);
  gap: 24px 10px
}
.basket__add-to-order ul li article div {
  height: 208px;
  position: relative
}
.basket__add-to-order ul li article div img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover
}
.basket__add-to-order ul li article div:not(:last-child) {
  margin-bottom: 10px
}
.basket__add-to-order ul li article h4 {
  font-size: 14px;
  text-align: center;
  color: var(--black);
  line-height: 1.2
}
.basket__add-to-order ul li article h4:not(:last-child) {
  margin-bottom: 2px
}
.basket__add-to-order ul li article h5 {
  font-size: 13px;
  text-align: center;
  color: var(--black);
  line-height: 1.2
}
.basket__add-to-order ul li article h5:not(:last-child) {
  margin-bottom: 2px
}
.basket__add-to-order ul li article p {
  font-weight: 700;
  line-height: 1.2;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  color: var(--black)
}
.basket__add-to-order ul li article p:not(:last-child) {
  margin-bottom: 2px
}


.add-card {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 56;
  background-color: var(--white);
  height: 100%;
  overflow-y: auto;
  transition: right .5s ease
}
.add-card__header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  z-index: 3;
  min-height: 60px;
  border-bottom: 1px solid #f1f1f1;
  z-index: 4
}
.add-card__close-btn {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 16px;
  height: 16px
}
.add-card__close-btn::after,
.add-card__close-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 100%;
  border-radius: 10px;
  background-color: #b1b0b0
}
.add-card__close-btn::before {
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg)
}
.add-card__close-btn::after {
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg)
}
.add-card__body {
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 40px 0 rgba(69,69,69,.25)
}
.add-card__ttl {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  text-align: center
}
.add-card__ttl:not(:last-child) {
  margin-bottom: 24px
}
.add-card__list {
  display: grid
}
.add-card__image {
  overflow: hidden;
  position: relative;
  padding-bottom: 270px
}
.add-card__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1
}
.add-card__image:not(:last-child) {
  margin-bottom: 16px
}
.add-card__btn-sizes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: var(--peachColor);
  z-index: 2;
  position: absolute;
  right: 12px;
  bottom: 12px;
  transition: opacity .3s ease
}
.add-card__btn-sizes i {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  position: absolute
}
.add-card__btn-sizes i img {
  max-width: 100%
}
.add-card__btn-sizes.none {
  opacity: 0;
  visibility: hidden;
  z-index: -1
}
.add-card__info h2 {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: var(--black)
}
.add-card__info h2:not(:last-child) {
  margin-bottom: 7px
}
.add-card__info h3 {
  font-size: 13px;
  text-transform: uppercase;
  text-align: center
}
.add-card__info h3:not(:last-child) {
  margin-bottom: 25px
}
.add-card__info p {
  text-align: center
}
.add-card__prizes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase
}
.add-card__prizes:not(:last-child) {
  margin-bottom: 25px
}
.add-card__prize-new {
  color: var(--peachColor)
}
.sizes-wrapper {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.6);
  transition: opacity .3s ease 0s;
  z-index: -1;
  padding: 44px 11px 15px 11px
}
.sizes-wrapper.visible {
  opacity: 1;
  visibility: visible;
  z-index: 4
}
.sizes-wrapper__btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 15px;
  height: 15px
}
.sizes-wrapper__btn-close::after,
.sizes-wrapper__btn-close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  border-radius: 3px;
  background-color: #adadad
}
.sizes-wrapper__btn-close::before {
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg)
}
.sizes-wrapper__btn-close::after {
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg)
}
.sizes-wrapper__color {
  font-size: 14px;
  color: var(--white)
}
.sizes-wrapper__color span {
  font-weight: 700
}
.sizes-wrapper__color:not(:last-child) {
  margin-bottom: 9px
}
.sizes-wrapper__size {
  font-size: 14px;
  color: var(--white)
}
.sizes-wrapper__size:not(:last-child) {
  margin-bottom: 6px
}
.card__add-new-item {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 99999
}



@media (min-width:479.98px) {
  .basket {
    width: 315px
  }
  .basket::before {
    content: "";
    position: fixed;
    top: 0;
    left: -200%;
    height: 100%;
    width: calc(100% - 315px);
    background-color: rgba(0,0,0,.6);
    transition: left .5s ease
  }
  .basket.open {
    right: 0
  }
  .basket.open::before {
    left: 0
  }
  .add-card__body {
    padding: 32px 15px
  }
  .add-card__list {
    grid-template-columns: repeat(2,1fr);
    gap: 32px 10px
  }
}
@media (min-width:767.98px) {
  .card__add-new-item.mob {
    display: none
  }
  /*.card__add-fav {*/
  /*  display: none*/
  /*}*/
  .info-card__prod-ttl:not(:last-child) {
    margin-bottom: 17px
  }
  .info-card__rating:not(:last-child) {
    margin-bottom: 17px
  }
  .info-card__price:not(:last-child) {
    margin-bottom: 17px
  }
  .add-card {
    width: 400px
  }
  .add-card::before {
    content: "";
    position: fixed;
    left: -100%;
    top: 0;
    width: calc(100% - 400px);
    height: 100%;
    transition: left .5s ease;
    background-color: rgba(0,0,0,.6)
  }
  .add-card.open {
    right: 0
  }
  .add-card.open::before {
    left: 0
  }
}

@media (max-width:767.98px) {
  .card__add-new-item.desk {
    display: none
  }
  .card__add-new-item.mob {
    display: inline-flex;
    position: absolute;
    bottom: 45px;
    left: 15px
  }
  .add-card {
    width: 100%
  }
  .add-card.open {
    right: 0
  }
}
@media (max-width:479.98px) {
  .basket {
    width: 100%
  }
  .basket.open {
    right: 0
  }
  .add-card__body {
    padding: 32px 65px
  }
  .add-card__list {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-inline: 5px
  }
  .add-card__article {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .add-card__image {
    width: 180px;
  }
}

@media (any-hover:hover) {
  .btn:hover {
    background-color: var(--mainColor);
    border: 1px solid var(--mainColor)
  }
  .btn-icon:hover {
    box-shadow: 0 0 12px 0 rgba(0,0,0,.25)
  }
  .options-sizes__label:hover {
    border: 1px solid var(--peachColor)
  }
  /*.spollers__login-form:hover {*/
  /*  background-color: var(--mainColor);*/
  /*  color: var(--white)*/
  /*}*/
  .basket__continue-order button:hover {
    text-decoration-color: transparent
  }
  .header a:hover {
    color: #f89b93
  }
  .info-card__collection-name:hover {
    text-decoration-color: transparent
  }
  /*.rating__rate a:hover {*/
  /*  text-decoration-color: transparent*/
  /*}*/
  .sizes-info__header button:hover {
    text-decoration-color: transparent
  }
}