
.exclusive-banner-container {
  text-align: center;
  margin-bottom: 15px;
  margin-left: -100px; /* Left shift for desktop */
}

.exclusive-banner {
  display: inline-block;
  background-color: white;
  color: #1f1e1e;
  padding: 8px 15px;
  font-weight: bold;
  font-size: 12px;
  border-radius: 8px;
  position: relative;
  left: -100px; /* Left shift for desktop */
}

@media (max-width: 768px) {
  .exclusive-banner {
    font-size: 16px;
    padding: 6px 14px;
    left: 0; /* Reset to center on mobile */
  }
  
  .exclusive-banner-container {
    margin-left: 0; /* Reset to center on mobile */
  }
}


.exclusive-banner-container1 {
  text-align: center;
  margin-bottom: 15px;
  margin-left: -1px; /* Left shift for desktop */
}

.exclusive-banner1 {
  display: inline-block;
  background-color: white;
  color: #1f1e1e;
  padding: 10px 18px;
  font-weight: bold;
  font-size: 12px;
  border-radius: 8px;
  position: relative;
  left: -1px; /* Left shift for desktop */
}

@media (max-width: 768px) {
  .exclusive-banner1 {
    font-size: 16px;
    padding: 6px 14px;
    left: 0; /* Reset to center on mobile */
  }
  
  .exclusive-banner-container1 {
    margin-left: 0; /* Reset to center on mobile */
  }
}



  /* Layout for slider container */
  .slider-container-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
  }
  
  .main-slider-wrapper {
    flex: 1;
    position: relative;
    margin: 0 auto;
  }
  
  /* Main slider adjustments */
  #featuredSlider {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .main-slider-wrapper .carousel-inner {
  width: 100%;
  border-radius: 15px; /* Added border radius to carousel inner */
  overflow: hidden; /* Ensure rounded corners are visible */
}

.main-slider-wrapper .carousel-inner img {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 15px; /* Rounded corners for the images */
  max-height: 500px;
  object-fit: contain;
}
  
  .side-sliders-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 200px;
    flex-shrink: 0;
  }
  
  /* Side sliders styling */
  .side-slider {
    background-color: #1f1e1e;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }
  
  .side-slider-header {
    font-size: 14px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #444;
  }
  
  .side-slider .carousel-inner {
    border-radius: 8px;
    overflow: hidden;
  }
  
  .side-slider .carousel-inner img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
  }
  
  /* Hide side sliders on mobile */
  @media (max-width: 992px) {
    .side-sliders-container {
      display: none;
    }
    
    .slider-container-wrapper {
      justify-content: center;
    }
    
    #featuredSlider {
      max-width: 100%;
    }
  }
  
  /* Style for the carousel control arrows - POSITIONED CLOSER TO IMAGE */
  .carousel-control-prev, .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    background-color: orange;
    color: white;
    padding: 10px 12px; /* Reduced padding to make buttons smaller */
    border-radius: 5px;
    z-index: 1;
    font-size: 16px; /* Smaller font */
    font-weight: bold;
    text-align: center;
    border: none;
    opacity: 0.8;
    width: 40px; /* Fixed width */
    height: 40px; /* Fixed height */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Position arrows closer to the image */
  .carousel-control-prev {
    left: 5px; /* Much closer to the image */
  }

  .carousel-control-next {
    right: 5px; /* Much closer to the image */
  }

  .carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.05); /* Slight scale effect on hover */
  }

  /* Arrow icons */
  .carousel-control-prev-icon, .carousel-control-next-icon {
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }

  .carousel-control-next-icon {
    border-left: none;
    border-right: 8px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
 
  /* Main carousel images with rounded corners */
  .main-slider-wrapper .carousel-inner img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 15px; /* Increased border radius for more rounded corners */
    max-height: 500px;
    object-fit: contain;
  }

  /* Carousel indicators positioning */
  .carousel-indicators {
    bottom: 15px; /* Moved indicators slightly higher */
  }

  .carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
  }

  /* Mobile adjustments */
  @media (max-width: 768px) {
    .carousel-control-prev, 
    .carousel-control-next {
      background-color: orange !important;
      color: white !important;
      padding: 8px 10px; /* Even smaller on mobile */
      width: 35px;
      height: 35px;
    }

    .carousel-control-prev:hover, 
    .carousel-control-next:hover {
      background-color: orange !important;
      color: white !important;
    }
    
    .main-slider-wrapper .carousel-inner img {
      max-width: 95%;
      max-height: 400px;
      border-radius: 12px; /* Slightly smaller radius on mobile */
    }
    
    /* Position arrows even closer on mobile */
    .carousel-control-prev {
      left: 2px;
    }

    .carousel-control-next {
      right: 2px;
    }
    
    .carousel-indicators {
      bottom: 10px;
    }
    
    .carousel-indicators li {
      width: 10px;
      height: 10px;
    }
  }
  
  .fading-image {
    opacity: 1 !important;
    transition: none !important;
  }
  
/* Pagination Styles */
.top-pagination ul.pagination,
.bottom-pagination ul.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-pagination ul.pagination li,
.bottom-pagination ul.pagination li {
    margin: 0 5px;
}

.top-pagination ul.pagination li a,
.bottom-pagination ul.pagination li a {
    display: block;
    padding: 8px 14px;
    background-color: transparent; /* no dark background */
    color: orange;
    border: 2px solid;
    border-image-slice: 1;
    border-width: 2px;
    border-image-source: linear-gradient(45deg, #9b00ff, #ff6600); /* purple → orange */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

/* Hover state: black background, white text */
.top-pagination ul.pagination li a:hover,
.bottom-pagination ul.pagination li a:hover {
    background-color: #000;
    color: #fff;
}

/* Active state: black background, white text */
.top-pagination ul.pagination li.active a,
.bottom-pagination ul.pagination li.active a {
    background-color: #000;
    color: #fff;
}

.vivid-btn {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 750;
    padding: 10px 20px;
    border-radius: 5px;
    background: linear-gradient(45deg, #9b00ff, #ff6600); /* vivid purple → orange */
    color: white !important;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.vivid-btn:hover {
    background: linear-gradient(45deg, #ff6600, #9b00ff); /* reversed gradient on hover */
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.vivid-btn:active {
    transform: translateY(1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}
