/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  /* background: #545454;
  padding: 10px 0; */
  font-size: 14px;

  padding: 0px 0px 5px 0px; 
}

#topbar .contact-info i {
  font-style: normal;
  /* color: #e96b56; */
  color: #e96b56;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;
  /*color: #fff; */
  color: #000;
}

#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #e96b56;
}

#topbar .social-links a {
  color: #bababa;
  line-height: 0;
  transition: 0.3s;
  margin-left: 10px;
}

#topbar .social-links a:hover {
  color: white;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 95px; /* 70px;*/
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.sticky-header{
  position: fixed;
    top: 0;
    left: 0;
  width:100%;
  -webkit-transition: position 10s;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: position 10s;
}
.sticky-main{
  margin-top: 120px; 
}





#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 75px; /* 40px*/
}


.cart-desk{display:inline!important;}
.cart-mobile{display:none!important;}
.search_button_name{padding-left:15px;}

@media (max-width: 991px) {
  #header {
    height: 110px;
  }
  #header .logo img {
    padding: 0;
    margin: 0;
    max-height: 45px; /* 40px*/
    padding-bottom: 5px;
  }

  #topbar{display:none!important;}
  .cart-desk{display:none!important;}
  .cart-mobile{display:inline!important;}
  .search_button_name{display:none;}
}

/*
#header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  border-left: 8px solid #e96b56;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #545454;
  text-decoration: none;
} */
/*
.scrolled-offset {
  margin-top: 70px;
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
 
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #545454;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #e96b56;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #e96b56;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #ec7f6d;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #545454;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #e96b56;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #545454;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(59, 59, 59, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #545454;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #e96b56;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #e96b56;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}





/*--------------------------------------------------------------
# Search Bar UPDATED
--------------------------------------------------------------*/

.navbar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

@media (max-width: 991px) {
  
  .navbar .search-form {
    padding-top:5px;
  }
}

.navbar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.navbar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #e96b56;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.navbar .search-form form button i {
  line-height: 0;
}

.navbar .search-form form button:hover {
  background: #eb7b68;
}




#search-list-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  /* width: 40%; */
  /* width: 58%; */
  width: 53%;
  margin: auto;
  background-color: white;
  /* padding: 20px; */
  padding: 5px;
  /* margin: -40px 0 0 330px; */
  margin: -35px 0 0 403px; 
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  gap: 10px;
  /* border-radius: 20px; */
  cursor: pointer;
  display: none;
  z-index: 10005;
  max-height: 250px;
  /* Target the specific container or use 'html' / 'body' for the whole page */
  overflow-y: auto; /* Enable vertical scrolling */ 
  /* 1. W3C Standard Properties (Firefox & Modern Browsers) */
  scrollbar-width: thin;          /* Options: auto | thin | none */
  scrollbar-color: #888888 #f1f1f1; /* Formatted as: [Thumb Color] [Track Color] */
}
/* 2. WebKit Pseudo-Elements (Chrome, Safari, Edge, Opera) */
#search-list-container::-webkit-scrollbar {
  width: 8px;   /* Width of the vertical scrollbar */
  height: 8px;  /* Height of the horizontal scrollbar */
}
#search-list-container::-webkit-scrollbar-track {
  background: #f1f1f1; /* Color of the scrollbar track (background) */
  border-radius: 4px;
}
#search-list-container::-webkit-scrollbar-thumb {
  background: #888888; /* Color of the draggable scroll handle */
  border-radius: 4px;   /* Rounded corners for a modern aesthetic */
}
#search-list-container::-webkit-scrollbar-thumb:hover {
  background: #555555; /* Changes color when hovered */
}



@media screen and (max-width: 1200px) {
  #search-list-container {
    margin: -60px 0 0 430px;
  }
}

@media screen and (max-width: 1060px) {
  #search-list-container {
    margin: -65px 0 0 350px;
  }
}

@media screen and (max-width: 800px) {
  #search-list-container {
    margin: -65px 0 0 250px;
    width: 60%;
  }
}

@media screen and (max-width: 667px) {
  #search-list-container {
    margin: -25px 0 0 50px;
    width: 80%;
  }
}

@media screen and (max-width: 500px) {
  #search-list-container {
    margin: -25px 0 0 10px;
    width: 95%;
  }
}

#search-list-container .list-group{
  display: block; 
  position: relative; 
  z-index: 1
}
#search-list-container .list-group-item .img{
  width:100%;
}
#search-list-container .list-group-item .name{
  font-size:10px;
}
#search-list-container .list-group-item .sub_name{
  font-size:10px;
}



/*--------------------------------------------------------------
# Fixed WhatsApp UPDATED
--------------------------------------------------------------*/

  /* Container styling and viewport anchoring */
  .whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Official WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Keeps button on top of all other elements */
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
  }
  /* Icon dimensions and fill color */
  .whatsapp-icon {
    /*width: 36px;
    height: 36px;
    fill: #FFFFFF; */
    color: #FFFFFF;
  }
  /* Micro-interaction layout changes on hover */
  .whatsapp-btn:hover {
    background-color: #128C7E; /* Darker WhatsApp shade */
    transform: scale(1.1); /* Subtle zoom effect */
  }
  /* Ensure responsiveness on smaller mobile viewports */
  @media (max-width: 480px) {
    .whatsapp-btn {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
    }
    .whatsapp-icon {
    /*width: 28px;
    height: 28px; */
    }
  }


  
  /* Container styling and viewport anchoring */
  .phone-btn {
    position: fixed;
    bottom: 90px; /*24px;*/
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: #007BFF; /* Official WhatsApp Green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Keeps button on top of all other elements */
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
  }
  /* Icon dimensions and fill color */
  .phone-icon {
    /* width: 36px;
    height: 36px;
    fill: #FFFFFF; */
    color: #FFFFFF;
  }
  /* Micro-interaction layout changes on hover */
  .phone-btn:hover {
    background-color: #128C7E; /* Darker WhatsApp shade */
    transform: scale(1.1); /* Subtle zoom effect */
  }
  /* Ensure responsiveness on smaller mobile viewports */
  @media (max-width: 480px) {
    .phone-btn {
    bottom: 70px; /*16px;*/
    right: 16px;
    width: 50px;
    height: 50px;
    }
    .phone-icon {
    /*width: 28px;
    height: 28px; */
    }
  }


  


  /* The container wrapping the icon and the badge */
  .cart-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  /* Adjusting the size and color of the SVG icon */
  .cart-icon {
    width: 32px;
    height: 32px;
    fill: #333333;
    display: block;
  }

  /* The floating counter badge */
  .cart-counter {
    position: absolute;
    top: -6px;                  /* Nudges the badge upward */
    right: -8px;                /* Nudges the badge to the right */
    background-color: #e96b56;  /* Noticeable high-contrast red alert color */
    color: #ffffff;             /* Crisp white text color */
    font-family: sans-serif;
    font-size: 11px;
    font-weight: bold;
    
    /* Dimensions and perfect centering */
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Creates a perfect circle (or pill shape for 2+ digits) */
    border-radius: 50%;
    box-sizing: border-box;
  }



