
 
*{
  margin: 0px;
  padding: 0px;
  font-family: poppins;
  box-sizing: border-box;
}
.navbar {
  background-color: #76dd79;
  padding: 10px 0;
}
.navbar-brand {
  color: #fff !important;
  font-weight: bold;
  padding: 0;
}
.navbar-icons {
  display: flex;
  gap: 15px;  /* Space between the icons */
  align-items: center;  /* Align the icons vertically in the center */
}

.navbar-icons i {
  color: green;  /* Set the color of the icons to green */
  font-size: 24px;  /* Optional: adjust the size of the icons */
}

.navbar-nav {
  flex: 1;
  justify-content: flex-start;
}
.search-container {
  display: flex;
  align-items: center;
  position: relative;
}
input#search {
  padding: 10px 15px;
  width: 850px;
  max-width: 900px;
  margin-left: 20px;
  border-radius: 5px;
  border: 2px solid #ddd;
  outline: none;
}
input#search:focus {
  border-color: #2e8b57;
}
.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #2e8b57;
  font-size: 18px;
  cursor: pointer;
}
.drop {
  position: absolute;
  top: 90px;
  left: 0;
  margin-left: 145px;
  width: 850px;
  background: white;
  color: black;
  margin-top: 5px;
  border-radius: 5px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  overflow-y: auto;
  max-height: 200px;
}
.drop li {
  font-size: 14px;
  padding: 10px;
  list-style: none;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
.drop li:last-child {
  border-bottom: none;
}
.drop li:hover {
  background-color: #f0f0f0;
}
.results {
  margin-top: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.results p {
  background: white;
  color: black;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
  width: 100%;
  max-width: 700px;
}
.navbar-upper-line {
  background-color: #f1f1f1;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-upper-line .contact-info span {
  margin-right: 15px;
  color: #333;
}
.navbar-upper-line .social-links a {
  margin-left: 10px;
  color: #4CAF50;
  text-decoration: none;
}
.navbar-upper-line .social-links a:hover {
  text-decoration: underline;
}
.navbar .navbar-icons {
  margin-right: 50px;
}
.navbar-icons a {
  margin-left: 20px;
  color: #fff;
  font-size: 20px;
}
.navbar-icons a:hover {
  color: #ddd;
}
.second-navbar {
  background-color: green;
  padding: 10px 0;
}
.second-navbar .nav-link {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
}
.second-navbar .nav-link:hover {
  background-color: #4CAF50;
  border-radius: 5px;
}
.img-small {
  width: 60px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
}
.img-small:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.carousel {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.carousel-inner {
  position: relative; /* Keep carousel items in the normal document flow */
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.carousel-control-prev {
  left: 5px;
}
.carousel-control-next {
  right: 5px;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  font-size: 12px;
  width: 16px;
  height: 16px;
}
/* Description card styled and positioned below carousel */
.description-container {
  display: none; /* Initially hidden */
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  margin-top: 15px;
  z-index: 1050;
  border-radius: 10px;
}

::selection{
    color: #ffffff;
    background-color: #252525;
}

.image-container-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.image-container-1:hover img {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.center-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: rgb(0, 0, 0);
  background-color: white;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 18px;
  padding: 10px;
  width: 80%;
  text-align: center;
}
.image-container-1:hover .center-box {
  opacity: 0.3; 
}
.image-container-1 {
  position: relative;
  overflow: hidden;
  max-width: 200px;
  height: 200px; 
  margin: 0 auto;
  cursor: pointer;
}

.image-container-1 img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 1.1s ease; 
}
.image-container-1:hover img {
  transform: scale(1.1); 
}


          .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .product {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 products per row */
    gap: 30px; /* Space between products */
    margin: 0 auto; /* Center the grid */
    width: 100%; /* Full width of the container */
}

.product__list {
    position: relative;
    box-shadow: 0 0 3px 0 var(--dark2);
    background: var(--light2);
    border-radius: 0; /* No border radius */
    overflow: hidden;
    transition: var(--transition250);
    box-sizing: border-box;
    padding: 15px; /* Reduced padding to decrease height */
    display: flex;
    flex-direction: column;
    height: auto; /* Adjust height automatically */
    width: 100%; /* Ensures the product takes full width of its grid column */
}

.product__list:hover {
    box-shadow: 0 0 25px 0 var(--green);
}

.product__img {
    margin: 10px 0; /* Space around the image */
    width: 100%; /* Full width of the card */
    height: 300px; /* Reduced height for a shorter card */
    object-fit: cover; /* Ensures image covers the space */
    cursor: pointer;
    transition: var(--transition250);
    box-sizing: border-box;
}

.product__info {
    text-align: center;
    padding: 10px; /* Reduced padding for a compact layout */
}

.product__title {
    font-size: 1.2rem;
    font-weight: bold;
}

.real-price {
    font-size: 1rem;
    color: var(--dark2);
    text-decoration: line-through;
}

.discounted-price {
    font-size: 1.2rem;
    color: var(--green);
}

.save {
    font-size: 1rem;
    color: var(--red);
}

.product__rating {
    margin-top: 5px; /* Reduced margin */
}

.product__viewBtn {
    cursor: pointer;
    position: absolute;
    bottom: 10%;
    background: var(--dark2);
    color: var(--light2);
    padding: 10px 20px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition250);
    border-radius: 4px;
}

.product__viewBtn:hover {
    color: var(--dark2);
    background: var(--light2);
}


        /* Modal Styling */
        .modal__content {
            display: flex;
            width: 70%;
            max-width: 1000px;
            height: auto;
            background-color: var(--light2);
            visibility: hidden;
            opacity: 0;
            transform: translateY(-100px);
            transition: var(--transition250);
            position: absolute;
            top: 10%;
            left: 50%;
            transform: translateX(-50%) translateY(-100px);
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 0 25px rgba(0,0,0,0.2);
        }

        .modal__left {
            flex: 1;
            padding: 20px;
        }

        .modal__left img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .modal__right {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .detail__title,
        .detail__description {
            text-transform: uppercase;
        }

        .detail__price {
            font-weight: bold;
        }

        .detail__bagBtn, .detail__buyNowBtn {
            cursor: pointer;
            background: var(--dark2);
            color: var(--light2);
            text-align: center;
            padding: 10px 20px;
            font-weight: bold;
            text-transform: uppercase;
            transition: var(--transition250);
            margin-top: 20px;
            border-radius: 5px;
        }

        .detail__bagBtn:hover, .detail__buyNowBtn:hover {
            color: var(--green);
        }

        .quantity-section {
            margin-top: 20px;
            display: flex;
            align-items: center;
        }

        .quantity-section input {
            width: 50px;
            padding: 5px;
            margin-right: 10px;
        }

        .stock-status {
            font-size: 1rem;
            font-weight: bold;
        }

        .similar-products {
            margin-top: 30px;
        }

        .similar-products h3 {
            margin-bottom: 20px;
        }

        .similar-product {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            cursor: pointer;
        }

        .similar-product img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            margin-right: 10px;
        }

        .reviews {
            margin-top: 20px;
        }

        .reviews h5 {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .review {
            margin-bottom: 15px;
        }

        .review p {
            margin: 5px 0;
        }

        .review strong {
            color: #28a745;
        }

        .social {
            position: fixed;
            bottom: 20px;
            left: 20px;
            display: flex;
            gap: 10px;
        }

        .social__icon {
            font-size: 24px;
            color: var(--dark2);
            transition: var(--transition250);
        }

        .social__icon:hover {
            color: var(--green);
        }
        .title {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .is-hidden {
            display: none;
        }

        .tabs {
            display: flex;
            gap: 10px;
        }

        .tabs button {
            padding: 10px;
            background-color: #f0f0f0;
            border: 1px solid #ddd;
            cursor: pointer;
            transition: 0.3s ease;
            font-weight: bold;
        }

        .tabs button.active {
            background-color: #28a745;
            color: white;
            border-color: #28a745;
        }

        .tabs button:hover {
            background-color: #ddd;
        }

        .px-2 {
            padding: 20px;
        }



.view-more-btn{
  background-color: #3d3d3d;
  color: #999999;
}
.view-more-btn:hover {
  background-color: #363434;
  text-decoration:underline;
}

.button-container {
  position: relative;
}

.shiny-button {
  display: inline-block;
  padding: 15px 30px;
  color: white;
  background-color: rgb(78, 189, 35);
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  margin-left: 43%;
  margin-right: 40%;
}

.shiny-button::after {
  content: '';
  position: absolute;
  width: 300%; 
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(51, 214, 59, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  left: -100%;
  top: 0;
  transition: left 0.6s ease;
}

.shiny-button:hover::after {
  left: 100%; 
}

.shiny-button:hover {
  color: black;
}
:root {
  --dark2: #333;
  --light2: #f9f9f9;
  --green: #28a745;
  --red: #dc3545;
  --transition250: 0.25s ease-in-out;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.product {
display: grid;
grid-template-columns: repeat(4, 1fr); /* 4 products per row */
gap: 30px; /* Space between products */
margin: 0 auto; /* Center the grid */
width: 100%; /* Full width of the container */
}

.product__list {
position: relative;
box-shadow: 0 0 3px 0 var(--dark2);
background: var(--light2);
border-radius: 0; /* No border radius */
overflow: hidden;
transition: var(--transition250);
box-sizing: border-box;
padding: 15px; /* Reduced padding to decrease height */
display: flex;
flex-direction: column;
height: auto; /* Adjust height automatically */
width: 100%; /* Ensures the product takes full width of its grid column */
}

.product__list:hover {
box-shadow: 0 0 25px 0 var(--green);
}

.product__img {
margin: 10px 0; /* Space around the image */
width: 100%; /* Full width of the card */
height: 300px; /* Reduced height for a shorter card */
object-fit: cover; /* Ensures image covers the space */
cursor: pointer;
transition: var(--transition250);
box-sizing: border-box;
}

.product__info {
text-align: center;
padding: 10px; /* Reduced padding for a compact layout */
}

.product__title {
font-size: 1.2rem;
font-weight: bold;
}

.real-price {
font-size: 1rem;
color: var(--dark2);
text-decoration: line-through;
}

.discounted-price {
font-size: 1.2rem;
color: var(--green);
}

.save {
font-size: 1rem;
color: var(--red);
}

.product__rating {
margin-top: 5px; /* Reduced margin */
}

.product__viewBtn {
cursor: pointer;
position: absolute;
bottom: 10%;
background: var(--dark2);
color: var(--light2);
padding: 10px 20px;
font-weight: bold;
text-align: center;
text-transform: uppercase;
opacity: 0;
visibility: hidden;
transition: var(--transition250);
border-radius: 4px;
}

.product__viewBtn:hover {
color: var(--dark2);
background: var(--light2);
}


/* Modal Styling */
.modal__content {
  display: flex;
  width: 70%;
  max-width: 1000px;
  height: auto;
  background-color: var(--light2);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100px);
  transition: var(--transition250);
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(0,0,0,0.2);
  position: sticky;
}

.modal__left {
  flex: 1;
  padding: 20px;
}

.modal__left img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.modal__right {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.detail__title,
.detail__description {
  text-transform: uppercase;
}

.detail__price {
  font-weight: bold;
}

.detail__bagBtn, .detail__buyNowBtn {
  cursor: pointer;
  background: var(--dark2);
  color: var(--light2);
  text-align: center;
  padding: 10px 20px;
  font-weight: bold;
  text-transform: uppercase;
  transition: var(--transition250);
  margin-top: 20px;
  border-radius: 5px;
}

.detail__bagBtn:hover, .detail__buyNowBtn:hover {
  color: var(--green);
}

.quantity-section {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

.quantity-section input {
  width: 50px;
  padding: 5px;
  margin-right: 10px;
}

.stock-status {
  font-size: 1rem;
  font-weight: bold;
}

.similar-products {
  margin-top: 30px;
}

.similar-products h3 {
  margin-bottom: 20px;
}

.similar-product {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
}

.similar-product img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 10px;
}

.reviews {
  margin-top: 20px;
}

.reviews h5 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.review {
  margin-bottom: 15px;
}

.review p {
  margin: 5px 0;
}

.review strong {
  color: #28a745;
}

.social {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 10px;
}

.social__icon {
  font-size: 24px;
  color: var(--dark2);
  transition: var(--transition250);
}

.social__icon:hover {
  color: var(--green);
}
.title {
  font-size: 1.5rem;
  font-weight: bold;
}

.is-hidden {
  display: none;
}

.tabs {
  display: flex;
  gap: 10px;
}

.tabs button {
  padding: 10px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: bold;
}

.tabs button.active {
  background-color: #28a745;
  color: white;
  border-color: #28a745;
}

.tabs button:hover {
  background-color: #ddd;
}

.px-2 {
  padding: 20px;
}

.category-container {
  margin-top: 50px;
  text-align: center;
}

.carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 0 15px;
  padding: 15px 0;
}

.category-item {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  cursor: pointer;
  max-width: 220px;
  width: 100%;
}

.category-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.category-item p {
  font-size: 1rem;
  padding: 10px;
  font-weight: bold;
  color: #333;
}

.category-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.category-item:active {
  transform: scale(1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (min-width: 1200px) {
  .category-item {
    max-width: 220px; /* 6 items per row on desktop */
  }
}

@media (max-width: 992px) {
  .category-item {
    max-width: 200px; /* 6 items per row on large tablets */
  }
}

@media (max-width: 768px) {
  .category-item {
    max-width: 45%; /* 2 items per row on mobile */
  }
}

@media (max-width: 576px) {
  .category-item {
    max-width: 45%; /* 2 items per row on small mobile */
  }
}

   /* Green Box for Section Titles */
    .green-box {
      background-color: green;
      padding: 20px;
      color: white;
      margin: 0; /* Remove space between boxes */
      border-radius: 0; /* Remove border-radius to make boxes join */
    }

    h2 {
      text-align: center;
      color: #333;
      margin-bottom: 30px;
    }

    .section-title {
      text-align: center;
      font-size: 24px;
      margin-bottom: 20px;
      color: white; /* White text for the section titles */
      font-weight: bold;
    }

    /* List Layout */
    .product-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      margin: 0;
      padding: 0;
      list-style-type: none;
    }

    .product-list li {
      background-color: transparent;
      font-size: 16px;
      color: white; /* White text for the product names */
      width: calc(20% - 20px); /* 5 items per row */
      text-align: center;
      padding: 10px;
      margin: 10px;
    }

    .product-list li:hover {
      cursor: pointer;
      color: #ffeb3b; /* Hover effect to change text color */
    }

    /* Responsive Design */
    @media screen and (max-width: 768px) {
      .product-list li {
        width: calc(33.333% - 20px); /* 3 items per row for medium screens */
      }
    }

    @media screen and (max-width: 480px) {
      .product-list li {
        width: 100%; /* 1 item per row for small screens */
      }
    }
            /* Container to hold the products */
            .container {
              padding: 20px;
          }
  
          /* Grid for the products, displaying 4 cards per row */
          .product {
              display: grid;
              grid-template-columns: repeat(4, 1fr); /* 4 cards in one row */
              gap: 20px; /* Space between cards */
              justify-items: center;
          }
  
          /* Card Styling */
          .product__list {
              display: none;
              width: 100%; /* Full width within the grid column */
              max-width: 250px; /* Set a max width to keep the cards uniform */
              margin: 0;
              border: 1px solid #ddd;
              padding: 10px;
              box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
              transition: transform 0.3s;
          }
  
          /* Hover effect for cards */
          .product__list:hover {
              transform: scale(1.05);
          }
  
          /* Product image styling */
          .product__img {
              width: 100%;
              height: auto;
              object-fit: cover;
          }
  
          /* Product info styling */
          .product__info {
              padding-top: 10px;
          }
  
          .product__title {
              font-size: 1.1em;
              font-weight: bold;
          }
  
          /* Price styling */
          .real-price {
              font-size: 1.2em;
              text-decoration: line-through;
              color: #999;
          }
  
          .discounted-price {
              font-size: 1.2em;
              color: #e74c3c;
          }
  
          .save {
              font-size: 0.9em;
          }
  
          /* Rating stars */
          .product__rating i {
              color: orange;
          }
  
          /* Load More Button Styling */
          .button-container {
              text-align: center;
              margin-top: 20px;
          }
  
   



.category-container {
  width: 90%;
  margin: 30px auto;
  max-width: 1200px;
}



.carousel {
  display: grid;
  grid-template-rows: repeat(3, auto); /* Exactly 3 rows */
}

.carousel-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 items per row */
}

.category-item {
  background: #fff;
  border: 1px solid #ddd;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.category-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
  margin-top: 20px;
}

.category-item p {
  margin: 0;
  font-size: 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.arrow {
  background-color: #5c5c5c;
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 10px;
}

.arrow:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}













.footer {
  background-color: #4CAF50; /* Light green */
  color: #333;
  padding: 40px 0;
}
.footer-brand {
    color: #fff !important;
    font-weight: bold;
    padding: 0;
  }
/* Heading color */
.text-green {
  color: #ffffff; /* Green */
}

/* Light green text color */
.text-light-green {
  color: #ffffff; /* Light green */
}

/* Social media icons */
.social-icons a {
  color: #81C784; /* Light green */
  margin: 0 10px;
  font-size: 24px;
}

.social-icons a:hover {
  color: #4CAF50; /* Darker green on hover */
}

/* Button styling for subscribe */
.btn-light-green {
  background-color: #81C784; /* Light green */
  border: none;
  color: white;
}

.btn-light-green:hover {
  background-color: #4CAF50; /* Darker green on hover */
}

/* Styling for footer links */
.list-unstyled {
  text-decoration: none;
}

.list-unstyled:hover {
  color: #bfe7c0; /* Darker green on hover */
}



/* Adjustments for the mobile view */
@media (max-width: 768px) {
  .footer {
      padding: 30px 15px;
  }
}


