/*Home Page*/

    /* Common Slide Style */
.hero__slider--items {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;             /* vertically center */
  justify-content: flex-end;      /* push content to right */
  text-align: right;              /* text aligned to right */
  color: #fff;
  position: relative;
  padding: 2rem 2rem;             /* add more space for right alignment */
 
}
.slider__content--maintitle {
 margin-right: 100px;   
}

/* Slide Specific Background Images */
.hero__slider--items.slide1 {
  background-image: url('../images/k.png'); /* change path */
}

.hero__slider--items.slide2 {
  background-image: url('../images/m (2).png'); /* change path */
}

.hero__slider--items.slide3 {
  background-image: url('../images/k.png'); /* change path */
}

/* Text Styling */




.slider__content--desc {
  font-size: 1.2rem;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  .hero__slider--items {
    min-height: 220px;
    background-position: center top;
    padding: 3rem 2rem;
  }

  .slider__content--maintitle {
    font-size: 1.8rem;
    margin-right: -170px !important;
  }

  .slider__content--desc {
    font-size: 1rem;
     margin-right: -170px !important;
  }

  .text-content-wrapper {
    padding: 1rem;
  }
}


    /* Responsive behavior */
@media (max-width: 576px) {
  .hero__slider--items {
    background-size: cover;
    background-position: center center;
    padding: 40px 20px;
    text-align: center;
  }

  .slider__content--maintitle {
    font-size: 1.8rem;
    margin-left: 0px !important;
  }

  .slider__content--desc {
    font-size: 1rem;
  }

  .slider__content {
    padding: 0 10px;
  }
}

      
  /*.blog__items {*/
  /*  background-color: #f9f9f9;*/
  /*  border-radius: 12px;*/
  /*  padding: 15px;*/
  /*  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);*/
  /*  text-align: center;*/
  /*  height: 100%;*/
  /*}*/

  .blog__thumbnail--img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
    margin-bottom: 10px;
  }

.blog__content--title {
  min-height: 70px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog__content--title a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  text-decoration: underline;
  display: inline-block;
  border-radius: 6px;
}
@media (max-width: 576px) {
  .blog__content--title a {
    font-size: 1.8rem;
    padding: 8px 25px;
  }

  .blog__content--title {
    min-height: 60px;
  }
}


          .product__items {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            border: 1px solid rgb(230, 230, 230);
            padding: 8px;
            border-radius: 10px;
            background-color: #fff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
          }
        
          .product__items--thumbnail {
            aspect-ratio: 1 / 1; /* keeps square shape on all screens */
            background: #f8f8f8;
            border-radius: 8px;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
          }
        
          .product__items--thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 10px;
            
            font-weight: bold; /* Makes text on image bold if any */
          }
        
          /* Adjust for smaller mobile screens */
          @media screen and (max-width: 480px) {
            .product__items--thumbnail {
              aspect-ratio: 4 / 5;
            }
          }
        
          /* Ensure column fills equal height */
          .col.h-100 {
            display: flex;
          }
        
        

.bottle-spec-slider ul {
  padding-left: 50px;
}

.bottle-spec-slider ul li {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.bottle-spec-slider .swiper-button-next,
.bottle-spec-slider .swiper-button-prev {
  background-color: #ff6f61;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
}

.bottle-spec-slider .swiper-button-next::after,
.bottle-spec-slider .swiper-button-prev::after {
  font-size: 20px;
}


.marquee-section {
  height: 80px;
  width: 100%;
  overflow: hidden;
  background: #b22222;
  position: relative;
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  position: absolute;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  from {
    left: 100%;
  }
  to {
    left: -100%;
  }
}

.marquee-content ul {
  display: inline-flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marquee-content ul li {
  line-height: 80px;
  font-size: 26px;
  position: relative;
  padding-right: 30px;
  font-weight: bold;
  color: white;
}

.marquee-content ul li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 10px;
  color: #fff;
}

