/* Swiper React fixes for full-width hero slider */

/* Remove any max-width constraints */
body {
  max-width: none !important;
  width: 100% !important;
}

#root {
  max-width: none !important;
  width: 100% !important;
}

#smooth-wrapper,
#smooth-content {
  max-width: none !important;
  width: 100% !important;
}

.site-main {
  max-width: none !important;
  width: 100% !important;
}

.hero-slider {
  width: 100%;
  height: auto;
}

.hero-slider .swiper-wrapper {
  height: auto;
}

.hero-slider .swiper-slide {
  height: auto;
}

.tj-slider-item {
  min-height: 92.5vh;
  width: 100%;
  position: relative;
}

/* Ensure slider section takes full width with margins */
.tj-slider-section {
  width: calc(100% - 30px) !important;
  margin-left: 15px !important;
  margin-right: 15px !important;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-slider-section {
    width: calc(100% - 24px);
    margin-left: 12px;
    margin-right: 12px;
  }

  .tj-slider-item {
    min-height: 100vh;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-slider-item {
    min-height: 95vh;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-item {
    min-height: auto;
  }
}

/* Hero navigation positioning */
.hero-navigation {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  z-index: 10;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
       only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-navigation {
    right: 27px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
       only screen and (min-width: 576px) and (max-width: 767px),
       (max-width: 575px) {
  .hero-navigation {
    right: 12px;
    top: auto;
    bottom: 40px;
    transform: none;
  }
}

/* Circle text wrap */
.circle-text-wrap {
  position: absolute;
  bottom: 60px;
  transform: translateX(-50%) !important;
  z-index: 10;
}

@media (max-width: 991px) {
  .circle-text-wrap {
    display: none;
  }
}
