#banner {
  max-width: 100%;
  height: 550px;
  overflow: hidden;
  position: relative;
  background-color: #636363;
}

#transition-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #636363;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.banner-images {
  display: block;
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: none !important;
}

.glass-arrow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  color: white !important;
  cursor: pointer;
  z-index: 20;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.glass-arrow i {
  font-size: 1.5rem;
  color: white !important;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.glass-arrow:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.glass-btn {
  background-color: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  color: white !important;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: inline-block;
  text-decoration: none;
}

.glass-btn:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
  color: white !important;
  border-color: #fff !important;
}

.product-card {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}

.product-card:hover {
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.5) !important;
}

.glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#product-image-container:has(#banner-product-img[style*="display: none"]),
#product-image-container:has(#banner-product-img[src=""]) {
  display: none !important;
}

.banner-dot {
  width: 14px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.banner-dot.active {
  background-color: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.banner-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

@keyframes simpleFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade {
  animation: simpleFade 0.8s ease-out forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

#banner {
  cursor: pointer;
}
.price-highlight {
  background: rgba(0, 0, 0, 0.45);
  padding: 8px 14px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 6px;
  color: #ffffffff;
  box-shadow: 0 0 10px rgba(250, 250, 250, 0.5);
}

#product-featured-attributes ul {
  list-style-position: inside;
  list-style-type: disc;
  padding-left: 0;
  margin-bottom: 0;
}

#product-featured-attributes li {
  display: list-item;
}
#banner-cta {
  bottom: 0px;
}

@media (max-width: 1024px) {
  #banner {
    height: 750px;
  }

  #banner-cta {
    display: inline-block !important;
    bottom: 55px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 30;
    margin: 0 !important;
  }

  #banner-dots-container {
    z-index: 20;
    height: 20px;
  }
}

@media (max-width: 992) {
  #banner-dots-container {
    height: 15px;
  }
}
