@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.body {
  background: #F5F5F5;
  font-family: "Poppins", sans-serif;
  color: #52483E;
  font-size: 16px;
}

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

/* =========== HEADER ============= */


.header {
  height: 100vh;
  max-height: 936px;
  background: linear-gradient(180deg, #d2cdc6 0%, #f5f5f5 100%);
}

.page-container {
  height: 100%;
  margin: 0 auto;
  max-width: 1320px;
  padding: 0px 20px;
}

.container {}

.header__inner {}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0 24px; */
  height: 92px;
}

.logo {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 2.2px;
  font-weight: 600;
  font-size: 19px;
  line-height: 1;
}

.header__list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__item {
  padding: 10px 24px;
}

.header__link {
  display: block;
  background: linear-gradient(180deg, #000 0%, #666 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  position: relative;
  z-index: 1;
}

.header__item--compare {
  position: relative;
  border-radius: 240px;
  padding: 0;
  z-index: 1;
}

.header__item--compare::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 240px;
  background: linear-gradient(180deg, #000000 0%, #8b8782 100%);
  z-index: -1;
}

.header__item--compare .header__link {
  padding: 10px 32px;
  background: linear-gradient(180deg, #52483e 0%, #8b8782 100%);
  border-radius: 240px;
  display: block;
  position: relative;
  z-index: 2;

  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.hero {
  position: relative;
}

.hero img {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1084px;
}

@keyframes movingHero {
  0% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(-3%);
  }
}

.hero__title {
  padding-top: 180px;
  font-weight: 600;
  font-size: 180px;
  line-height: 0.95556;
  text-align: center;
  color: #52483e;

  position: relative;
  z-index: 2;

  animation: movingHero 4s cubic-bezier(.56, .03, .65, .97) alternate infinite;
}

.hero__subtitle {
  font-weight: 600;
  font-size: 180px;
  line-height: 0.95556;
  text-align: center;
  background: linear-gradient(0deg, #daccbc 0%, #afa497 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;


  position: relative;
  animation: movingHero 4s 1s cubic-bezier(.56, .03, .65, .97) alternate infinite;
}

.burger-menu {
  display: none;
}

/* =========== PRODUCT ============= */

.main {}

.products {}

.products__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.products__title {
  padding-top: 80px;
  font-weight: 600;
  font-size: 56px;
  text-transform: capitalize;
  text-align: center;
}

.products__subtitle {
  font-size: 24px;
  text-align: center;
  color: #8b8782;
  padding-top: 16px;
}

/* ====================== */

.products__slider {
  margin-top: 24px;
  position: relative;
}

.products__slider-wrapper {}

.products__slider .swiper-slide {
  width: 420px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: transform 0.3s;
}

.products__photo {
  width: 100%;
  filter: blur(10px);
  transition: filter 0.3s;
}


.products__slider .swiper-slide-active {
  transform: scale(1.57);
}

.products__slider .swiper-slide-active .products__photo {
  filter: blur(0);
}

.products__slider .products__photo {
  width: 100%;
  filter: blur(10px);
  transition: filter 0.3s;
}

.products__pagination {
  position: static;
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 40px;
}


.products__pagination span {
  border-radius: 60px;
  width: 60px;
  height: 60px;
}

.products__pagination .swiper-pagination-bullet:nth-child(1) {
  background: #D8B74B;
  opacity: 1;
}

.products__pagination .swiper-pagination-bullet:nth-child(2) {
  background-color: #94915B;
  opacity: 1;
}

.products__pagination .swiper-pagination-bullet:nth-child(3) {
  background-color: #883D39;
  opacity: 1;
}


.swiper-pagination-bullet-active {
  border: 2px solid #00000065;
  background: unset;
}


.products__description {
  font-size: 24px;
  text-align: center;
  color: #8b8782;
  margin-top: 32px;
}



/* ======= about-product section ======= */
.about-product {
  margin-top: 80px;
  padding: 80px 60px;

}

.about-product__swiper {}

.about-product__swiper .swiper-wrapper {}

.about-product__slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  cursor: default;
}

.about-product__slide-1 {
  background: linear-gradient(180deg, #d2cdc6 0%, #f8bf93 100%);
}

.about-product__slide-2 {
  background: linear-gradient(180deg, #d2cdc6 0%, #f2ebe3 100%);
}

.about-product__slide-3 {
  background: linear-gradient(180deg, #d8b74b 0%, #f2ebe3 100%);
  margin-right: 40px;
}

.about-product__text {
  padding: 0 0 0 80px;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.3125;
  color: #3b3b3b;
  width: 100%;
  max-width: 424px;
}

.about-product__img {
  max-width: 532px;

}

/* ======= details section ======= */

.details {
  padding: 80px 0 160px;
}

.details__title {
  font-weight: 600;
  font-size: 56px;
  text-transform: capitalize;
  text-align: center;
  color: #52483e;
}

.details__subititle {
  margin-top: 16px;
  font-size: 24px;
  text-align: center;
  color: #8b8782;
}

.details__swiper {
  margin-top: 80px;
}

.details__swiper-wrapper {
  width: 100%;
}

.details__swiper .swiper-wrapper {
  padding: 0 60px;
}

.details__slide {}

.details__slide:last-child {
  margin-right: 80px;
}

.details__slide img {
  width: 100%;
  border-radius: 27px;
}

.details__swiper .swiper-slide {
  width: 386px;
  height: 386px;
}

/* ======= buy section ======= */


.buy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}

.buy__bg {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy__title {
  margin-top: 80px;
  font-weight: 600;
  font-size: 86px;
  line-height: 1.39535;
  text-align: center;
  color: #fff;
}

.buy__subititle {
  margin-top: 24px;
  font-size: 24px;
  text-align: center;
  color: #fff;
}

.buy__btn {
  margin-top: 24px;
  display: block;
  font-size: 16px;
  text-align: center;
  color: #000;
  border-radius: 24px;
  padding: 10px 32px;
  max-width: 132px;
  background: #f5f5f5;
}

/* ======= footer ======= */


.footer {
  background: linear-gradient(180deg, #f5f5f5 0%, #d2cdc6 100%);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px solid #000; */
}

.footer__title {
  margin-top: 80px;
  font-weight: 600;
  font-size: 42px;
  text-transform: capitalize;
  text-align: center;
  color: #52483e;
}

.footer__subtitle {
  margin-top: 16px;
  font-size: 20px;
  text-align: center;
  color: #8b8782;
  max-width: 860px;
}

.footer__products {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.footer__products a {
  padding: 10px 32px;
  font-size: 16px;
  text-align: center;
  color: #000;
  border-radius: 24px;

  background: #f5f5f5;
}

.footer__info {
  width: 100%;
  border-top: 1px solid #8B8782;
  margin-top: 42px;
}

.footer__info-inner {
  padding: 16px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__copyright {
  font-weight: 400;
  font-size: 16px;
  line-height: 3.125;
  text-align: right;
  color: #52483e;
}

.socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.socials__item {}

.socials__link {}

.socials__icon {
  width: 26px;
  height: 26px;
}



/* =========== MEDIA ============= */
/* =========== MEDIA ============= */
/* =========== MEDIA ============= */

@media (max-width: 1200px) {

  .hero__title,
  .hero__subtitle {
    font-size: 15vw;
  }

  .hero img {
    position: absolute;
    top: -50px;
    top: -8.3vw;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

}

@media (max-width: 1060px) {

  .about-product__slide {
    flex-direction: column;
    max-width: 1080px;
    height: 100%;
  }

  .about-product__text {
    padding: 42px 32px 42px 32px;
  }

  .about-product__img {
    max-width: 532px;
  }

  .about-product__slide-2 .about-product__text {
    order: 2;
  }

  .about-product__slide-2 .about-product__img {
    order: 1;
  }
}

@media (max-width: 900px) {

  .header {
    height: 100vh;
    max-height: 688px;
    background: linear-gradient(180deg, #d2cdc6 0%, #f5f5f5 100%);
  }

  .header__list {
    background: linear-gradient(180deg, #d2cdc6 0%, #f5f5f5 100%);
    gap: 40px;
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;

    transition: opacity 0.2s, transform 0.2s, visibility 0s 0.2s;
  }

  .burger-menu {
    position: absolute;
    z-index: 4;
    right: 0;
    display: block;
    padding: 16px 5px;
    padding-right: 24px;

  }

  .burger-menu span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 5px;
    background: #000;
    position: relative;
    transition: background 0.2s, transform 0.2s;
  }

  .burger-menu span::before {
    content: '';
    position: absolute;
    top: -8px;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 5px;
    background: #000;
    transition: background 0.2s, transform 0.2s;
  }

  .burger-menu span::after {
    content: '';
    position: absolute;
    top: 8px;
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 5px;
    background: #000;
    transition: background 0.2s, transform 0.2s;
  }

  .burger-menu--opened span {
    background: transparent;
  }

  .burger-menu--opened span::before {
    transform: rotateZ(45deg);
    top: 0;
  }

  .burger-menu--opened span::after {
    transform: rotateZ(-45deg);
    top: 0;
  }

  body.body-menu--opened {
    overflow: hidden;
  }

  .body-menu--opened .header__list {
    background: linear-gradient(180deg, #d2cdc6 0%, #f5f5f5 100%);
    gap: 40px;
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transform: translateY(0);
    opacity: 1;
    visibility: visible;

    transition: opacity 0.2s, transform 0.2s, visibility 0s;
  }

  .hero__title {
    padding-top: 20vw;
  }

  .hero img {
    position: absolute;
    top: calc((900px - 90vw) * 0.3);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

  .main {
    margin-top: 10px;
  }

  .products__title {
    padding-top: 20vw;
    font-size: 46px;
  }

  .products__slider .swiper-slide-active {
    transform: scale(1);
  }

  .footer .logo {
    display: none;
  }

  .footer__socials {
    margin: 0 auto;
    flex-direction: column;
  }
}


@media (max-width: 600px) {

  .about-product__text {
    font-size: 24px;
    min-width: 276px;
  }

  .about-product__img {
    max-width: 340px;
  }

  .details {
    padding: 42px 0 80px;
  }

  .details__title {
    font-weight: 600;
    font-size: 42px;
  }

  .details__subititle {
    font-size: 18px;
  }

  .details__swiper .swiper-wrapper {
    padding: 0 20px;
  }
}


@media (max-width: 430px) {
  .main {
    margin-top: 42px;
  }

  .hero__title {
    padding-top: 80px;
  }

  .hero img {
    top: 170px;
    width: 140%;
  }

  /* ====== products ====== */

  .products__slider {
    margin-top: -50px;
  }

  .products__title {
    padding-top: 0;
    font-size: 42px;
    line-height: 1.42857;
  }

  .products__subtitle {
    font-size: 18px;
  }

  .products__slider .swiper-slide-active {
    transform: scale(1);
  }

  .products__pagination {
    margin-top: -50px;
    gap: 26px;
  }

  .products__pagination span {
    border-radius: 60px;
    width: 40px;
    height: 40px;
  }

  .products__description {
    font-size: 18px;
  }

  /* ====== about ====== */

  .about-product {
    padding: 24px 0;
  }

  .about-product__slide {
    max-width: 340px;
    height: 100%;
  }

  .about-product__text {
    min-width: none;
  }

  .about-product__img {
    max-width: 340px;
  }

  .about-product__slide-3 {
    margin-right: 0px;
  }

  /* ====== details ====== */
  .details {
    padding: 42px 0 80px;
  }

  .details__title {
    font-weight: 600;
    font-size: 42px;
  }

  .details__subititle {
    font-size: 18px;
  }

  .details__swiper .swiper-wrapper {
    padding: 0;
  }

  .details__slide:last-child {
    margin-right: 0px;
  }

  .details__swiper .swiper-slide {
    width: 100%;
    height: 100%;
  }

  /* ====== buy ====== */

  .buy__title {
    margin-top: 42px;
    font-size: 60px;
  }

  .buy__subititle {
    font-size: 24px;
    max-width: 372px;
  }

  /* ====== footer ====== */

  .footer .logo {
    display: none;
  }

  .footer__title {
    margin-top: 42px;
    line-height: 1.42857;
    max-width: 324px;
  }

  .footer__subtitle {
    font-size: 18px;
    max-width: 324px;
    line-height: 1.5;
  }


  .footer__info {
    width: 100%;
    border-top: 1px solid #8B8782;
    margin-top: 42px;
  }

  .footer__info-inner {
    padding: 16px 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer__socials {
    margin: 0 auto;
    flex-direction: column;
  }
  
  .footer__copyright{
    text-align: center;
  }

  .socials__item {}

  .socials__link {}

  .socials__icon {
    width: 26px;
    height: 26px;
  }

}