/* Header */
:root {
  --primary-color: #183d4c;
  --secondary-color: #4a4a4a;
  --light-color: #ffffff;
  --footer-color: #d7ecea;
  --dark-color: white;
  --gray-color: #f5f5f5;
  --brown-color: #8b5a2b;
  --beige-color: #dce9f5;
  --transition: all 0.3s ease;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--secondary-color);
  overflow-x: hidden;
  margin: 0;
}

/*  */
.toast-icon {
  font-size: 22px;
  vertical-align: middle;
  margin-right: 10px;
}

.toast {
  visibility: hidden;
  min-width: 250px;
  background: #28a745;
  color: #fff;
  text-align: center;
  border-radius: 4px;
  padding: 16px;
  position: fixed;
  z-index: 9999;
  top: 84px;
  right: 30px;
  left: auto;
  margin-left: 0;
  font-size: 17px;
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}

/*  */
header {
  background-color: var(--light-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0px !important;
}

.navbar-container {
  justify-content: space-around;
  align-items: center;
  padding: 1px !important;
  display: flex;
  width: auto;
  /*    padding: 21px;*/
  padding-bottom: 0px;
}



.logo a {
  float: left;
}

.logo {
  height: 78px;
  width: 254px;

}

.menu {
  display: flex;
}

.menu li {
  margin: 0 15px;
}

.menu a {
  font-weight: 500;
  position: relative;
}

.menu a:hover,
.menu a.active {
  color: #2d9e91;
}

.menu a.active:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
}


.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px 0;
  transition: var(--transition);

}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;

  }
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 120px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--light-color);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
}

@media (max-width: 768px) {
  .menu.active {
    left: 0;
  }
}

a {
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}

.menu a {
  font-weight: 500;
  position: relative;
}

a.active {
  color: var(--primary-color);
}

ul {
  list-style: none;
}


/* Search Box Default Hidden */
.search-box {
  width: 150px;
  opacity: 1;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 32px;
  outline: none;
  position: absolute;
  top: 50%;
  right: -8;
  transform: translateY(-50%);
  transition: width 0.3s ease-in-out, opacity 0.3s ease-in-out, border 0.3s;
  background: var(--light-color);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* When Active - Expand and Show */
.search-box.active {
  width: 280px;
  opacity: 1;
  padding: 8px 12px;
  border: 1px solid var(--secondary-color);
  box-shadow: 0px 4px 10px rgb(34 161 33 / 24%);
  height: 42px;

}

/* Search Icon Hover Effect */
.search {
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
}

.search:hover {
  transform: scale(1.2);
}

/* Search Icon Transform When Active */
.search.active i {
  color: var(--primary-color);
  transform: rotate(360deg);
  transition: transform 0.3s ease-in-out;
}


@media (max-width: 768px) {
  .button-navbar {
    display: none !important;
    margin-right: 26px !important;
  }
}

/* 111111111111111111111111111111111111111111111111111111111111111111 */


/* Redesigned Mobile Menu */
@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 255px;
    /* Adjust width for side menu */
    height: 100vh;
    background-color: #ffffff;
    /* Pure white background */
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 20px;
    transition: left 0.4s ease-in-out;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    border-right: 1px solid #000;
    /* Thin black border */
  }

  .menu.active {
    left: 0;
  }

  .menu li {
    display: flex;
    align-items: center;
    margin: 7px 0;
    width: 100%;
    padding: 10px 15px;
    border-radius: 5px;
    /* Rounded corners for active item */
    transition: background-color 0.3s ease-in-out;
  }

  .menu li.active {
    background-color: #e6f7ff;
    /* Light blue background for active item */
  }

  .menu a {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #4a4a4a;
    /* Dark gray text */
    text-transform: capitalize;
    text-decoration: none;
    width: 100%;
    transition: color 0.3s ease-in-out;
  }

  .menu a.button-whatsapp {
    color: #fff;
    font-size: 13px;
    font-weight: normal;
    width: auto;
  }

  .menu a:hover {
    color: #006600;
    /* Primary color on hover */
  }

  .menu a i {
    font-size: 20px;
    /* Icon size */
    margin-right: 10px;
    /* Space between icon and label */
    color: #fff;
    /* Grey-toned icons */
  }

  /* WhatsApp Button */
  .button-whatsapp {
    background: linear-gradient(45deg, #008000, #00b300);
    /* Updated green gradient */
    /* WhatsApp green gradient */
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    /* Reduced border radius */
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    /* Enhanced shadow for more depth */
    text-decoration: none;
    /* Remove underline */
  }

  .button-whatsapp:hover {
    background: linear-gradient(45deg, #1ebe57, #0d6b53);
    /* Darker green on hover */
    transform: translateY(-2px) scale(1.05);
    /* Slight lift effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    /* Stronger shadow on hover */
  }

  .button-whatsapp i {
    font-size: 22px;
    /* Slightly larger icon */
  }
}

/* My Account Button */
.button-account {
  display: inline-flex;
  align-items: center;
  background: #183d4c;
  /* Updated green gradient */
  /* Green gradient */
  color: white;
  border: none;
  padding: 13px 14px;
  border-radius: 8px;
  /* Consistent border radius */
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* Enhanced shadow */
  text-decoration: none;
  gap: 10px;
  /* Space between icon and text */
}

.button-account i {
  font-size: 16px;
  /* Icon size */
}

.button-account:hover {
  /* background: linear-gradient(45deg, #004d00, #009900); */
  /* Darker green on hover */
  transform: translateY(-2px) scale(1.05);
  /* Slight lift effect */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  /* Stronger shadow on hover */
}

/* Dropdown Menu */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(45deg, #ffffff, #f5f5f5);
  /* Subtle gradient */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  /* Soft shadow */
  border-radius: 8px;
  /* Rounded corners */
  padding: 10px 0;
  margin: 0;
  z-index: 1000;
  list-style: none;
  min-width: 200px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.dropdown-menu li {
  padding: 10px 20px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dropdown-menu li:hover {
  background: linear-gradient(45deg, #e6ffe6, #ccffcc);
  /* Light green hover effect */
  transform: translateY(5px);
  /* Slight slide effect */
}

.dropdown-menu a {
  text-decoration: none;
  color: #4a4a4a;
  /* Neutral text color */
  font-size: 14px;
  display: block;
  font-weight: 500;
}

.dropdown:hover .dropdown-menu {
  display: block;
  /* Show dropdown on hover */
  opacity: 1;
  transform: translateY(0);
  /* Smooth dropdown appearance */
}

/* Dropdown Arrow */
.dropdown::after {
  content: "▼";
  font-size: 12px;
  color: white;
  transition: transform 0.3s ease;
}

.dropdown:hover::after {
  transform: rotate(180deg);
  /* Rotate arrow on hover */
}

.button-row {
  display: flex;
  gap: 15px;
  /* Space between buttons */
  align-items: center;
  justify-content: center;
}

.button-login,
.button-whatsapp {
  background: #183d4c;
  /* Updated green gradient */
  /* Default green gradient */
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  /* Consistent border radius */
  font-size: 14px;
  font-weight: normal;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* Enhanced shadow */
  text-decoration: none;
  /* margin-right: 15px; */
  /* Remove underline for links */
}

.button-login:hover,
.button-whatsapp:hover {
  /* Updated green gradient */
  /* Darker green on hover */
  transform: translateY(-2px) scale(1.02);
  /* Slight lift effect */
  /* Stronger shadow on hover */
}

.button-whatsapp {
  background: #2a9d8f;
  /* Updated green gradient */
  margin-right: 3px;
  /* WhatsApp green gradient */
}

.button-login i,
.button-whatsapp i {
  font-size: 16px;
  /* Consistent icon size */
}

/* Mobile-only buttons container */
.mobile-only {
  display: none;
  /* Hidden by default on larger screens */
}

/* For mobile screens, show the buttons */
@media (max-width: 768px) {
  .mobile-only {
    display: block;
    /* Show the container on mobile */
    text-align: center;
    margin-top: 15px;
  }

  .button-login,
  .button-whatsapp {
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
    text-align: center;
    margin: 0px;
    color: white;
    text-decoration: none;
  }



  .button-login:hover,
  .button-whatsapp:hover {
    transform: translateY(-2px) scale(1.05);
    /* Slight lift effect on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    /* Stronger shadow on hover */
  }
}



@media (min-width: 768px) and (max-width: 843px) {

  .button-whatsapp,
  .button-login,
  .button-account {
    font-size: 10px;
  }
}




.dropdown-menu li i {
  margin-right: 8px;
  /* Add space between icon and text */
}

/* for lazy loading images  */

img.lazy {
  filter: blur(5px);
  transition: filter 0.5s ease-out;
}

img:not(.lazy) {
  filter: blur(0);
}



.cart-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #183d4c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  margin-right: 15px;
}

.cart-wrapper i {
  font-size: 13px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -4px;
  background-color: #2a9d8f;
  color: white;
  font-weight: bold;
  font-size: 14px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.cart-buttonmobile-only {
  display: none;

}

@media (max-width: 768px) {
  .cart-buttonmobile-only {
    display: block;
    position: fixed;
    top: 22px;
    right: 11%;
    z-index: 1000;
  }
}


@media (min-width: 768px) and (max-width: 992px) {

  .desktop-whatsapp {
    display: none;
  }

  .menu li {
    margin: 0 6px;
    font-size: 14px;
  }

  .cart-wrapper {
    margin-right: 5px;
  }
}


/* for login modal */
.popup{
  display:none;
}



/* for lazy loading images end */