.mega-menu-item
{
  width: 100%;
}
    .header-bottom {
    background: #fff;
    position: relative;
    box-shadow: 0 3.4px 2.7px rgb(0 0 0 / 1%), 0 8.7px 6.9px rgb(0 0 0 / 1%), 0 17.7px 14.2px rgb(0 0 0 / 1%), 0 36.5px 29.2px rgb(0 0 0 / 1%), 0 100px 80px rgb(0 0 0 / 2%);
}
span.categories-link:hover {
    padding-left: 15px;
}
.sticky-header.sticky {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  background: #333;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  animation-name: fadeInDown;
  animation-duration: 900ms;
  animation-timing-function: cubic-bezier(0.2, 1, 0.22, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: none;
  animation-play-state: running;
  border-bottom: 0;
}
.ec-breadcrumb-list {
  text-align: left;
}
.main-menu {
  position: relative;
}
.main-menu nav > ul > li {
  position: relative;
  display: inline-block;
}
.main-menu nav > ul > .has-dropdown {
  margin-right: 5px;
}
.main-menu nav > ul > .has-dropdown:last-child {
  margin-right: 0;
}
.main-menu nav > ul > .has-megaitem {
  position: static;
}
.main-menu nav > ul > li > a {
  display: block;
  line-height: 24px;
  padding: 15px 30px;
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
  font-weight: 500;
  color: #2a2a2a;
}

.sub-menu > li > a,
.mega-menu-sub > li > a {
  font-weight: 400;
  display: block;
  line-height: 35px;
  text-transform: capitalize;
  color: #666;
  position: relative;
  transition: all 0.3s ease 0s;
}
.sub-menu > li > a::after,
.mega-menu-sub > li > a::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translate(0px, -50%);
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #261146;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.sub-menu > li > a:hover,
.mega-menu-sub > li > a:hover {
  color: #261146;
  transform: translateX(10px);
}
.sub-menu > li > a:hover::after,
.mega-menu-sub > li > a:hover::after {
  transform: translate(-10px, -50%);
  visibility: visible;
  opacity: 1;
}

.sub-menu {
  position: absolute;
  min-width: 230px;
  padding: 25px 20px;
  background: #FFF;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
  transform: perspective(600px) rotateX(-20deg);
  transform-origin: 0 0 0;
  left: 0;
  right: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
  top: 100%;
  text-align: left;
}

.mega-menu {
  position: absolute;
  min-width: 100%;
  padding: 25px 30px 30px 30px;
  background: #FFF;
  box-shadow: 0 3px 11px 0 rgba(0, 0, 0, 0.1);
  transform: perspective(600px) rotateX(-20deg);
  transform-origin: 0 0 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 99;
  top: 100%;
  text-align: left;
}

.mega-menu-inner {
  display: flex;
  justify-content: space-between;
}

.mega-menu-item-title {
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 13px;
  color: #333;
}
.mega-menu-item-title:hover {
  color: #261146;
}

.mega-menu-sub > li {
  display: block;
}

.main-menu nav > ul > li:hover .sub-menu,
.main-menu nav > ul > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: perspective(600px) rotateX(0deg);
}

.menu-banner {
  margin-top: 20px;
}
.menu-banner > a {
  display: block;
  width: 100%;
}
.menu-banner img {
  width: 100%;
}
/* Style the tab */
.tab {
    float: left;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    width: 13%;
}
  
  /* Style the buttons inside the tab */
  .tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 15px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    font-size: 17px;
  }
  
  /* Change background color of buttons on hover */
  .tablinks:has(.categories-link.active) {
    background-color: #ddd;
  }
  
  /* Create an active/current "tab button" class */
  .tab button.active {
    background-color: #ccc;
  }
  
  /* Style the tab content */
  .tabcontent {
    float: left;
    padding: 0px 12px;
    width: 74%;
    border-left: none;
    display: none;
    background: #ddd;
}
  /* Clear floats after the tab */
  .clearfix::after {
    content: "";
    clear: both;
    display: table;
  }
  .tabcontent h3 {
    padding: 10px 0;
    font-weight: 700;
    border-bottom: 1px solid;
    width: fit-content;
    line-height: 27px;
  }
  ul.mega-menu-sub {
    display: block;
  }
  ul.mega-menu-sub li {
    padding: 15px 0;
  }
  img.brand-logo-header {
    height: 80px;
    width: 80px;
    object-fit: contain;
  }
  ul.mega-menu-sub li {
    text-align: center;
    float: left;
    padding: 32px;
  }
  ul.mega-menu-sub li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main-menu ul li a {
    display: block;
    font-size: 14px;
    color: #222;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0px 0;
}
ul.mega-menu-sub li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .main-menu ul li:hover > a {
    color: #979797;
}
.header
{
  background-color: #13564f;
}
.header__search-box input {
  width: 100%;
  height: 50px;
  line-height: 50px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  border: 2px solid #13564f;
  outline: none;
  padding: 0 15px;
}
.header__search-box button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  height: 50px;
  color: #fff;
  display: block;
  line-height: 50px;
  padding: 0 65px;
  font-size: 14px;
  font-weight: 400;
  background: #13564f;
  border-radius: 0 30px 30px 0;
  text-transform: capitalize;
}
.cart__total-item {
  min-width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  position: absolute;
  top: -2px;
  left: 35px;
  color: #ffffff;
  background: #13564f;
  border-radius: 100%;
  font-size: 10px;
}


/* Header  */

.header__search .header__search-box::before{
  display: none;
}
.header__search .header__search-box {
  position: relative;
  display: inline-block;
}
.header__search ul.divcontact {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: absolute;
  background-color: #fff;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  border-top: 0;
  border-color: #fff;
  border-top: 0;
  border-left: 1px solid ;
  border-right: 1px solid ;
  border-bottom: 1px solid ;
}
ul.divcontact.dropdown-menu.src {
  border-color: white!important;
}
.header__search ul.divcontact li {
  padding: 10px;
  border-bottom: 1px solid #f1f1f1;
}

/* Style the anchor tag inside the list item */
.header__search ul.divcontact li a {
  display: block;
  text-decoration: none;
  color: #333;
}

/* Show the dropdown when the input is focused */
.header__search .header__search-box input[type="text"]:focus + ul.divcontact {
  display: block;
}
.mega-menu {
    justify-content: center;
    display: flex;
}

.mobile_header .header__action ul li a {
    display: block;
    font-size: 15px;
    font-weight: 500;
}