/* slider  */
.banners-section {
    height: auto;
}

#bannerimg{
  height: 390px;
}

body
{
  margin: 0;
  padding: 0;
box-sizing:border-box;
}

.main-hdng
{
  color: red;
  font-weight: bold;
font-size: 2.2em;
text-align: center;

}   

h2 {
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .card {
    margin-bottom: 20px;
  }
  .cards-div {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  gap: 10px;
    margin-top: 10px;
    padding: 15px;
}
}

@media (max-width: 576px) {
  .card {
    text-align: center;
  }

  .btn {
    margin-top: 10px;
  }
  .cards-div {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding: 15px;
}
}




/* Small mobile devices (landscape and portrait) */
@media (max-width: 575.98px) {
  .cards-div {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding: 15px;
}
  }
  
  /* Large mobile devices (landscape and portrait) */
  @media (min-width: 576px) and (max-width: 767.98px) {
   
  }
  
  /* Tablets (portrait) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    /* Styles for tablets in portrait mode */
  }
  
  /* Tablets (landscape) */
  @media (min-width: 992px) and (max-width: 1199.98px) {
    /* Styles for tablets in landscape mode */
  }
  /* Small laptops */
  @media (min-width: 1200px) and (max-width: 1399.98px) {
    /* Styles for small laptops */
  }
  
  /* Large laptops */
  @media (min-width: 1400px) and (max-width: 1599.98px) {
    /* Styles for large laptops */
  }
  /* Desktops and larger screens */
  @media (min-width: 1600px) {
    /* Styles for desktops and larger screens */
  }



.aboutus-div{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.aboutus-div > h1 {
  font-size: 35px;
  font-weight: 900;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.aboutus-div > p {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
}

.aboutus-section {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 70px;
}

.about_section .detail-box p {
  color: #6c6c6c;
}

.about_section .detail-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "SnellBT Regular", sans-serif;
  color: #46200b;
  font-weight: bold;
  margin-top: 25px;
  font-size: 20px;
}

.about_section .detail-box a span {
  margin-right: 5px;
}

.about_section .detail-box a img {
  width: 65px;
}

.about_section .img-box img {
  width: 100%;
}
.chocolate_section {
  background-color: #f8f9fa; /* Light background */
  padding: 50px 0; /* Space around the carousel */
}


.box:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}

.img-box > img {
  border-top-left-radius: 15px; /* Rounded corners on top */
  border-top-right-radius: 15px; /* Rounded corners on top */
  width: 100%; /* Full width */
  height: 300px; /* Maintain aspect ratio */
}

.detail-box {
  padding: 15px; /* Space inside detail box */
  text-align: center; /* Centered text */
}

.detail-box h6 {
  font-size: 1.2rem; /* Increased font size */
  margin-bottom: 10px; /* Space below title */
  color: #46200b; /* Title color */
}

.detail-box h5 {
  font-size: 1.5rem; /* Increased font size */
  margin-bottom: 15px; /* Space below price */
  color: #a04120; /* Price color */
}

.buy-button {
  background-color: #46200b; /* Button background color */
  color: #ffffff; /* Button text color */
  padding: 10px 20px; /* Button padding */
  border-radius: 25px; /* Rounded button */
  text-decoration: none; /* Remove underline */
  transition: background-color 0.3s; /* Smooth transition */
}

.buy-button:hover {
  background-color: #a04120; /* Darker button on hover */
}

.carousel-controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  border: 1px solid #a04120;
  color: #a04120;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

.carousel-control-prev {
  left: 10px; /* Adjust the distance from the left edge */
}

.carousel-control-next {
  right: 10px; /* Adjust the distance from the right edge */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #46200b;
  color: #ffffff;
  opacity: 1;
}

.carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100%, 100%;
  height: 20px;
  width: 20px;
}

@media (max-width: 768px) {
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    height: 15px;
    width: 15px;
  }

}
.offer_section {
  font-family: "SnellBT Regular", sans-serif;
}

.offer_section .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.offer_section .box .detail-box {
  border: 1px solid #6c6c6c;
  width: 100%;
  padding: 45px 15px 225px 15px;
}

.offer_section .box .detail-box h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #46200b;
}

.offer_section .box .detail-box h3 {
  font-weight: bold;
}

.offer_section .box .detail-box a {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  padding: 8px 30px;
  background-color: #46200b;
  color: #ffffff;
  border-radius: 0;
  border: 1px solid #46200b;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
  margin-top: 15px;
}

.offer_section .box .detail-box a:hover {
  background-color: transparent;
  color: #46200b;
}

.offer_section .box .img-box {
  margin-top: -190px;
}

.offer_section .box .img-box img {
  width: 100%;
}

.offer_section .btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}

.offer_section .btn-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "SnellBT Regular", sans-serif;
  color: #46200b;
  font-weight: bold;
  margin-top: 25px;
  font-size: 20px;
}

.offer_section .btn-box a span {
  margin-right: 5px;
}

.offer_section .btn-box a img {
  width: 85px;
}


.carousel-control-next , .carousel-control-prev
{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4%;
  height: 16%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: purple;
  border: 0;
  opacity: 1;
  transition: opacity .15s ease;
}
.cards-div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
  padding: 10px;
}

.card {
  background-color: rgb(0 0 0);
  filter: invert(1);
  border-radius: 45px;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgb(255 255 255 / 20%);
  display: flex;
  flex-direction: row;
}

.card:hover {
  transform: translateY(-10px);
}

.card-img-div {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 20px; */
}


.card-img-top {
  min-width: 115px;
  max-width: 115px;
  max-height: 115px;
  min-height: 115px;
  border-radius: 12px;
  object-fit: contain;
      filter: invert(1);
  margin-left: 10px;
  border-radius: 50%;
}

.card-body {
  text-align: start;
  flex: 1 1 auto;
  margin-left: 8px;
  padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
  color: var(--bs-card-color);
}
.card-title {
  font-size: 1.2rem;
  color: #fff;
}

.card-text {
  color: #ddd;
  font-size: 1rem;
  margin-bottom: 15px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.btn-detail {
  background-color: #ff7a3d;
  color: white;
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 50%;
  position: absolute;
  bottom: 20px;
  right: 20px;
  text-decoration: none;
}

@media (max-width: 992px) {
  .cards-div {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on tablets and smaller */
    gap: 10px;
    margin-top: 10px;
    padding: 15px;
}
}

@media (max-width: 576px) {
  .cards-div {
    grid-template-columns: 1fr; /* 1 card per row on small devices */
    gap: 10px;
    margin-top: 10px;
    padding: 15px;
}

  .card-img-top {
    max-width: 80px;
    height: 80px;
  }
}

@media (max-width: 575.98px) {
  .carousel-item img {
      height: 149px;
  }
}

#despan{
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
}
#detial {
  border-radius: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background: #ffffff;
  color: #000000;
  padding: 8px;
  /* height: 35px; */
  /* width: 35px; */
  font-size: 17px;
  font-weight: 900;
  margin-top: -45px;
  text-decoration: none;
}

.seemore{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.seemore > button {
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 900;  
  background-color: rgb(27, 0, 53);
  border-radius: 20px;
  border: none;
  color: white;
  margin-bottom: 50px;
}

.category-section > h3{
  margin-top: 26px;
  text-align: center;
  font-size: 40px;
  font-weight: 900;
}
/* Style for Filter Icon */
.filter-icon-container {
    display: flex;
    justify-content: start;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: -10px;
}

.filter-toggle-btn {
  background-color: #000000;
  color: rgb(255, 255, 255);
  border: none;
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
}

.filter-toggle-btn i {
    margin-right: 5px;
}

/* Filter Sidebar */
.filter-sidebar {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background-color: white;
    border: 1px solid #717171;
    transition: right 0.3s ease-in-out;
    z-index: 999;
    padding: 20px;
}

.filter-sidebar.open {
    right: 0;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-header h3 {
    margin: 0;
    font-size: 24px;
}

.close-filter-btn {
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.filter-container {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-container label {
    font-weight: bold;
}

.filter-container button,
.filter-container select {
    margin-top: 5px;
    padding: 8px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.filter-container button:hover {
    background-color: #000000;
    color: white;
    cursor: pointer;
}

/* Responsiveness for tablets and below */
@media (max-width: 1024px) {
    .filter-sidebar {
        width: 400px; /* Wider for tablet view */
    }

    .filter-toggle-btn {
        width: auto;
        padding: 12px;
        font-size: 18px; /* Slightly larger font */
    }
}

/* Responsiveness for mobile */
@media (max-width: 768px) {
    .filter-sidebar {
        width: 100%; /* Full width for mobile view */
        right: -100%; /* Start hidden off-screen */
    }

    .filter-sidebar.open {
        right: 0; /* Slide in from the right */
    }

    .filter-toggle-btn {
        width: 100%;
        padding: 12px;
        font-size: 18px;
    }

    .filter-header h3 {
        font-size: 22px;
    }

    .filter-container button,
    .filter-container select {
        font-size: 16px;
        padding: 10px;
    }
}

/* Responsiveness for small mobile (e.g., iPhone SE) */
@media (max-width: 480px) {
    .filter-sidebar {
        padding: 10px; /* Less padding for small screens */
    }

    .filter-header h3 {
        font-size: 20px;
    }

    .close-filter-btn {
        font-size: 20px;
    }

    .filter-container button,
    .filter-container select {
        font-size: 14px;
        padding: 8px;
    }

    .filter-toggle-btn {
        font-size: 16px;
        padding: 10px;
    }
}
.filter-search-row {
  display: flex;
  align-items: center;
  padding: 10px;
}

.search-container {
  flex-grow: 1;
  margin-left: 20px;
  position: relative;
  display: flex;
  justify-content: end;
  align-items: center;

}

#search-bar {
  width: 70%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 30px;
}

#search-results {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

#search-results div {
  padding: 10px;
  cursor: pointer;
}

#search-results div:hover {
  background-color: #f0f0f0;
}

.buynow-section{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
 
}

.buynow-main-div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; 
  min-height: 400px;
  background: #f6f6f6;
    padding: 10px;
}

.buynow-text-div{
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 5px;
}

.buynow-text-div > h1 {
  color: black;
  font-size: 45px;
  font-weight: 900;
  letter-spacing: 2px;
  word-spacing: 1px;
}

.buynow-text-div > h5 {
  color:  #710009;
  font-size: 30px;
  letter-spacing: 1px;
  font-weight: 900;
}

.buynow-text-div > p {
  color: rgb(56, 56, 56);
  font-size: 15px;
  font-weight: 600;
}

.buynow-text-div > button {
  padding: 8px;
  font-size: 18px;
  width: 155px;
  font-weight: 700;
  background-color: #710009;
  color: white;
  border: none;
  border-radius: 15px;
  margin-top: -11px;
}

.buynow-image-div{
  display: flex;
  justify-content: center;
  align-items: center;
}

.buynow-image-div > img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.newsletter {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
  width: 100%;
  /* text-align: center; */
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  gap: 99px;
  align-items: center;
  /* min-height: 100vh; */
  margin-top: 28px;
}

.text-letter{
  display: flex;
  flex-direction: column;
  text-align: start;
  align-items: start;
}

.newsletter > div >h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
  margin-bottom: 15px;
}

.newsletter > div >  h4 {
  font-size: 18px;
  font-weight: 400;
  color: #666;
}

.newsletter > div >  h2 > span {
  font-weight: 700;
  color: #000;
}

.input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
}

.input-container input[type="email"] {
  width: 100%;
  min-width: 375px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px 0 0 8px;
  outline: none;
  font-size: 16px;
}



.input-container button {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}

.input-container button:hover {
  background-color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
  .newsletter h2 {
      font-size: 28px;
  }

  .input-container input[type="email"] {
      width: 70%;
      font-size: 14px;
  }

  .input-container button {
      font-size: 14px;
      padding: 14px;
  }
  .newsletter {
    flex-direction: column;
}
.input-container {
  flex-direction: column;
  margin-top: -83px;
}
.buynow-main-div {
  flex-direction: column-reverse;
}
.input-container input[type="email"] {
  margin-bottom: 10px;
  max-width: 110px;
  min-width: 330px;
}
}

@media (max-width: 500px) {
  .newsletter h2 {
      font-size: 24px;
  }

  .input-container {
    flex-direction: column;
    margin-top: -83px;
}
.newsletter {
  flex-direction: column;
}

.buynow-main-div {
  flex-direction: column-reverse;
}

.input-container input[type="email"] {
  margin-bottom: 10px;
  max-width: 110px;
  min-width: 330px;
}
  .input-container input[type="email"] {
      margin-bottom: 10px;
  }
}