.carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.carousel-wrapper {
  overflow: hidden;
  cursor: grab;
  position: relative;
  user-select: none;
  touch-action: pan-y;
  padding-top: 20px;
}
.carousel-track {
  display: flex;
  gap: 0;
  padding: 0;
  max-width: 1410px;
  margin: 0 auto;
  transform: translateX(0);
  transition: transform 0.3s ease;
}
.carousel-item {
  position: relative;
  flex: 0 0 1440px;
  height: 600px;
  overflow: hidden;
  cursor: move;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 24px;
}
#header-title-range {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.carousel-arrow-container {
  position: static;
  margin-top: 0;
  margin-right: 0;
  display: flex;
  gap: 10px;
  z-index: 3;
}
.carousel-arrow {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #00a7b5;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  opacity: 0.85;
  transition: background 0.1s, color 0.1, opacity 0.1s;
}
.carousel-arrow:hover:not(:disabled) {
  background: #333f48;
  color: #ffffff;
}
/* Remove old left/right positioning */
.carousel-arrow.left,
.carousel-arrow.right {
  left: unset;
  right: unset;
}
p.swatch-labels {
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  color: #333f48;
  margin-bottom: 5px;
}
/* Product Renders Carousel Styles (moved from responsive.css) */
@media screen and (min-width: 2561px) {
  .carousel-item {
    padding: 0 20px 0 0;
    flex: 0 0 1440px;
    height: 600px;
  }
}
@media screen and (min-width: 1441px) and (max-width: 2560px) {
  .carousel-item {
    padding: 0 20px 0 0;
    flex: 0 0 1440px;
    height: 600px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .carousel-item {
    padding: 0 15px;
    flex: 0 0 1000px;
    height: 550px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .carousel-item {
    padding: 0 15px;
    flex: 0 0 700px;
    height: 500px;
  }
}
@media screen and (min-width: 426px) and (max-width: 767px) {
  .carousel-item {
    padding: 0 15px;
    flex: 0 0 400px;
    height: 400px;
  }
}
@media screen and (min-width: 376px) and (max-width: 425px) {
  .carousel-item {
    padding: 0 15px;
    flex: 0 0 350px;
    height: 350px;
  }
}
@media screen and (min-width: 321px) and (max-width: 375px) {
  .carousel-item {
    padding: 0 15px;
    flex: 0 0 300px;
    height: 300px;
  }
}
@media screen and (min-width: 1px) and (max-width: 320px) {
  .carousel-item {
    padding: 0 15px;
    flex: 0 0 300px;
    height: 300px;
  }
}
@media screen and (min-width: 1px) and (max-width: 1440px) {
  .slide-dots {
    display: none !important;
  }
}
@media screen and (min-width: 1px) and (max-width: 1023px) {
  .slide-logos {
    display: none !important;
  }
}
.slide-logos {
  position: absolute;
  right: 60px;
  bottom: 40px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  z-index: 10;
}
.slide-logos img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}
img#logo1-slide2, img#logo1-slide3, img#logo1-slide4, img#logo1-slide5 {
  width: 58px;
  height: 58px;
}
.slide-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 11;
}
.slide-dots .product-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: #00a7b5;
  border-radius: 50%;
  border: 1px solid #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
  transition: background 0.2s;
  pointer-events: auto;
  cursor: pointer;
  animation: 2s ease 0s infinite normal none running pulse;
}
.slide-dots .product-dot:hover {
  background: #333f48;
}
div#dot3-slide2 {
  display: none;
}