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

body {
  font-family: Arial, sans-serif;
  padding-top: 90px; /* Fixed header এর জন্য */
}

/* ===== Header ===== */
header.NavbarA {
  background-color: #080808;
  padding: 15px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.anitamart-header_logo {
  display: flex;
  align-items: center;
  color: black;
}

.anitamart-header_logo img {
  height: 60px;
  margin-right: 10px;
}

.anitamart-header_logo h4 {
  font-size: 24px;
  color: white;
}

/* ===== Search ===== */
.anitamart-search_container {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: white;
}

.anitamart-search_container input {
  width: 320px;
  border: none;
  outline: none;
  margin-left: 8px;
}

/* ===== Nav Menu ===== */
.nav-list {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-list li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-list li a:hover {
  color: red;
}

.cart-count {
  background-color: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 12px;
  margin-left: 5px;
}

/* ===== Under Nav ===== */
.navbar-navUnder {
  display: flex;
  justify-content: space-around;
  list-style: none;
  height: 30px;
  padding-top: 6px;
  background-color: #e9e8e3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 998;
}

.navbar-navUnder .nav-link {
  text-decoration: none;
  color: black;
  padding: 0 15px;
}

/* ===== Footer ===== */
.nav-listFooter {

  justify-content: space-between;
  list-style: none;
  background-color: #070707;
  padding: 10px 20px;
  position: fixed;
  bottom: -10px;
  left: 0;
  width: 100%;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  z-index: 997;
  width:1000vh;
  max-width: 100%;
  display:none;
  height: 100px;
}

/* ===== Toggler ===== */
/* .navbar-toggler {
  display: none;
  background-color: transparent;
  font-size: 24px;
  border: none;
  color: white;
  cursor: pointer;
} */

.navbar-navUnderuu {
  display: flex;
  background-color: aqua;
  padding-top: 2px;
  padding-bottom: 2px;
  margin-top: 9px; /* Fixed header এর নিচে দেখানোর জন্য */
  list-style: none;
  text-decoration: none;
  justify-content: space-between;
  position:fixed;
  width:1000vh;
  max-width: 100%;
  height:30px;
}

.filterLeft{
   width:100%;
    margin-top: -210px;
    height:150px;

}


#carouselFirst{
    margin-right: 95px;
     margin-left: 95px;

}

.filterPart{
    display: flex;
    flex-direction: column;
    gap: 10px;
     max-width: 300px;


}


.product_listShow{
    display:flex;
     margin-left: 104px;
     margin-top: 24px;
}


/* #categoryFilter{
width: 140px; font-size: 14px; padding: 6px;
}

#colorFilter{
width: 140px; font-size: 14px; padding: 6px;
}


#sizeFilter{
width: 140px; font-size: 14px; padding: 6px;
} */

.filter-select {
        font-size: 14px;
        padding: 6px;
        width: 140px;
    }


.filter-box{
    display: flex; flex-direction: column; gap: 10px; max-width: 300px; width: 100%;
}

.welcome img{
    display:none;
}




/* for feature  */
.product-img2 {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    /* object-fit: contain; ইমেজ ক্রপ হবে না */
}

.product-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0,0,0,0.1);
}
/* ready for order and top brand */
.product-card {
    border: 1px solid #A3FF4D;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

    /* Fix owl stage padding for 20px left/right outside */

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .anitamart-header_logo {
    margin-right: 0;
    width: 100%;
  }

  .anitamart-header_logo img {
    margin-top: -7px;
  }

  .anitamart-search_container input {
    width: 100%;
    margin-left: 10px;
  }

  .anitamart-header_logo h4 {
    display: none;
  }

  /* Navbar toggler visible & styled */
  .navbar-toggler {
    display: block;
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 24px;
    border: 2px solid black;
    color: rgb(209, 10, 10);
    padding: 5px 10px;
    border-radius: 4px;
    background-color: transparent;
    z-index: 1000;
  }

  /* Nav-list dropdown on toggle */
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }

  .nav-list.show {
    display: flex;
  }

  .nav-list li {
    padding: 10px 0;
  }

  /* Under nav collapsible */


  .navbar-navUnder.show {
    display: flex;
  }

  /* Footer stacked */
  .nav-listFooter {
    flex-direction:row;
    align-items: center;
    padding: 15px;
    display:flex;
  }

  .navbar-navUnderuu{
    display:none;
    height:auto;
  }

 .filter-box select {
   width: 125px !important;

    font-size: 12px;
  }


  .filter-box  {
   width: 125px !important;

    font-size: 12px;
  }

filterLeft {
    margin-left: 135px;
    margin-top: -190px;
    height: auto;
    height:140px;
    overflow:hidden;
  }

  #carouselFirst{
    margin-right: 10px;
}



.product_listShow{
    display:flex;
     margin-left: 10px;
     margin-top: 24px;
}

#carouselFirst{
    display:none;
}

.filterPart{
    display: flex;
    flex-direction:column;
margin-left: 6px;
margin-right: 6px;
    width:100%;



}


.form-select filter-select{
    width:800px;
}

#categoryFilter option input{
    width:600px;
}

/* .welcome img{
    width: 100px;height:150px; margin-left:100px;
    display:block;
} */

}






