html,
body,
* {
  scrollbar-width: none;
}

*::-webkit-scrollbar {
  display: none;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: none;
  box-sizing: border-box;
}

*::before,
*::after {
  display: inline-block;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

html,
body {
  line-height: 1;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* FORM */
input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
}

input,
textarea {
  width: 100%;
}

button,
select,
option {
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

label {
  display: block;
}

@font-face {
  font-family: "KoPubBatang";
  src: url("../fonts/KoPubBatang-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KoPubBatang";
  src: url("../fonts/KoPubBatang-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "KoPubBatang";
  src: url("../fonts/KoPubBatang-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}
.header__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8125rem 0;
  gap: 0.625rem;
}
.header__logo {
  aspect-ratio: 178/33;
  max-width: 11.125rem;
  flex-shrink: 0;
  position: relative;
  z-index: 6;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 48em) {
  .header__logo {
    aspect-ratio: 213/33;
    max-width: 13.3125rem;
  }
}
.header .icon-menu {
  display: block;
  width: 26px;
  height: 20px;
  position: relative;
  z-index: 6;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header .icon-menu span, .header .icon-menu::before, .header .icon-menu::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #2c2c2c;
  left: 0;
  transition: 0.3s ease;
}
.header .icon-menu span {
  top: 50%;
  transform: translateY(-50%);
}
.header .icon-menu::before {
  top: 0;
}
.header .icon-menu::after {
  bottom: 0;
}
body.menu-open .header .icon-menu span {
  width: 0;
}
body.menu-open .header .icon-menu::before {
  transform: rotate(45deg) translateY(-2px);
  top: 50%;
}
body.menu-open .header .icon-menu::after {
  transform: rotate(-45deg) translateY(1px);
  bottom: 50%;
}
.header .menu__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5625rem;
  position: fixed;
  top: 5.6875rem;
  left: -100%;
  width: 100%;
  height: calc(100svh - 5.6875rem);
  background-color: #f8f3ec;
  padding: 3.125rem 1.25rem;
  flex-direction: column;
  transition: left 0.3s ease;
  z-index: 999;
  overflow: auto;
}
body.menu-open .header .menu__body {
  left: 0;
  align-items: flex-start;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
}
.header .menu__body::before {
  content: "";
  position: fixed;
  top: 5.6875rem;
  left: -100%;
  width: 100%;
  height: 5.6875rem;
  z-index: 1;
  transition: all 0.3s;
}
.header .menu__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.header .menu__item {
  font-family: "Shanti";
  font-size: 1.125rem;
  transition: color 0.3s;
  padding: 0.625rem 0;
}
@media (min-width: 48em) {
  .header .menu__item {
    padding: 0 0;
    font-size: 0.9375rem;
  }
}
.header .menu__item a {
  color: inherit;
}
@media (any-hover: hover), (pointer: fine) {
  .header .menu__item a:hover {
    text-decoration: underline;
    color: #b0a496;
  }
}
.header__active {
  display: flex;
  align-items: center;
  gap: 2.125rem;
}
@media (min-width: 32em) {
  .header__active {
    gap: 1.6875rem;
  }
}
.header__active--desktop {
  display: none;
}
@media (min-width: 32em) {
  .header__active--desktop {
    display: flex;
  }
}
.header__active--mobile {
  display: flex;
  align-self: center;
}
@media (min-width: 48em) {
  .header__active--mobile {
    display: none;
  }
}
@media (min-width: 32em) {
  .header__cart-mb {
    display: none;
  }
}
.header__item {
  width: 1.5rem;
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: opacity 0.3s;
}
.header__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (any-hover: hover), (pointer: fine) {
  .header__item img:hover {
    opacity: 0.5;
  }
}
.header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: 0.4s;
  -webkit-backdrop-filter: blur(113.65px);
          backdrop-filter: blur(113.65px);
  background-color: #f8f3ec;
  z-index: -1;
}
@media (min-width: 48em) {
  .header .icon-menu {
    display: none;
  }
  .header .menu__body {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    flex-direction: row;
    transition: none;
    overflow: hidden;
    border: none;
    box-shadow: none;
  }
  .header .menu__list {
    flex-direction: row;
    gap: 3.0625rem;
    align-items: center;
    justify-content: center;
  }
}

/*footer*/
.footer {
  border-top: 1px solid #dbccba;
  padding: 2.3125rem 0 1.875rem 0;
}
@media (min-width: 48em) {
  .footer {
    padding: 4.5625rem 0 0.6875rem 0;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (min-width: 48em) {
  .footer__container {
    gap: 3.75rem;
  }
}
@media (min-width: 74em) {
  .footer__container {
    gap: 7.6875rem;
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.75rem;
}
@media (min-width: 48em) {
  .footer__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 74em) {
  .footer__wrapper {
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10.4375rem;
  }
}
.footer__media {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (min-width: 48em) {
  .footer__media {
    gap: 4.375rem;
  }
}
.footer__logo {
  aspect-ratio: 213/33;
  max-width: 13.3125rem;
  flex-shrink: 0;
}
@media (min-width: 74em) {
  .footer__logo {
    margin-top: -0.625rem;
  }
}
.footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer__copyright {
  align-self: center;
  color: #4e4e4e;
  font-family: "Carme";
  font-size: 0.9375rem;
}

.social-media {
  display: flex;
  gap: 1.3125rem;
  align-items: center;
}
.social-media__item {
  aspect-ratio: 20/20;
  max-width: 1.25rem;
}
.social-media__link {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover), (pointer: fine) {
  .social-media__link:hover {
    opacity: 0.5;
  }
}

.menu {
  display: flex;
  justify-content: space-between;
  gap: 3.125rem;
}
@media (min-width: 48em) {
  .menu {
    gap: 4.6875rem;
  }
}
@media (min-width: 74em) {
  .menu {
    gap: 10.9375rem;
  }
}
.menu__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.menu__title {
  color: #000000;
  font-size: 1.25rem;
  padding-bottom: 0.5rem;
}
.menu__item {
  font-family: "Carme";
  transition: all 0.3s;
  cursor: pointer;
}
.menu__link {
  color: inherit;
}
@media (any-hover: hover), (pointer: fine) {
  .menu__link:hover {
    text-decoration: underline;
    color: #b0a496;
  }
}

.contacts__items {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.25rem;
  font-family: "Carme";
}
@media (min-width: 74em) {
  .contacts__items {
    align-items: flex-end;
  }
}

.contact__item p {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.contact__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.contact__link {
  font-style: normal;
  display: flex;
  width: 100%;
}
@media (min-width: 74em) {
  .contact__link {
    justify-content: flex-end;
    align-self: flex-end;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "KoPubBatang", serif;
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.2;
  color: #2c2c2c;
  background-color: #f8f3ec;
}

html,
body {
  height: 100%;
}

.wrapper {
  min-height: 100%;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.wrapper > main {
  flex-grow: 1;
}

[class*=__container] {
  margin: 0 auto;
  max-width: 1230px;
  padding: 0 15px;
}

/*ui kit*/
.button {
  padding: 0.5625rem 0.5625rem 0.625rem 0.625rem;
  border: 0.0625rem solid #dbccba;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .button:hover {
    background-color: #dbccba;
  }
}

.button__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: #dbccba;
  color: #2c2c2c;
  font-size: 1.0625rem;
  line-height: 1.38;
  padding: 0.5625rem 1.875rem;
}
.button__wrapper:after {
  content: "";
  width: 1.4375rem;
  height: 1.4375rem;
  flex-shrink: 0;
  background-image: url("../images/icon/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

.title-h2 {
  font-size: 1.875rem;
  font-weight: 300;
}
@media (min-width: 48em) {
  .title-h2 {
    font-size: 3rem;
  }
}
@media (min-width: 65em) {
  .title-h2 {
    font-size: 3.75rem;
  }
}

.bread-crumbs {
  padding: 1.625rem 0 1.4375rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.bread-crumbs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 47em) {
  .bread-crumbs::-webkit-scrollbar {
    padding: 4.875rem 0 1.4375rem 0;
  }
}
.bread-crumbs__container {
  overflow-x: auto;
}
.bread-crumbs__list {
  padding: 0.625rem 0;
  display: flex;
  gap: 0.1875rem;
  white-space: nowrap;
  min-width: -moz-max-content;
  min-width: max-content;
}
.bread-crumbs__item {
  color: rgba(44, 44, 44, 0.65);
  font-family: "Carme";
  font-size: 1rem;
  flex-shrink: 0;
}
.bread-crumbs__link {
  cursor: pointer;
  display: flex;
  gap: 0.1875rem;
}
@media (any-hover: hover), (pointer: fine) {
  .bread-crumbs__link:hover {
    color: #b0a496;
  }
}
.bread-crumbs__link img {
  aspect-ratio: 1/1;
  max-width: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover), (pointer: fine) {
  .bread-crumbs__link img:hover {
    filter: brightness(0.5);
  }
}

.dropdown {
  position: relative;
}
.dropdown.active .dropdown__list {
  opacity: 1;
  visibility: visible;
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}
.dropdown.active .dropdown__arrow {
  transform: rotate(-180deg);
}
.dropdown__title {
  color: #000000;
  font-size: 1rem;
  font-weight: 300;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.dropdown__arrow {
  transition: transform 0.3s;
  width: 12px;
  height: auto;
  display: inline-block;
}
.dropdown__list {
  position: absolute;
  top: 100%;
  width: 9.375rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  background-color: #dbccba;
  padding: 5px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 10;
  display: none;
}
@media (min-width: 48em) {
  .dropdown__list {
    width: 12.5rem;
  }
}
.dropdown__list--sort {
  right: 0;
}
@media (min-width: 48em) {
  .dropdown__list--sort {
    left: 0;
  }
}
.dropdown__item {
  padding: 5px;
  font-size: 0.875rem;
  font-family: "Carme";
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .dropdown__item:hover {
    background-color: #f8f3ec;
  }
}

.quantity {
  display: flex;
  align-items: center;
  border: 1px solid #dbccba;
  padding: 13px 7px;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: border-color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .quantity:hover {
    border-color: #b0a496;
  }
}
.quantity__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.38;
  text-transform: capitalize;
  min-width: 0.6875rem;
  transition: color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .quantity__btn:hover {
    color: #b0a496;
  }
}
.quantity__value {
  text-align: center;
  margin: 0 0.9375rem;
  color: #000000;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.38;
  text-transform: capitalize;
}

/* Hero section */
.main-margin-top {
  margin-top: 3.75rem;
}
@media (min-width: 48em) {
  .main-margin-top {
    margin-top: 6.6875rem;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 95svh;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  padding: 4rem 0 4rem 0;
}
@media (min-width: 48em) {
  .hero__wrapper {
    padding: 7.8125rem 0 6.4375rem 0;
    gap: 6.25rem;
  }
}
@media (min-width: 65em) {
  .hero__wrapper {
    gap: 10.625rem;
    justify-content: space-between;
  }
}
.hero__title {
  font-size: 1.875rem;
  font-weight: 300;
  margin-bottom: 2.375rem;
}
@media (min-width: 48em) {
  .hero__title {
    font-size: 3rem;
    max-width: 37.5rem;
    margin-bottom: 0rem;
  }
}
@media (min-width: 65em) {
  .hero__title {
    font-size: 3.75rem;
    max-width: 41.0625rem;
  }
}
@media (min-width: 91em) {
  .hero__title {
    font-size: 4.375rem;
    max-width: 47.3125rem;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
}
@media (min-width: 48em) {
  .hero__content {
    align-items: start;
    margin-left: 11.25rem;
    max-width: 22.5rem;
    gap: 1.8125rem;
  }
}
@media (min-width: 65em) {
  .hero__content {
    gap: 3.0625rem;
    max-width: 26.875rem;
    margin-left: 18.125rem;
  }
}
.hero__contentp {
  font-family: "Carme";
  line-height: 1.38;
}
.hero__content .button {
  width: 100%;
}
@media (min-width: 48em) {
  .hero__content .button {
    align-self: flex-start;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.hero__img-mb {
  aspect-ratio: 300/375;
  max-height: 23.4375rem;
  max-width: 100%;
  margin-bottom: 1.75rem;
  opacity: 0;
  transition: opacity 5s ease;
}
.hero__img-mb.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 48em) {
  .hero__img-mb {
    display: none;
  }
}

.hero__img-left {
  display: none;
}
@media (min-width: 48em) {
  .hero__img-left {
    aspect-ratio: 407/394;
    background-color: #cecece;
    position: absolute;
    left: 0%;
    top: 50%;
    max-width: 19.1875rem;
    display: block;
  }
}
@media (min-width: 65em) {
  .hero__img-left {
    max-width: 25.4375rem;
  }
}

.hero__img-right {
  display: none;
}
@media (min-width: 48em) {
  .hero__img-right {
    aspect-ratio: 587/565;
    background-color: #cecece;
    width: 100%;
    height: auto;
    position: absolute;
    right: 0;
    top: 0;
    max-width: 30.4375rem;
    display: block;
  }
}
@media (min-width: 91em) {
  .hero__img-right {
    max-width: 36.6875rem;
  }
}

.hero__img-left img,
.hero__img-right img,
.hero__img-mb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (min-width: 48em) {
  .hero__img-left,
  .hero__img-right {
    opacity: 0;
    transition: all 5s ease;
    will-change: transform, opacity;
  }
  .hero__img-left {
    left: -20%;
    transform: translateX(-30%);
  }
  .hero__img-right {
    right: -38%;
    transform: translateX(25%);
  }
  .hero__img-left.animate,
  .hero__img-right.animate {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (min-width: 62em) {
  .hero__img-left {
    left: -15%;
    transform: translateX(-30%);
  }
  .hero__img-right {
    right: -5%;
    transform: translateX(30%);
  }
  .hero__img-left.animate,
  .hero__img-right.animate {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (min-width: 62em) and (min-width: 91em) {
  .hero__img-left {
    left: 0;
    transform: translateX(-30%);
  }
  .hero__img-right {
    right: 0;
    transform: translateX(30%);
  }
  .hero__img-left.animate,
  .hero__img-right.animate {
    opacity: 1;
    transform: translateX(0);
  }
}
/*Popular*/
.popular__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
  padding: 0 0 4rem 0;
}
@media (min-width: 48em) {
  .popular__wrapper {
    gap: 3.8125rem;
    padding: 5rem 0 3.6875rem 0;
  }
}
@media (min-width: 68em) {
  .popular__wrapper {
    flex-direction: row-reverse;
    gap: 2.5625rem;
    padding: 6.25rem 0 5.5625rem 0;
  }
}
@media (min-width: 68em) {
  .popular__big-block {
    flex: 1 0 55%;
  }
}
.popular__title {
  margin-bottom: 3.125rem;
}
@media (min-width: 48em) {
  .popular__title {
    margin-bottom: 2.5625rem;
  }
}
@media (min-width: 48em) {
  .popular__title {
    padding-top: 2.1875rem;
    margin-bottom: 3.8125rem;
  }
}
.popular__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3.125rem;
}
@media (min-width: 48em) {
  .popular__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.125rem;
  }
}
.popular__items--small {
  grid-template-columns: repeat(1, 1fr);
  gap: 0rem;
}
@media (min-width: 48em) {
  .popular__items--small {
    flex: 1 0 50%;
  }
}
.popular__item {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.popular__item.fade-up {
  opacity: 1;
  transform: translateY(0);
}
.popular__img {
  overflow: hidden;
  transition: transform 0.5s;
}
.popular__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
@media (any-hover: hover), (pointer: fine) {
  .popular__img img:hover {
    transform: scale(1.05);
  }
}
.popular__img--small {
  aspect-ratio: 300/339;
}
@media (min-width: 48em) {
  .popular__img--small {
    aspect-ratio: 320/339;
  }
}
.popular__img--big {
  aspect-ratio: 300/339;
}
@media (min-width: 48em) {
  .popular__img--big {
    aspect-ratio: 320/339;
  }
}
@media (min-width: 68em) {
  .popular__img--big {
    aspect-ratio: 485/484;
  }
}
.popular__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
.popular__name {
  font-size: 1.125rem;
  flex-grow: 1;
}
.popular__price-from {
  color: #4e4e4e;
  font-family: "Carme";
  font-size: 0.9375rem;
  flex-shrink: 0;
  align-self: flex-start;
}
.popular__description-block {
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
}
@media (min-width: 68em) {
  .popular__description-block {
    flex-direction: column;
  }
}
.popular__description {
  font-family: "Carme";
  line-height: 1.38;
}
.popular__small-block {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}
@media (min-width: 48em) {
  .popular__small-block {
    flex-direction: row;
    gap: 3.125rem;
    align-items: center;
  }
}
@media (min-width: 68em) {
  .popular__small-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
}
.popular .button {
  width: 100%;
}
@media (min-width: 48em) {
  .popular .button {
    width: -moz-fit-content;
    width: fit-content;
  }
}

/*About section*/
.about {
  overflow: hidden;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  padding: 4rem 0 4rem 0;
  gap: 2.5rem;
}
@media (min-width: 75em) {
  .about__wrapper {
    padding: 3.8125rem 0 8.6875rem 0;
    gap: 2.6875rem;
  }
}
.about__block {
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
}
@media (min-width: 75em) {
  .about__block {
    flex-direction: row;
    gap: 1.5625rem;
  }
}
.about__block--margin {
  gap: 3.3125rem;
}
@media (min-width: 75em) {
  .about__block--margin {
    gap: 4.75rem;
  }
}
.about__block--center {
  align-items: center;
}
@media (min-width: 75em) {
  .about__title {
    max-width: 45.625rem;
  }
}
.about__img {
  overflow: hidden;
  opacity: 0;
  transition: opacity 5s ease;
}
.about__img.visible {
  opacity: 1;
  transform: translateY(0);
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  display: block;
  transition: transform 0.5s;
}
@media (min-width: 75em) {
  .about__img img {
    -o-object-position: center;
       object-position: center;
  }
}
@media (any-hover: hover), (pointer: fine) {
  .about__img img:hover {
    transform: scale(1.05);
  }
}
.about__img--right {
  display: none;
}
@media (min-width: 75em) {
  .about__img--right {
    display: block;
    aspect-ratio: 514/430;
    max-height: 26.875rem;
    max-width: 32.125rem;
  }
}
.about__img--left {
  aspect-ratio: 514/430;
  width: 100%;
  max-height: 26.875rem;
}
@media (min-width: 75em) {
  .about__img--left {
    margin-top: -6.25rem;
    max-width: 32.125rem;
  }
}
.about__img--mb {
  aspect-ratio: 514/430;
  width: 100%;
  max-height: 26.875rem;
}
@media (min-width: 75em) {
  .about__img--mb {
    display: none;
  }
}
.about__info {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}
@media (min-width: 75em) {
  .about__info {
    align-items: end;
    gap: 2.6875rem;
  }
}
.about__text {
  align-self: flex-end;
}
@media (min-width: 75em) {
  .about__text {
    max-width: 38.1875rem;
  }
}
.about__text p {
  font-family: "Carme";
  line-height: 1.38;
  padding-bottom: 0.625rem;
}
.about .button {
  width: 100%;
}
@media (min-width: 35em) {
  .about .button {
    width: -moz-fit-content;
    width: fit-content;
    align-self: center;
  }
}
@media (min-width: 75em) {
  .about .button {
    width: -moz-fit-content;
    width: fit-content;
    align-self: flex-end;
  }
}

/*Floral section*/
.floral__blocks {
  padding-bottom: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.5625rem;
  justify-content: space-between;
}
@media (min-width: 61em) {
  .floral__blocks {
    gap: 1.9375rem;
    padding-bottom: 100px;
    flex-direction: row-reverse;
  }
}

.block__big {
  padding-top: 3.25rem;
}
.block__small {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media (min-width: 35em) {
  .block__small {
    gap: 2.5rem;
  }
}
@media (min-width: 61em) {
  .block__small {
    flex: 1 0 33.33%;
    gap: 3.125rem;
    align-self: flex-start;
  }
}
.block__small .button {
  width: 100%;
}
@media (min-width: 35em) {
  .block__small .button {
    width: -moz-fit-content;
    width: fit-content;
    align-self: center;
  }
}
@media (min-width: 61em) {
  .block__small .button {
    align-self: flex-start;
  }
}
.big-block {
  display: flex;
  flex-direction: column;
  gap: 3.1875rem;
}
@media (min-width: 35em) {
  .big-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    row-gap: 1.8125rem;
    -moz-column-gap: 1.5625rem;
         column-gap: 1.5625rem;
  }
}
@media (min-width: 61em) {
  .big-block {
    -moz-column-gap: 2.3125rem;
         column-gap: 2.3125rem;
  }
}
@media (min-width: 35em) {
  .big-block__title {
    margin-bottom: 1.25rem;
    grid-column: span 2;
  }
}

.item {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transform: translateY(30px);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.item.fade-up {
  transform: translateY(0);
  opacity: 1;
}
.item__link {
  display: flex;
  aspect-ratio: 369/378;
  overflow: hidden;
  cursor: pointer;
  background-color: #cecece;
}
.item__link img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
@media (any-hover: hover) and (pointer: fine) {
  .item__link img:hover {
    transform: scale(1.05);
  }
}
.item__info {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  flex-grow: 1;
}
.item__active {
  display: flex;
  justify-content: space-between;
  gap: 0.625rem;
  flex-grow: 1;
}
@media (min-width: 61em) {
  .item__active {
    gap: 0.9375rem;
  }
}
.item__name {
  font-size: 1rem;
  line-height: 1;
}
@media (min-width: 61em) {
  .item__name {
    font-size: 1.25rem;
  }
}
.item__name a {
  transition: all 0.3s;
}
@media (any-hover: hover) and (pointer: fine) {
  .item__name a:hover {
    color: #b0a496;
  }
}
.item__icons {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 0.625rem;
}
@media (min-width: 61em) {
  .item__icons {
    gap: 1.25rem;
  }
}
.item__price {
  font-family: "Carme", serif;
  color: #4e4e4e;
  font-size: torem(18);
  line-height: 1;
}

.icon__item {
  aspect-ratio: 23/23;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 1.4375rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .icon__item:hover {
    opacity: 0.6;
  }
}

.small-block {
  display: flex;
  flex-direction: column;
  gap: 3.1875rem;
}
@media (min-width: 35em) {
  .small-block {
    display: grid;
    grid-template: 1fr/repeat(2, 1fr);
    gap: 1.5625rem;
  }
}
@media (min-width: 61em) {
  .small-block {
    display: grid;
    grid-template: 1fr/repeat(1, 1fr);
  }
}

.first-purchase__wrapper {
  padding-bottom: 7.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
}
@media (min-width: 75em) {
  .first-purchase__wrapper {
    gap: 3.3125rem;
  }
}
.first-purchase__block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.3125rem;
}
@media (min-width: 75em) {
  .first-purchase__block {
    flex-direction: row;
  }
}
.first-purchase__block--center {
  align-items: center;
}
.first-purchase__title {
  align-self: flex-start;
  padding-top: 4.375rem;
}
.first-purchase__image {
  overflow: hidden;
  opacity: 0;
  transition: opacity 5s ease;
}
.first-purchase__image.visible {
  opacity: 1;
}
.first-purchase__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
@media (any-hover: hover), (pointer: fine) {
  .first-purchase__image img:hover {
    transform: scale(1.05);
  }
}
.first-purchase__image--right {
  aspect-ratio: 487/532;
  max-height: 33.25rem;
  width: 100%;
}
@media (min-width: 75em) {
  .first-purchase__image--right {
    max-width: 30.4375rem;
    min-height: 33.25rem;
  }
}
.first-purchase__image--left {
  aspect-ratio: 503/473;
  max-height: 29.5625rem;
  width: 100%;
}
@media (min-width: 75em) {
  .first-purchase__image--left {
    margin-top: -16.25rem;
    max-width: 31.4375rem;
    max-height: 29.5625rem;
  }
}
.first-purchase__info {
  display: flex;
  flex-direction: column;
  gap: 3.0625rem;
  width: 100%;
}
@media (min-width: 75em) {
  .first-purchase__info {
    max-width: 42.4375rem;
    gap: 0.8125rem;
  }
}
.first-purchase__info p {
  font-family: "Carme";
  line-height: 1.38;
}
@media (min-width: 75em) {
  .first-purchase__info p {
    width: 32.5625rem;
    align-self: flex-start;
  }
}
.first-purchase .button {
  width: 100%;
}
@media (min-width: 35em) {
  .first-purchase .button {
    width: -moz-fit-content;
    width: fit-content;
    align-self: center;
  }
}
@media (min-width: 75em) {
  .first-purchase .button {
    align-self: flex-end;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.follow__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.9375rem;
  padding-bottom: 4.75rem;
}
@media (min-width: 49em) {
  .follow__wrapper {
    flex-direction: row-reverse;
    gap: 2.125rem;
    padding-bottom: 6.25rem;
  }
}
.follow__block {
  display: flex;
  flex-direction: column;
}
@media (min-width: 49em) {
  .follow__block {
    gap: 3.5rem;
  }
}
.follow__block--big {
  flex: 1 0 60%;
  justify-content: space-between;
}
.follow__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 49em) {
  .follow__content {
    gap: 2.5625rem;
  }
}
.follow__content p {
  font-family: "Carme";
}
@media (min-width: 49em) {
  .follow__title {
    padding-top: 3.875rem;
  }
}
.follow__link {
  font-family: "Carme";
  font-size: 1.4375rem;
  color: inherit;
  transition: color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .follow__link:hover {
    color: #b0a496;
  }
}
.follow__images {
  display: flex;
  gap: 2.1875rem;
}
.follow__image {
  display: none;
  opacity: 0;
  transition: opacity 5s ease;
}
.follow__image.visible {
  opacity: 1;
}
@media (min-width: 49em) {
  .follow__image {
    overflow: hidden;
    aspect-ratio: 326/334;
    max-width: 20.375rem;
    display: block;
  }
}
.follow__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
@media (any-hover: hover), (pointer: fine) {
  .follow__image img:hover {
    transform: scale(1.05);
  }
}
.follow__image--big {
  display: none;
}
@media (min-width: 49em) {
  .follow__image--big {
    display: block;
    aspect-ratio: 477/447;
    max-width: 29.8125rem;
  }
}
.follow_mb-images {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 49em) {
  .follow_mb-images {
    display: none;
  }
}
.follow__mb-img {
  overflow: hidden;
  max-height: 19.875rem;
  opacity: 0;
  transition: opacity 5s ease;
}
.follow__mb-img.visible {
  opacity: 1;
}
.follow__mb-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-fit: top;
     object-fit: top;
}
.catalog__title {
  color: #000000;
  font-size: 3.125rem;
  font-weight: 300;
  margin-bottom: 2.1875rem;
}
@media (min-width: 47em) {
  .catalog__title {
    margin-bottom: 3.375rem;
  }
}
.catalog__blocks {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.1875rem;
  padding: 0.3125rem 0;
}
@media (min-width: 47em) {
  .catalog__blocks {
    gap: 0.625rem;
  }
}
.catalog__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
@media (min-width: 47em) {
  .catalog__filters {
    justify-content: space-between;
    gap: 3rem;
  }
}
@media (min-width: 47em) {
  .catalog__sort {
    align-self: flex-end;
  }
}
.catalog__products {
  padding: 4.375rem 0 6.75rem 0;
}
@media (min-width: 47em) {
  .catalog__products {
    padding: 5.625rem 0 7rem 0;
  }
}
.catalog__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 2.8125rem;
  padding-bottom: 5.0625rem;
}
@media (min-width: 34em) {
  .catalog__list {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
    row-gap: 1.5625rem;
  }
}
@media (min-width: 47em) {
  .catalog__list {
    padding-bottom: 5.0625rem;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 2.8125rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
  .catalog__list > *:nth-child(5) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.item__wrapper {
  position: relative;
}
.item__wrapper--big {
  overflow: hidden;
}
@media (min-width: 47em) {
  .item__wrapper--big {
    min-height: 95%;
  }
}
@media (min-width: 64em) {
  .item__wrapper--big {
    min-height: 95.5%;
  }
}
@media (min-width: 80em) {
  .item__wrapper--big {
    min-height: 96.1%;
  }
}
.item__wrapper--big .item__link {
  height: 100%;
}
.item .active {
  position: absolute;
  bottom: 1.5625rem;
  right: 1.25rem;
  pointer-events: auto;
}
.icon__button--bg {
  background-color: #dbccba;
  padding: 0.3125rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .icon__button--bg:hover {
    background-color: #f8f3ec;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.8125rem;
}
.pagination__dots {
  display: flex;
  gap: 0.9375rem;
}

.arrow {
  border: 1px solid #dbccba;
  padding: 0.625rem 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .arrow:hover {
    background-color: #dbccba;
  }
}
.arrow_prev {
  aspect-ratio: 25/25;
  max-width: 1.5625rem;
  flex-shrink: 0;
}
.arrow_prev img {
  transform: rotate(-180deg);
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.arrow_next {
  aspect-ratio: 25/25;
  max-width: 1.5625rem;
  flex-shrink: 0;
}
.arrow_next img {
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.arrow__wrapper {
  max-width: 1.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.5625rem;
  padding: 0.5rem;
  background-color: #dbccba;
  transition: background-color 0.3s;
}

.dot__item {
  color: #4e4e4e;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 9.18px;
  transition: color 0.3s;
  cursor: pointer;
}
@media (any-hover: hover), (pointer: fine) {
  .dot__item:hover {
    color: #b0a496;
  }
}
.dot__item--current {
  color: #000000;
}

.product {
  padding: 0.5625rem 0 4.3125rem 0;
}
@media (min-width: 61em) {
  .product {
    padding: 1.875rem 0 8.1875rem 0;
  }
}
.product__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.9375rem;
  justify-content: space-between;
}
@media (min-width: 61em) {
  .product__wrapper {
    flex-direction: row;
  }
}
.product__img {
  overflow: hidden;
  aspect-ratio: 580/567;
  flex-shrink: 0;
  max-height: 21.875rem;
}
@media (min-width: 61em) {
  .product__img {
    max-width: 36.25rem;
    max-height: 100%;
  }
}
.product__img img {
  height: 100%;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
@media (any-hover: hover), (pointer: fine) {
  .product__img img:hover {
    transform: scale(1.05);
  }
}
.product__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.9375rem;
}
@media (min-width: 61em) {
  .product__details {
    gap: 4.4375rem;
  }
}
.product__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6875rem;
}
@media (min-width: 61em) {
  .product__name {
    padding-top: 1.25rem;
  }
}
.product__price {
  font-family: "Carme";
  font-size: 1.5625rem;
}
.product__blocks {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.125rem;
}
.block-product {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.625rem;
}
.block-product__title {
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.38;
  text-transform: capitalize;
}
.block-product p {
  color: #535353;
  font-family: "Carme";
  font-size: 0.9375rem;
  line-height: 1.38;
}
.block-product__inputs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
.block-product .button {
  align-self: flex-end;
  width: -moz-fit-content;
  width: fit-content;
}
.see-also {
  overflow: hidden;
}
.see-also__container {
  overflow: visible;
}
.see-also__title {
  color: #000000;
  font-weight: 300;
  font-size: roRem(25);
  margin-bottom: 1.3125rem;
}
@media (min-width: 61em) {
  .see-also__title {
    font-size: 2.5rem;
    margin-bottom: 2.3125rem;
  }
}
.see-also__wrapper {
  display: flex;
  flex-direction: column;
  gap: 3.375rem;
  padding-bottom: 6rem;
}
@media (min-width: 35em) {
  .see-also__wrapper {
    display: flex;
    flex-direction: row;
    padding-bottom: 8.3125rem;
    gap: 1.875rem;
    overflow: visible;
    overflow-x: auto;
  }
}

@media (min-width: 35em) {
  .item--see-also {
    flex: 0 0 auto;
    width: 23.6875rem;
    scroll-snap-align: start;
  }
}

.cart {
  margin-bottom: 5.5625rem;
}
@media (min-width: 55em) {
  .cart {
    margin-bottom: 13.6875rem;
  }
}
.cart__wrapper {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  justify-content: space-between;
}
@media (min-width: 55em) {
  .cart__wrapper {
    gap: 3.125rem;
    flex-direction: row;
  }
}
@media (min-width: 75em) {
  .cart__wrapper {
    gap: 13.8125rem;
  }
}
@media (min-width: 55em) {
  .cart__block {
    flex: 1 0 40%;
  }
}
.cart__title {
  color: #000000;
  font-size: 1.875rem;
  margin-bottom: 0.8125rem;
}
.cart__items {
  display: flex;
  flex-direction: column;
  gap: 2.8125rem;
  justify-content: space-between;
}
@media (min-width: 55em) {
  .cart__items {
    gap: 1.25rem;
  }
}
.product-cart__item {
  display: flex;
  flex-direction: column;
  gap: 1.9375rem;
  align-items: center;
  padding-top: 1.4375rem;
  border-top: 2px solid #dbccba;
}
@media (min-width: 55em) {
  .product-cart__item {
    flex-direction: row;
    gap: 1.3125rem;
    padding-top: 2.0625rem;
    justify-content: space-between;
  }
}
.product-cart__img {
  aspect-ratio: 174/172;
  max-height: 17.375rem;
  width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 55em) {
  .product-cart__img {
    max-width: 10.875rem;
    max-height: auto;
  }
}
.product-cart__img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
@media (any-hover: hover), (pointer: fine) {
  .product-cart__img img:hover {
    transform: scale(1.05);
  }
}
.product-cart__details {
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
  justify-content: space-between;
  width: 100%;
}
.product-cart__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-cart__name {
  color: #000000;
  font-size: 1.125rem;
  transition: color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .product-cart__name:hover {
    color: #dbccba;
  }
}
.product-cart__price {
  color: #000000;
  font-family: "Carme";
  font-size: 1.125rem;
}
.product-cart__description {
  color: #535353;
  font-family: "Carme";
  font-size: 0.8125rem;
  line-height: 1.38;
}
.product-cart__active {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quantity-bg {
  display: flex;
  gap: 0.5625rem;
  align-items: center;
}
.quantity-bg__btn {
  background-color: #dbccba;
  padding: 0.125rem 0.5rem;
  transition: color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .quantity-bg__btn:hover {
    color: white;
  }
}
.quantity-bg__value {
  color: #000000;
  font-weight: 300;
}

.delete-btn {
  aspect-ratio: 1/1;
  max-width: 1.5625rem;
  padding: 0.3125rem;
  transition: background-color 0.3s;
}
@media (any-hover: hover), (pointer: fine) {
  .delete-btn:hover {
    background-color: #dbccba;
  }
}
.delete-btn img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.total-block {
  display: flex;
  flex-direction: column;
  gap: 1.3125rem;
  padding: 3.3125rem 2.125rem 1.3125rem 2.25rem;
  border: 2px solid #dbccba;
}
.total-block__products {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
  padding-bottom: 2.5625rem;
  border-bottom: 2px solid #dbccba;
}
.total-block__delivery {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.3125rem;
}
.total-block__total {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.0625rem;
}
.total-block .button {
  align-self: center;
}
.product-total__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.625rem;
  color: #000;
  font-size: 1.125rem;
}
.product-total__price {
  font-family: "Carme";
}

.delivery-item__delivery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.625rem;
  color: #000;
  font-size: 1.125rem;
}
.delivery-item__desc {
  font-family: "Carme";
}
.delivery-item__sale {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.625rem;
  color: #000;
  font-size: 1.125rem;
}

.block-total {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 1.625rem;
  margin-bottom: 2.5rem;
}
.block-total__title {
  color: #000000;
  font-size: 1.375rem;
}
.block-total__price {
  color: #000000;
  font-family: "Carme";
  font-size: 1.125rem;
}