/* Hero Section */
.hero-section {
  background: #F4EFE6;
  position: relative;
  overflow: visible;
}

/* Swiper Integration */
.hero-slider.swiper-container {
  overflow: hidden;
}

.hero-slider .swiper-wrapper {
  display: flex;
}

.hero-slider .swiper-slide {
  width: 100%;
  flex-shrink: 0;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
  transition: opacity 0.6s ease-in-out;
}

.hero-slide.active {
  display: block;
}

/* Swiper fade effect compatibility */
.hero-slider .swiper-slide-active .hero-slide {
  display: block;
}

.hero-slider .swiper-slide:not(.swiper-slide-active) .hero-slide {
  display: none;
}

.hero__wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  max-width: 65%;
  width: 650px;
}

.hero-title {
  color: #000;
  font-family: "KyivType";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
}

.hero-description {
  color: #000;
  font-family: Gilroy;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 40px;
  margin-bottom: 70px;
  padding: 0px;
}

.hero-button {
  display: inline-flex;
  padding: 24px 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #000;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background: #333;
  color: #fff;
  text-decoration: none;
  transform: translateX(4px);
}

.hero-button svg {
  transition: transform 0.3s ease;
}

.hero-button:hover svg {
  transform: translateX(4px);
}

/* Image */
.hero-image {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  margin-right: calc(-1 * ((100vw - 1150px) / 2));
  max-width: none;
}

.hero-main-img {
  width: 100%;
  height: 800px;
  display: block;
}

.hero-swatches {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  margin-top: 0;
}

.hero-swatches img {
  object-fit: cover;
  cursor: pointer;
  width: 33.333%;
  height: 216px;
  display: block;
}

.hero-swatches img:hover {
  transform: scale(1.05);
}

/* Navigation */
.hero-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 10;
  margin-top: -37px;
  position: relative;
  top: -32px;
}

/* Swiper Navigation Buttons */
.hero-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hero-nav-btn.swiper-button-disabled:hover {
  transform: none;
}

.hero-nav-btn {
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-nav-btn:hover {
  transform: scale(1.1);
}

.hero-nav-btn svg {
  color: #000;
}

.hero-dots {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-dot {
  width: 14px;
  height: 14px;
  background: rgba(0, 0, 0, 0.10);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: #000;
}

.hero-dot:hover {
  background: rgba(0, 0, 0, 0.5);
}

@media(max-width: 1400px) {
  .hero-image {
    margin-right: calc(-1 * ((100vw - 1140px) / 2));
  }

  .hero-description {
    margin-top: 15px;
    margin-bottom: 35px;
  }
}

@media(max-width: 1200px) {
  .hero-image {
    margin-right: calc(-1 * ((100vw - 940px) / 2));
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-main-img {
    height: 100%;
    object-fit: contain;
  }
}

@media (max-width: 1024px) {

  .hero-nav {
    gap: 40px;
    margin-top: 0px;
    top: 28px;
    justify-content: space-between;
  }

  .hero-section {
    padding-bottom: 60px;
  }

  .hero-image {
    margin-right: -15px;
    margin-left: -15px;
    width: calc(100% + 30px);
    height: 100%;
  }

  .hero__wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    margin-top: 80px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-description {
    font-size: 20px;
  }
}

@media(max-width: 568px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-description,
  .hero-button {
    font-size: 14px;
  }
}