@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Exo+2:ital,wght@0,100..900;1,100..900&family=Gajraj+One&family=Inter:wght@400;600;700&family=Kumbh+Sans:wght@100..900&family=Lato:wght@400;700;900&family=Lexend+Deca:wght@300&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans&family=Oswald:wght@400;500&family=Poppins:wght@400;600&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,400;0,500;0,700;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jaini+Purva&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
    /* font-family: "Montserrat", sans-serif; */

}
html,
body {
    overflow-x: hidden;
    /* Prevent horizontal overflow */
}
body {
    background-color: #F0F7ED;
}
.navbar {
    position: fixed;
    top: 0;
   
    left: 0;
    z-index: 1000;
    background: #e9f5e4;
    width: 100%;
    height: auto;
}
.navbar-nav {
    margin-left: 25%;
    font-family: "Poppins", sans-serif;
    color: #8AA192;
}
.nav-link {
    color: #748D7E;
    font-weight: 400;
    margin-right: 20px;
}
.logo {
    color: #486757;
    font-weight: bold;
}
#navbarSupportedContent .nav-link:hover {
    background-color: #315343;
    color: #F0F7ED;
    /* border-bottom: 2px solid #315343; */
    border-radius: 10px;
    box-shadow: 4px 5px 4px #8AA192;
}
.header-icons i {
    color: #315343;
    margin: 25px 15px;
}
.indoor li,
.indoor a,
.outdoor li,
.outdoor a {
    list-style: none;
    text-decoration: none;
    color: black;
}
#drop-downIcon{
  display: none;
}
.row {
    margin: 15px;
    padding: 10px;
}
.categorycontainer {
    margin-top: 15%;

}
.buy-now,
.add-to-card {
    background-color: #315343;
    color: white;
}
.buy-now:hover {
    background-color: #486757;
    color: white;
}
.buttons-shop {
    justify-content: space-between;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
.plant-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.plant-item {
    margin: 15px 0;
}
.card-img-top:hover{
   filter: brightness(70%);
    
}
.text-bg-dark{
    background-color: #29de81 !important;
    color: white !important;
}
.text-bg-info{
    color: white !important;
}
.text-bg-danger{
    background-color: rgb(84, 13, 13) !important;
    color: white !important;
}
.card:hover {
    cursor: pointer;
}
.aside-container {
    position: relative;
   
}
.aside-container aside {
    position: fixed;
    top: -10%;
    bottom:10%;
    left: 15px;
 
}

.pagination{
    align-items: end;
}
footer a{
    text-decoration: none;
    color: white;
   
}
@media (min-width:990px) {
    .navbar {
        height: 70px;
    }
}
@media (min-width:375px) and (max-width:1000px) {
  .aside-container aside{
    display: flex;
    justify-content: center;
    position: fixed;
    top: -7%;
    left: 0;
   transform: translate(2%,95%);
   background-color: #F0F7ED;
   width: 100%;
   height: 60px;
   display:none;
    z-index: 300000000;
  } 
  .aside-container ul{
    display: flex;
  }
  #drop-downIcon{
    display: block;
  } 
  .aside-container a{
    display: none;
  }  
  .aside-container h5{
    font-size: 14px;
  }
  #drop-downIcon{
   margin-left: -5px;
  }
}
@media (max-width:1001) {
    .aside-container li{
        display: block;
    }
}