@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

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

h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
}
@media (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 36px;
  }
}

h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 36px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
}

body,
p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  body,
  p {
    font-size: 14px;
    line-height: 20px;
  }
}

.body-large {
  font-size: 16px;
  line-height: 24px;
}

.body-medium {
  font-size: 14px;
  line-height: 20px;
}

.header {
  background-color: #fff;
  font-family: "Poppins", sans-serif;
  border-bottom: 1px solid #ebebeb;
}
.header__burger {
  display: none;
}
.header__container {
  max-width: 1440px;
  margin: 0 60px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo img {
  width: 100px;
  height: 24px;
  display: block;
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__nav .header__menu {
  display: flex;
  gap: 32px;
}
.header__nav .header__menu li a {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 150%;
  text-align: center;
}
.header__nav .header__menu li a:hover, .header__nav .header__menu li a:focus {
  color: #737373;
}
.header__cart {
  display: flex;
  align-items: center;
}
.header__cart img {
  width: 24px;
  height: 24px;
  display: block;
}

@media (min-width: 768px) and (max-width: 1279px) {
  .header__container {
    padding: 0 40px;
    height: 72px;
  }
  .header__nav .header__menu {
    gap: 24px;
  }
  .header__burger {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__container {
    padding: 0 16px;
    height: 56px;
  }
  .header__burger {
    display: block;
    border: none;
    background-color: #fff;
  }
  .header__nav {
    display: none;
  }
  .header__logo {
    margin: 0 auto;
    display: none;
  }
  .header__cart img {
    width: 20px;
    height: 20px;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}
.hero-section .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-section .swiper-wrapper,
.hero-section .swiper-slide {
  width: 100%;
}
.hero-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-section .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  background: #737373;
}
.hero-section .swiper-slide .hero-content {
  position: absolute;
  top: 50%;
  left: 60px;
  transform: translateY(-50%);
  width: 648px;
  text-align: left;
  color: #fff;
  z-index: 10;
}
.hero-section .swiper-slide h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 16px;
}
.hero-section .swiper-slide p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}
.hero-section .swiper-slide button {
  width: 220px;
  height: 56px;
  padding: 16px 32px;
  border-radius: 8px;
  border: none;
  background: #fff;
  color: #000;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 150%;
  cursor: pointer;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.2s;
}
.hero-section .swiper-slide button:hover {
  opacity: 0.9;
  background: #737373;
}
.hero-section .swiper-pagination {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 50;
}
.hero-section .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 6px;
  background-color: #737373;
  border-radius: 999px;
  opacity: 1;
  transition: background-color 0.3s;
}
.hero-section .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}

/* MOBILE */
@media (max-width: 767px) {
  .hero-section {
    position: relative;
    width: 375px;
    height: 600px;
  }
  .hero-section .swiper,
  .hero-section .swiper-wrapper,
  .hero-section .swiper-slide {
    width: 375px;
    height: 600px;
  }
  .hero-section .swiper-slide {
    position: relative;
  }
  .hero-section .swiper-slide img {
    width: 375px;
    height: 600px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero-section .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
  }
  .hero-section .hero-content h1 {
    font-size: 30px;
    line-height: 120%;
    text-align: center;
    text-transform: uppercase;
    max-width: 335px;
    margin: 0 0 12px;
  }
  .hero-section .hero-content p {
    max-width: 320px;
    margin: 0 0 16px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
    display: flex;
  }
  .hero-section .hero-content button {
    width: 100%;
    max-width: 280px;
    height: 56px;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
  }
  .hero-section .hero-content button:hover {
    background: #737373;
    color: #fff;
  }
  .hero-section .swiper-pagination {
    bottom: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .hero-section {
    height: 500px;
  }
}
.faq-spoiler {
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  background: #f5f5f5;
}
.faq-spoiler h2 {
  font-size: 30px;
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .faq-spoiler h2 {
    font-size: 30px;
    line-height: 36px;
  }
}
.faq-spoiler p {
  font-size: 16px;
  line-height: 24px;
  color: #737373;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .faq-spoiler p {
    font-size: 14px;
    line-height: 20px;
  }
}
.faq-spoiler .faq-container {
  max-width: 800px;
  border-radius: 8px;
  margin: 0 auto;
  background: #fff;
  padding: 0;
  text-align: left;
}
.faq-spoiler .faq-container .spoiler-block__item {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 16px auto;
  border-bottom: 1px solid #ebebeb;
}
.faq-spoiler .faq-container .spoiler-block__item:last-child {
  border-bottom: none;
}
.faq-spoiler .faq-container .spoiler-block__item .spoiler-block__title {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}
.faq-spoiler .faq-container .spoiler-block__item .spoiler-block__title span {
  width: 20px;
  height: 20px;
  display: inline-block;
  background: url("../assets/icons/plus-circle.svg") no-repeat center center;
  background-size: contain;
  transition: transform 0.3s;
}
.faq-spoiler .faq-container .spoiler-block__item .spoiler-block__title.active span {
  background: url("../assets/icons/minus.svg") no-repeat center center;
  background-size: contain;
}
.faq-spoiler .faq-container .spoiler-block__item .spoiler-block__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-spoiler .faq-container .spoiler-block__item .spoiler-block__content .spoiler-block__info {
  padding: 0 16px 0;
}
.faq-spoiler .faq-container .spoiler-block__item .spoiler-block__content .spoiler-block__info .spoiler-block__text {
  font-size: 16px;
  line-height: 24px;
  color: #737373;
  text-align: left;
}

.footer {
  background: #fff;
  max-width: 1440px;
  padding: 60px 60px 24px;
}
.footer__top {
  max-width: 1280px;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.footer__col {
  flex: unset;
  min-width: 160px;
  width: 100%;
  max-width: 100%;
}
.footer__title {
  font-weight: 400;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 767px) {
  .footer__title {
    width: 100%;
    padding-right: 32px;
    position: relative;
  }
}
.footer__title::after {
  content: "›";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s;
}
.footer__title.is-open::after {
  transform: translateY(-50%) rotate(-90deg);
}
.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__list li {
  margin-bottom: 8px;
}
.footer__list li a {
  font-size: 14px;
  color: #737373;
  transition: color 0.2s;
}
.footer__list li a:hover {
  color: #000;
}
@media (max-width: 767px) {
  .footer__list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .footer__list.is-open {
    max-height: 500px;
    margin-top: 8px;
  }
}
.footer__bottom {
  color: #737373;
  max-width: 872px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
  line-height: 143%;
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    height: auto;
    text-align: center;
  }
}
.footer__bottom .copyright {
  color: #737373;
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
}
.footer__bottom .footer__legal {
  display: flex;
  gap: 16px;
}
.footer__bottom .footer__legal a {
  color: #737373;
}
.footer__bottom .footer__legal a:hover {
  color: #000;
}

.featured-collection {
  padding: 80px 0 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.featured-collection h2 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
  line-height: 36px;
  font-weight: 400;
  margin-bottom: 32px;
  color: #000;
  text-align: center;
}
@media (max-width: 767px) {
  .featured-collection h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
.featured-collection .featured-slider {
  position: relative;
  overflow: visible;
}
.featured-collection .featured-slider .swiper-wrapper {
  align-items: stretch;
}
.featured-collection .featured-slider .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}
.featured-collection .featured-slider .product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 12px;
  height: 100%;
  overflow: hidden;
}
.featured-collection .featured-slider .product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.featured-collection .featured-slider .product-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 8px;
}
.featured-collection .featured-slider .product-card p {
  font-size: 16px;
  line-height: 150%;
  color: #737373;
  font-weight: 400;
}

.product {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  padding: 32px;
  font-family: "Poppins", sans-serif;
}
.product__gallery {
  display: flex;
  gap: 24px;
}
.product__thumbnails {
  display: flex;
  flex-direction: column;
  width: 88px;
  gap: 16px;
}
.product__thumbnails .product__thumb {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  cursor: pointer;
  padding: 4px;
  background: #fff;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}
.product__thumbnails .product__thumb:hover {
  border-color: #000;
}
.product__thumbnails .product__thumb.is-active {
  border-color: #000;
}
.product__image-wrapper {
  position: relative;
  width: 536px;
  height: 536px;
  border-radius: 8px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__image-wrapper .product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  padding: 4px 8px;
  line-height: 143%;
  color: #000;
}
.product__image-wrapper img.product__star {
  width: 16px;
  height: 16px;
  display: block;
}
.product__image-wrapper .product__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.product__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product__title {
  font-size: 30px;
  font-weight: 400;
  color: #000;
}
.product__price {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #737373;
}
.product__colors {
  display: flex;
  gap: 16px;
}
.product__colors .product__color {
  width: 88px;
  height: 88px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border-color 0.2s ease;
}
.product__colors .product__color img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__colors .product__color:hover {
  border-color: #000;
}
.product__sizes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 52px;
  max-width: 100%;
  gap: 12px;
}
.product__sizes .product__label {
  grid-column: 1/-1;
  font-size: 14px;
  line-height: 143%;
  font-weight: 400;
  color: #000;
  margin-bottom: 8px;
}
.product__sizes .product__size {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  cursor: pointer;
  transition: border-color 0.2s ease;
  white-space: nowrap;
}
.product__sizes .product__size:hover {
  border-color: #000;
}
@media (max-width: 767px) {
  .product__sizes {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.product__btn {
  width: 100%;
  height: 56px;
  border-radius: 8px;
  padding: 16px 32px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product__btn:hover {
  background: black;
}
.product__desc {
  width: 100%;
  font-size: 14px;
  line-height: 143%;
  font-weight: 400;
  color: #737373;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .product {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product__gallery {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .product__thumbnails {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 8px;
    order: 2;
  }
}
@media (max-width: 767px) {
  .product {
    padding: 16px;
  }
  .product__gallery {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .product__thumbnails {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    gap: 8px;
    order: 2;
  }
  .product__thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    order: 1;
  }
  .product__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .product__title {
    font-size: 30px;
    font-weight: 400;
    color: #000;
  }
  .product__price {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #737373;
  }
  .product .product__image {
    -o-object-fit: contain;
       object-fit: contain;
    padding: 8px;
  }
  .product__image {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.popup {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}
.popup.active {
  display: flex;
}
.popup__content {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  width: 871px;
  height: 536px;
  background: #fff;
  position: relative;
}
.popup__text {
  border-radius: 16px 0 0 16px;
  background: #fff;
  padding: 60px;
  width: 519px;
  height: 536px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.popup__text h2 {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 100%;
  text-transform: uppercase;
}
.popup__text p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #555;
}
.popup__image {
  width: 352px;
  height: 536px;
  border-radius: 0 16px 16px 0;
  overflow: hidden;
  position: relative;
}
.popup__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.popup__close:hover {
  background: #f2f2f2;
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup__form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.popup__form input {
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}
.popup__form button {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.popup__form button:hover {
  background: #333;
}

@media (max-width: 767px) {
  .popup {
    display: none;
    justify-content: center;
    align-items: flex-start;
    padding-top: calc(env(safe-area-inset-top, 0px) + 16px);
  }
  .popup__content {
    flex-direction: column;
    width: 359px;
    height: 488px;
    padding: 60px 24px;
    border-radius: 16px;
    position: relative;
    box-sizing: border-box;
    max-width: calc(100vw - 24px);
  }
  .popup__text {
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
  }
  .popup__image {
    display: none;
  }
  .popup__close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }
  .popup__text h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  .popup__text p {
    font-size: 14px;
    line-height: 20px;
  }
}
.contact {
  background: #f5f5f5;
  padding: 80px 60px;
  text-align: center;
}
.contact__title {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
}
.contact__form {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__row {
  display: flex;
  gap: 24px;
}
.contact__row .contact__field {
  flex: 1;
}
.contact__field {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact__field label {
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
}
.contact__field input,
.contact__field textarea {
  padding: 12px 16px;
  border: 1px solid #ebebeb;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  height: 56px;
}
.contact__field textarea {
  min-height: 120px;
  resize: vertical;
}
.contact__btn {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  cursor: pointer;
  font-weight: 500;
  width: 121px;
  height: 56px;
  margin: 0 auto;
}
.contact__btn:hover {
  background-color: #cacacb;
  color: #000;
}/*# sourceMappingURL=style.css.map */