/* Banner-2 Container */
.banner-2 {
  position: relative;
  width: 100%;
  height: 80vh;
  /* Adjust height as needed (e.g., 600px) */
  overflow: hidden;
}

/* Carousel Slides (Background Images) */
.cs-banner-carousel .carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.cs-banner-carousel .carousel-slide.active {
  opacity: 1;
}

/* Content Styling (Overlay) */
.cs-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  /* Light text for dark backgrounds */

}

/* Optional: Dark Overlay for Better Text Readability */
.carousel-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.432);
  /* Adjust opacity */
}

/* Center alignment for all text/content */
.cs-banner-content {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Center button wrapper */
.hero-btns.d-flex {
  justify-content: center !important;
}

/* Ensure full-width container stretches properly */
.banner-2 .container {
  height: 100%;
  display: flex;
  align-items: center;
  /* Vertical center */
}

.banner-2 .row {
  min-height: 80vh;
  /* Or your preferred height */
  align-items: center;
}

/* Text animation */
.hero-title {
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  animation: textPop 0.8s ease;
}

/* Button effects */
.pulse-animation {
  animation: pulse 2s infinite;
  color: white;
}

.blink {
  animation: blink 1s step-end infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes blink {
  50% {
    opacity: 0.5;
  }
}

.offer-item img {
  min-height: 450px;
  max-height: 450px;
  height: 450px;
}

.cart-counter {
  position: relative;
  top: -20px;
  left: -10px;
  background-color: #ff0000;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
}

.mobile_cart_counter {
  position: relative;
  font-size: 8px;
  top: -18px;
  left: -5px;
  background-color: white;
  color: #ff0000;
  padding: 2px 5px;

}

.mobile_navbar {
  width: 100%;
  background: white;
  border-top: 2px solid #ff0000;
  position: fixed;
  bottom: 0px;
  z-index: 99999999999999999999999;
  height: 70px;
  padding:0px;
  display: none;
  align-items: center;
  transition: 0.5s ease-in-out;
  /* display: ; */
}

.mobile_navbar .inner_mobile_container {
  width: 100%;
  margin: 0px auto;
  text-align: center;
  padding:0px;
}


  .mobile_navbar .inner_mobile_container ul li {
  display: inline-block;
  text-align: center;
  line-height: 20px;
  padding: 0px;
  margin: 0px;
}

.mobile_navbar .inner_mobile_container ul li a {
  color: #ff0000;
  font-size: 20px;
  text-shadow: 1px 1px 2px #21252941, 0 0 25px #2125291c, 0 0 5px #2125290e;
  /* display: ; */
}

.mobile_navbar .inner_mobile_container ul li span {
  color: #212529;
  font-size: 12px;
}
.cart_section .prd_name{
  word-wrap: break-word;
  width:200px;
}
.cart_section img {
  width: 120px;
  height: 120px;
}

 .cart_section {
  font-size: 20px;
}
@media screen and (max-width: 1190px) {
  .mobile_navbar {
    display: flex;

  }
  .back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 80px;
  }
  .cs-footer-area {
  margin-bottom: 70px;
  }
  .cs-cta-area .form_division{
     padding: 0px;
     padding: 40px 30px;  
  }
  .cart_section img{
    width:50px;
    height:50px;
  }
  .cart_section {
    font-size: 15px;
  }
}


