.carousel-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.carousel-wrapper {
  overflow: hidden;
  cursor: default;
  position: relative;
  user-select: none;
  touch-action: pan-y;
  padding: 20px 0 0;
}
.carousel-track {
  display: flex;
  gap: 0;
  padding: 0;
  width: 100%;
  margin: 0 auto;
  transform: translateX(0);
  transition: transform 0.3s ease;
  max-width: 1410px;
  margin: 0 auto;
}
.carousel-item {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  overflow: hidden;
  cursor: default;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  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;
}
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;
}
img#logo3-slide1 {
  margin-left: -5px;
}
img#logo4-slide1 {
  margin-left: -15px;
}
/* Gallery Certificate Logos */
.gallery-certificate-logos {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}
img.gallery-certificate-logo {
  border-radius: 0;
  width: 70px;
}
/* Responsive design for all viewports */
@media screen and (min-width: 1px) and (max-width: 1440px) {
  .slide-dots,
  .gallery-certificate-logos {
    display: none !important;
  }
  .carousel-track {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1px) and (max-width: 1023px) {}