@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
html, body {
  font-family: "Manrope", sans-serif;
  background: #322925;
  margin: 0;
  /*overscroll-behavior-y: none;*/
  color: white;
}

body {
/*  position: fixed;
  overflow: hidden;*/
  /*position:fixed; left:0; top:0; right:0; bottom:0"*/
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  /*border:none !important;*/
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

body > .mainwrapper {
  width: 100vw;
  /*height: -webkit-fill-available;*/
  height: 120vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch; /* enables “momentum” (smooth) scrolling */
}

* {
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

*:focus, *:target {
  outline: none;
  box-shadow: none;
}

a {
  text-decoration: none;
}

textarea {
  resize: none;
}

button {
  box-shadow: none;
  outline: none;
  border: none;
  background: none;
}

.header {
  padding: 30px 0;
}
.header .page-back {
  background: #332A26;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .page-back svg {
  margin-left: -4px;
}
.header .page-back svg path {
  fill: #fff;
}
.header.js-active .page-head {
  display: none;
}
.header_catalog {
  padding-bottom: 0;
}
.header_catalog .page-head {
  padding-bottom: 1px;
  transition: all 0.4s;
  padding-top: 30px;
}
.header_catalog .page-head.scrolled {
  padding-top: 0;
}
.header.js-active {
  background: #47362D;
  height: 100vh;
  overflow: auto;
}
.header__menu {
  display: none;
}
.header__menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 76px 0;
}
.header__menu li {
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
}
.header__menu a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
.header__menu a:hover, .header__menu a.active {
  color: #FFBB46;
}
.header_pr {
  background: #4B3A33;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
  /*position: fixed;*/
  top: 0;
  width: 100%;
  z-index: 9;
}
.header_tr .page-head {
  background: none;
  padding: 25px 0 0;
}
.header_tr .page-back {
  background: #4B3A33;
}
.header_tr + .main .main__content {
  padding-top: 0;
}
.header_mp .page-head {
  padding: 26px 0 0;
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.burger {
  display: inline-block;
  cursor: pointer;
  transition: padding 0.2s;
  position: relative;
}
.burger .bar {
  margin: 11px 0;
  width: 33px;
  height: 2px;
  background: #fff;
  border-radius: 1.5px;
  transition: margin 0.2s, transform 0.2s;
}
.burger.close .bar {
  margin: 4px 0;
}
.burger.close .bar:first-child {
  transform: translateY(6px) rotate(45deg);
}
.burger.close .bar:nth-child(2) {
  opacity: 0;
}
.burger.close .bar:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.container {
  padding: 0 24px;
  width: 100%;
}
.container-fluid {
  padding: 0 5px;
}

.btn {
  padding: 16px;
  border-radius: 10px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}
.btn-primary {
  color: #333333;
  background: #FFBB46;
  border-color: #FFBB46;
}

.splashscreen {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  height: 100vh;
  height: -webkit-fill-available;
  padding: 24px;

}
.splashscreen .logo {
  margin-top: 36px;
}
.splashscreen__text {
  font-size: 50px;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  letter-spacing: -6%;
}

.age-confirm {
  padding: 26px 30px;
  background: #4B3A33;
  border-radius: 10px;
  width: 100%;
}
.age-confirm__text {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 36px;
  letter-spacing: -4%;
  text-align: center;
}
.age-confirm__actions {
  display: flex;
  gap: 7px;
}
.age-confirm__actions button {
  width: 100%;
}

.main {
  color: #fff;
}
.main__content {
  padding: 37px 0;
}
.main.catalog .main__content {
  padding-top: 16px;
}

.page-head {
  background: #4B3A33;
  padding: 40px 0 23px;
}
.page-head__search {
  cursor: pointer;
}
.page-head__title {
  font-size: 32px;
  color: #fff;
  letter-spacing: -4%;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-head__title._sm {
  font-size: 22px;
}
.page-head__title.ep-title {
  font-size: 22px;
}
.page-head input {
  display: none;
}
.page-head__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid transparent;
}
.page-head.search .page-head__search {
  border-color: #fff;
}
.page-head.search .page-head__title {
  display: none;
}
.page-head.search input {
  display: block;
  font-size: 20px;
  color: #fff;
  padding: 0px 0 13px;
  width: 100%;
  background: none;
}

.form button[type=submit] {
  margin-top: 54px;
}
.form__others {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
  letter-spacing: -2%;
  line-height: 140%;
}
.form__others a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.form__others a:hover {
  color: #fff;
}

.input {
  width: 100%;
  border: 0;
  border-bottom: solid 1.5px grey;
  color: #fff;
  background: none;
  padding: 10px 0;
  font-size: 18px;
  font-weight: 500;
}
.input-container {
  position: relative;
  margin-bottom: 20px;
}
.input-label {
  position: relative;
}
.input:focus, .input:target {
  outline: none;
  box-shadow: none;
  border-color: #FFBB46;
}

.label-span {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.input:focus + .label-span, .input.full + .label-span {
  top: -1.8rem;
  left: 0rem;
}

.swiper-pagination {
  position: absolute;
  bottom: 19px;
  left: 19px;
  right: 19px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.slider-progress {
  position: absolute;
  bottom: 19px;
  left: 19px;
  right: 19px;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.autoplay-progress {
  background: rgba(255, 255, 255, 0.3);
  /*opacity: 0.3;*/
  height: 4px;
  width: 100%;
  border-radius: 100px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.autoplay-progress span {
  height: 4px;
  background: #FFBB46;
  display: block;
  transition: all .1s;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.3;
  height: 4px;
  width: 100%;
  border-radius: 100px;
  transition: all 0.4s;
}
.swiper-pagination-bullet-active {
  background: #FFBB46;
  opacity: 1;
}

.home-slider {
  border-radius: 20px;
  height: 306px;
  margin-bottom: 5px;
}
.home-slider .swiper-slide:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0.9;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, #312825);
}
.home-slider__title {
  position: absolute;
  bottom: 43px;
  left: 19px;
  right: 19px;
  color: #fff;
  z-index: 2;
  font-size: 32px;
  letter-spacing: -2%;
  line-height: 1.1;
  font-weight: 500;
}
.home-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.home {
  padding-bottom: 15px;
}

.full-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  row-gap: 5px;
  margin-bottom: 5px;
}



.full-link {
  font-size: 22px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #4B3A33;
  border-radius: 20px;
  height: 180px;
  transition: all .4s;
}
a {
  transition: all .4s;
}
a:active {
  opacity: .8;
}

.full-link:active {
  opacity: .8;
}
.full-link_100 {
  height: auto;
}
.full-link__icon {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #604436;
}

.csearch {
  padding: 20px;
}
.csearch__row {
  display: flex;
  gap: 17px;
}
.csearch__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.csearch .cbtn {
  margin-top: auto;
}
.csearch__title {
  font-size: 32px;
  margin-bottom: 13px;
}
.csearch__text {
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.3;
}
.csearch__img {
  width: 125px;
  flex-shrink: 0;
  background: #F6F2E6;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
.csearch__img img {
  width: 100%;
  border-radius: 8px 8px 0 0;
}
.csearch__img span {
  font-size: 13px;
  color: #312825;
  padding: 10px;
  font-weight: 500;
}

.cbtn {
  background: #604436;
  border-radius: 100px;
  padding: 9px 17px 9px 9px;
  font-size: 16px;
  line-height: 1.2;
  color: #FFBB46;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sections {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 15px 0 0;
  transition: all 0.4s;
}
.sections li {
  list-style-type: none;
}
.sections li a {
  color: #fff;
  opacity: 0.6;
  border-bottom: 4px solid transparent;
  padding: 14px 0;
  display: block;
  transition: all 0.4s;
  font-size: 16px;
}
.sections li a:hover {
  opacity: 1;
}
.sections li a.active {
  opacity: 1;
  border-color: #FFBB46;
}

.scrolled .sections {
  margin-top: 0;
}

.catalog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  row-gap: 15px;
}

.good-item {
  background: #4B3A33;
  border-radius: 10px;
  overflow: hidden;
  color: #fff;
}
.good-item__wrapper {
  padding: 14px;
  position: relative;
}
.good-item__title {
  font-size: 16px;
  letter-spacing: -2%;
  font-weight: 500;
  line-height: 1.2;
}
.good-item__img {
  position: relative;
}
.good-item__img img {
  width: 100%;
}
.good-item__bookmark {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.4;
}
.good-item__bookmark svg {
  width: 24px;
  display: block;
}
.good-item__bookmark svg path {
  stroke: #333333;
  stroke-width: 3px;
}
.good-item__params {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 11px;
  opacity: 0.6;
}
.good-item__cr {
  display: flex;
  align-items: center;
  gap: 5px;
}
.good-item__cr svg {
  opacity: 0.3;
}
.good-item__add {
  position: absolute;
  bottom: 14px;
  right: 14px;
}
.good-item img {
  max-width: 100%;
}

.catalog-filters {
  margin-bottom: 16px;
  display: flex;
  gap: 15px;
}
.catalog-filters .dropdown {
  width: 100%;
}

.dropdown {
  background: #4B3A33;
  border-radius: 10px;
  color: #fff;
  position: relative;
  transition: all 0.4s;
  font-size: 13px;
}
.dropdown.active {
  border-radius: 10px 10px 0 0;
}
.dropdown__current {
  padding: 7px 11px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown__current span {
  opacity: 0.4;
}
.dropdown.selected .dropdown__current span {
  opacity: 1;
  color: #FFBB46;
}
.dropdown__content {
  display: none;
  position: absolute;
  width: 100%;
  z-index: 3;
  top: 100%;
  background: #4B3A33;
  padding: 11px 11px 15px;
  border-radius: 0 0 10px 10px;
}
.dropdown__content a {
  color: #fff;
  margin-bottom: 10px;
  display: block;
  opacity: 0.4;
}
.dropdown__content a:hover {
  opacity: 1;
}
.dropdown__content a:last-child {
  margin-bottom: 0;
}

.good {
  position: relative;
  background: #F6F2E6;
  padding-bottom: 147px;
  min-height: 110vh;
}
.good__content {
  padding: 24px;
  color: #333333;
}
.good__title {
  font-size: 32px;
  margin-bottom: 10px;
}
.good__price {
  font-size: 22px;
  margin-bottom: 20px;
}
.good__text {
  opacity: 0.6;
  line-height: 1.4;
  font-size: 16px;
}
.good .page-back {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
}
.good .page-back svg {
  margin-left: -4px;
}
.good__slider .swiper-pagination-bullet {
  background: #000;
}
.good__slider .swiper-pagination-bullet-active {
  background: #FFBB46;
}
.good__slider .swiper-slide:before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.3;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000);
}
.good__slider img {
  width: 100%;
  height: 435px;
  object-fit: cover;
  display: block;
}

.page-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.page-footer .btn {
  border-radius: 0;
  text-align: center;
  padding: 25px 16px 35px;
}
.page-footer a {
  display: block;
}

.cart-table {
  margin-top: 20px;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  color: #fff;
  opacity: 0.6;
  margin-bottom: 8px;
  font-size: 13px;
}
.cart-row_primary {
  opacity: 1;
  color: #FFBB46;
}
.cart-foot {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 23px;
  color: #fff;
}
.cart-foot__name {
  font-size: 23px;
  font-weight: 500;
}
.cart-foot__value {
  font-size: 22px;
  color: #FFBB46;
}
.cart-foot__value span.cart-final-old-price {
  font-size: 13px;
  color: #fff;
  margin-right: 11px;
  opacity: 0.6;
  text-decoration: line-through;
}

.user-email {
  font-size: 16px;
  color: #fff;
  opacity: 0.6;
}

.cart .footer {
  padding-bottom: 70px;
}

.order .main {
  padding-bottom: 70px;
}

.cart-goods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-good {
  background: #4B3A33;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  gap: 3px;
  position: relative;
}
.cart-good__content {
  padding: 15px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.cart-good__title {
  font-size: 16px;
  margin-bottom: 3px;
  font-weight: 500;
}
.cart-good__params {
  font-size: 13px;
  opacity: 0.6;
}
.cart-good__price {
  font-size: 16px;
  margin-top: auto;
  opacity: 0.6;
}
.cart-good__remove {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}
.cart-good__img {
  width: 100px;
  flex-shrink: 0;
}
.cart-good__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-sales {
  border-radius: 10px;
  background: #FFBB46;
  display: flex;
  align-items: center;
  position: relative;
}
.profile-sales:before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 50%;
  content: "";
  background: #000;
  opacity: 0.1;
  width: 1px;
  display: none;
  z-index: 2;
}
.profile-sales__item {
  padding: 13px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profile-sales__name {
  opacity: 0.6;
  color: #333;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -2%;
}
.profile-sales__value {
  font-size: 32px;
  color: #333;
  line-height: 40px;
  letter-spacing: -4%;
}

.menu {
  background: #4B3A33;
  padding: 0 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.menu li {
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.menu li a {
  color: #fff;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
}
.menu li a svg {
  transform: rotate(-90deg);
}
.menu li a svg path {
  opacity: 1;
}
.menu li:last-child {
  border-bottom: none;
}

.profile-edit .form__others {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}

.history-item {
  background: #4B3A33;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 10px;
  color: #fff;
  display: block;
}
.history-item__row {
  display: flex;
  justify-content: space-between;
}
.history-item__row:first-child {
  margin-bottom: 8px;
}
.history-item__number, .history-item__price {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -2%;
}
.history-item__date, .history-item__status {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.6;
  line-height: 1.2;
  letter-spacing: -2%;
  display: flex;
  gap: 5px;
}
.history-item__date._active, .history-item__status._active {
  color: #FFBB46;
  opacity: 1;
}
.history-item__price {
  opacity: 0.6;
}

.order-date {
  opacity: 0.6;
  font-size: 13px;
  color: #fff;
}

.order-status {
  margin-bottom: 8px;
  font-size: 13px;
  color: #FFBB46;
}

.order-history {
  margin-bottom: 18px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 20px;
}
.order-history__date {
  margin-left: auto;
}
.order-history__row {
  display: flex;
  align-items: center;
  font-size: 13px;
  position: relative;
}
.order-history__row:before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFBB46;
  content: "";
  top: 0;
  left: 0;
  margin-right: 9px;
}
.order-history__row:after {
  position: absolute;
  top: -19px;
  left: 4px;
  height: 24px;
  background: #FFBB46;
  width: 1px;
  content: "";
  display: block;
}
.order-history__row:first-child:after {
  display: none;
}

.order-price {
  margin-bottom: 25px;
  color: #fff;
}
.order-price__name {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 2px;
}
.order-price__value {
  font-size: 22px;
  font-weight: 500;
}

.facts {
  background: #EAE3D3;
  padding: 20px;
  border-radius: 10px;
  color: #333;
  margin-top: 42px;
}

.fact {
  padding-bottom: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.fact__title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 11px;
}
.fact__text {
  opacity: 0.5;
}
.fact:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.program-block {
  background: #EAE3D3;
  padding: 18px;
  border-radius: 10px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  color: #333;
  justify-content: space-between;
}
.program-block__label {
  font-size: 13px;
  opacity: 0.6;
}
.program-block svg path {
  stroke: #604436;
}

p + .form {
  margin-top: 26px;
}

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