body {
  /* padding-top: 200px; Adjust this value based on your header height */
  background: none;
}

#top, #header-top,.container > nav#menu{
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff; /* Ensure the header has a background */
}

#top {
  z-index: 1002;
  margin: 0px;
  padding: 0px;
  border-top: 5px solid green
}
.green_line {
  background-color: #257025;
  height: 5px;
}

#header-top {
  top: 42px; /* Adjust based on the height of your #top section */
  z-index: 1001;
  margin-bottom: 23px;
}
#cart {
   margin-bottom: 0px;
}
#cart > .btn {

background-color: white;
}
.container > nav#menu {
  top: 140px; /* Adjust based on the combined height of #top and header */
}
/* Add box-shadow for a nice separation effect */


.container > nav#menu {
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.1);
}
.container{
  width: 100%;
}
footer {
  border-top:none;
  background-color: #e2dddde3; /* Ensure the footer has a background */
}
footer a {
  color: #857d7d;
  font-size: 13px;
}
footer p {
  color: #857d7d;
  width: 84%;
  margin: auto;
}
footer hr {
  border-bottom: 1px solid #b8beb8;
}
footer h5 {
 color: #0d0c0c;
 font-size: 15px;
}
footer a img {
  width: 23%;
}

.review-text {
  font-size: 13px;
}


/* Vertical dropdown menu */

/* Vertical menu header */


/* Vertical menu list */


/* Dropdown icon */
.dropdown-icon {
  float: right;
  margin-top: 3px;
}

.cart-header {
  width: 25%;
}

/* Vertical submenu */

/* Show submenu on hover */




/* Divider in dropdown */


/* See all link */


/* For mobile devices */
@media (max-width: 767px) {
 

  .dropdown-icon {
    transform: rotate(90deg);
  }
  

}


.child li {
  color: rgb(3, 3, 3); /* Change this to any color you want */
}

@media screen and (max-width: 767px) {
  #header-top {
    margin-bottom: 35px;
  }
  #category_btn{
    top: 201px;
    left:17px;
  }
  .cart-header {
     width: 30% !important;
  }
}


@media screen and (max-width: 667px) {
  .cart-header {
     width: 50% !important;
  }
}
@media screen and (max-width: 539px) {
  #header-top {
    margin-bottom: 35px;
  }
  #dropdown-btn{
    top: 199px;
  }
}


@media screen and (max-width: 354px) {
  #header-top {
    top: 75px;
  }
  #category_btn{
    top: 235px;
  }
  .cart-header {
    width: 100% !important;
 }
}
@media screen and (max-width: 300px) {
  #category_btn{
    top: 255px;
  }
  #header-top {
    top: 95px;
  }
}

@media screen and (max-width: 274px) {
  #dropdown-btn{
    top: 198px;
  }
}

/* newwwwww */

.navbar {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
}
/* Main dropdown button */
.dropdown-btn {
  background-color: #acafac;
  color: white;
  padding: 8px 8px;
  font-size: 13px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.dropdown-btn:hover {
  background-color: #5a5c5a;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Main dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top:0px;
  background-color: #f9f9f9;
  min-width: 376px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1000;
  border-radius: 4px;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Category styles */
.category_header {
  position: relative;
}
.category-link {
  color: #333;
  padding: 3px 0px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.2s;
  font-size: 14px;
}

.category-link:hover {
  background-color: #f1f1f1;
}

/* Subcategory container */
.subcategory-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #f9f9f9;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1001;
  border-radius: 4px;
}

/* Show subcategory on hover */
.category_header:hover .subcategory-content {
  display: block;
}

/* Subcategory styles */
.subcategory {
  position: relative;
}

.subcategory-link {
  color: #333;
  padding: 12px 8px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.2s;
  font-size: 13px;
}

.subcategory-link:hover {
  background-color: #f1f1f1;
}

/* Child category container */
.child-category-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #f9f9f9;
  min-width: 250px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1002;
  border-radius: 4px;
}

/* Show child category on hover */
.subcategory:hover .child-category-content {
  display: block;
}

/* Child category links */
.child-category-content a {
  color: #333;
  padding: 12px 8px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #ddd;
  transition: background-color 0.2s;
  font-size: 13px;
}

.child-category-content a:hover {
  background-color: #f1f1f1;
}

/* Remove bottom border from last items */
.category_header:last-child .category-link,
.subcategory:last-child .subcategory-link,
.child-category-content a:last-child {
  border-bottom: none;
}
.dropdown-btn {
position: fixed;
top: 98px;
left: 16px;
z-index: 1000;
}
/* Add background image to icons span */

/* background-image: url('http://192.168.15.72/oc_mantutirgus/image/catalog/webkul/67.png'); */
/* background: url(...image/webkul/67.png) */
span.icons-67 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/67.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-69 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/69.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-60 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/60.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-64 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/64.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-62 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/62_174.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-60 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/114.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-68 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/209.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-63 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/167.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-65 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/91.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-61 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/61.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-62 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/60.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-59 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/109.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-71 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/214.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-191 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/191.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}
span.icons-70 {
  display:block;
  width: 30px; /* Set width of your icon */
  height: 30px; /* Set height of your icon */
  background-image: url('../../../../../../image/catalog/webkul/191.png'); /* Path to your image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
  margin-right: 5px;
}

.rating {
  padding: 0px 3px 0px 3px;
}
.footer_row {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 667px) {
  .footer_row{
    flex-direction: column;
  }
  footer p {
    width: 100%;
  }
}


@media screen and (max-width: 767px) {
.dropdown-menu.pull-right {
  right:unset;
  left: unset;
  }
}

@media screen and (max-width: 478px) {
  #cart .dropdown-menu {
     width: unset;
  }
}

#logo {
  margin: 0px !important;
}

@media screen and (max-width: 767px) {
  .dropdown-content {
      top: 18px;
  }
}