.main__logo--title {
  line-height: 2rem;
}

.header__topbar {
  padding: 20px 20px 10px 20px;
}

.header__shipping {
  display: flex;
  gap: 20px;
}

.header__shipping .logo-box img {
  height: 75px;
  object-fit: contain;
}

.header__shipping a {
  color: #fff;
  font-size: 16px;
  line-height: normal;
}

.custom-search-box {
  border-radius: 5px;
  padding: 10px 12px;
  background-color: #db5c02 !important;
  max-width: 680px;
  width: 100%;
  margin: auto;
  border: 1px solid #db5c02 !important;

}

.custom-search-box i {
  font-weight: 500;
  color: #fff !important;
}

.custom-search-input {
  background-color: #db5c02;
  border: none;
  color: #fff !important;
  font-size: 14px;
  margin: 0 10px;
}

.custom-search-input::placeholder {
  color: #fff;
}

.custom-search-input:focus {
  outline: none;
  box-shadow: none;
}

.header__infobar {
  background: #161616;
  font-size: 14px;
  padding: 15px 0;
  color: #cdcdcd;
}

.header__infobar a,
.header__infobar i,
.header__infobar span,
.header__infobar p {
  color: #cdcdcd;
  font-weight: 500;
}

.header__infobar .fa-star,
.header__infobar .fa-star-half-alt,
.header__infobar .fa-star-half,
.header__infobar .far.fa-star {
  color: #fff;
  margin-left: 2px;
}

.main__header.header__sticky {
  padding: 0;
  border-top: 1px solid #cccccc42;
}

.main__header.header__sticky .header__menu {
  width: 100%;
}

.header-link-box {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}



/* Top-level menu items */
.header__menu--items {
  position: relative;
  margin-right: 0 !important;
}

.header__menu--link i {
  margin-left: 10px;
}

/* Top-level menu links style */
.header-link-box>.header__menu--items>a.header__menu--link {
  display: inline-block;
  color: #cdcdcd;
  font-size: 14px;
  font-weight: 400;
  padding: 18px 15px;
  position: relative;
  transition: 0.3s all ease-in-out;
  white-space: nowrap;
}

/* Arrow indicator for items with submenu */
.header__menu--items.has-submenu>a.header__menu--link::after {
  content: "";
  font-size: 0.6em;
  margin-left: 5px;
  color: #f56600;
  position: relative;
  top: 1px;
}

/* Submenu container (hidden initially) */
.header__menu--items .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #161616;
  /* match header infobar dark */
  min-width: 150px;
  box-shadow: 0 4px 15px rgb(43 43 43 / 86%);
  border-radius: 0 0 6px 6px;
  padding: 10px 0;
  z-index: 9999;
}

/* Show submenu on hover or focus */
.header__menu--items:hover>.submenu,
.header__menu--items:focus-within>.submenu {
  display: block;
}

/* Submenu list items */
.submenu>li {
  position: relative;
  padding: 0;
}

/* Submenu links */
.submenu>li>.header__menu--link,
.submenu>li>ul>li>.header__menu--link {
  display: block !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #cdcdcd !important;
  padding: 5px 20px !important;
  text-decoration: none !important;
  width: 100% !important;
  white-space: nowrap !important;
  transition: background-color 0.2s ease !important;
}

/* Submenu link hover/focus */
.submenu>li>.header__menu--link:hover,
.submenu>li>.header__menu--link:focus {
  color: #fff;
  background-color: #f56600;
  outline: none;
}

/* Nested submenu positioning (for sub-child menus) */
.submenu .submenu {
  top: 0;
  left: 100%;
  margin-left: 0;
  border-radius: 0 6px 6px 6px;
}

/* Nested submenu arrow for items with further submenu */
.submenu>li.has-submenu>a::after {
  content: " ▶";
  float: right;
  font-size: 0.6em;
  margin-left: 10px;
  color: #f56600;
  position: relative;
  top: 1px;
}

/* Responsive tweaks: on smaller screens hide the menu (you have your offcanvas menu) */
@media (max-width: 991px) {
  .header__menu--navigation {
    display: none !important;
  }
}

.header-link-box .header__menu--items .header__menu--link {
  display: inline-block;
  color: #cdcdcd;
  font-size: 14px;
  font-weight: 400;
  padding: 18px 15px;
  position: relative;
  transition: 0.3s all ease-in-out;
}

.header__account .account-details-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__account .account-details-box .header__account--items {
  margin: 0 !important;
}

.header__account .account-details-box .header__account--items i {
  color: #ffffffd1;
}

.header-link-box .header__menu--items a:hover {
  color: #f56600;
  background: rgba(158, 158, 158, 0.24);
}

/* Create the bottom triangle using ::after */
.header-link-box .header__menu--items a:hover::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0px 7px 7px 7px;
  border-style: solid;
  border-color: transparent transparent #a0a0a0 transparent;
  /* gray triangle */
}

.offcanvas__header--menu__open--svg {
  width: 32px;
}

.offcanvas__header {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 480px) {
  .offcanvas__header {
    max-width: 320px;
  }
}

.offcanvas__header.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.offcanvas__header.open~.offcanvas-overlay {
  visibility: visible;
  opacity: 0.75;
}

.offcanvas-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  opacity: 0;
  background-color: var(--black-color);
}

.offcanvas__inner {
  position: relative;
  height: 100%;
}

/* Offacnvas Logo */
.offcanvas__logo {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
}

.offcanvas__close--btn {
  position: relative;
  margin-right: 10px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  text-indent: -9999px;
  border: none;
  background-color: transparent;
}

.offcanvas__close--btn::before,
.offcanvas__close--btn::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  content: "";
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #06402a;
}

.offcanvas__close--btn::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Mobile Menu */
.offcanvas__menu {
  overflow-y: auto;
  height: 100%;
}

.offcanvas__menu_ul {
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offcanvas__menu_li {
  position: relative;
  border-bottom: 1px solid #ddd;
}

.offcanvas__menu_li:first-child {
  border-top: 1px solid var(--border-color2);
}

.offcanvas__menu_item {
  line-height: 1;
  display: block;
  padding: 15px 20px;
  text-transform: uppercase;
  color: #2f2f2f;
  font-weight: 700;
}

.offcanvas__sub_menu li a {
  color: #2f2f2f;
  font-weight: 500;
}

/* Mobile Sub Menu */
.offcanvas__sub_menu {
  display: none;
  margin: 0 20px;
  padding: 0;
  list-style: none;
}

.offcanvas__sub_menu li {
  margin-bottom: 10px;
}

.offcanvas__sub_menu_toggle {
  font-size: 20px;
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4.6rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
}

.offcanvas__sub_menu_toggle::before,
.offcanvas__sub_menu_toggle::after {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 12px;
  height: 2px;
  content: "";
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  background-color: #000;
}

.offcanvas__sub_menu_toggle:not(.active)::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.offcanvas__account--items {
  padding: 0;
  font-size: 16px;
}

.offcanvas__account--items .offcanvas__account--items__btn {
  font-size: 22px;
}

.offcanvas__stikcy--toolbar {
  position: fixed;
  bottom: 0;
  background: #fff;
  left: 0;
  right: 0;
  z-index: 99;
  -webkit-box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.12);
  padding: 10px 20px;
  display: none;
  visibility: hidden;
  background-color: #fff;
  overflow: hidden;
}

.offcanvas__stikcy--toolbar__btn {
  display: block;
  position: relative;
  text-align: center;
  color: #2f2f2f;
}

.offcanvas__stikcy--toolbar__btn:hover {
  color: #ff7f00;
}

.offcanvas__stikcy--toolbar__btn:hover .offcanvas__stikcy--toolbar__icon {
  color: #0e0e0f;
}

.offcanvas__stikcy--toolbar__icon {
  width: 50px;
  height: 22px;
  text-align: center;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  color: #06402a;
  margin: 0 auto;
}

.offcanvas__stikcy--toolbar__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
}

.header__sticky.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  left: 0;
  z-index: 99;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.language__currency--list {
  position: relative;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
}

.language__currency--list:last-child {
  margin-right: 0;
  padding-right: 0;
}

.language__currency--list:last-child::before {
  display: none;
}

.language__currency--list::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #fff;
  right: 0;
  top: 0;
}

.currency__items:last-child .currency__text {
  border-bottom: 0;
}

.currency__text {
  display: block;
  font-size: 1.4rem;
  padding: 1rem 1.4rem;
  background: var(--gray-color2);
  border-bottom: 1px solid var(--border-color2);
}

.currency__text:hover {
  background: #06402a;
  color: #fff;
  border-color: #06402a;
}

.header__account--btn {
  position: relative;
  color: var(--text-gray-color);
  text-align: center;
}

.header__account--btn:hover {
  color: #0e0e0f;
}

.items__count {
  position: absolute;
  right: -1.4rem;
  top: -1rem;
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
  line-height: 2rem;
  text-align: center;
  border-radius: 50%;
  color: #06402a;
}

.predictive__search--title {
  margin-bottom: 15px;
  color: #ff7f00;
}

.predictive__search--box {
  background: #fff;
  -webkit-box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
  box-shadow: 0 -4px 27px rgba(62, 70, 120, 0.16);
  position: relative;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.predictive__search--input {
  width: 100%;
  height: 4rem;
  border: 1px solid #ccc;
  padding: 0 80px 0 15px;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
}

.predictive__search--input::placeholder {
  color: #ccc;
}

.predictive__search--input:focus {
  border-color: #0e0e0f;
  outline: none;
  background: none;
}

.predictive__search--input:focus::-webkit-input-placeholder {
  color: #000000;
}

.predictive__search--box.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.predictive__search--button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  width: 4rem;
  text-align: center;
  color: #fff;
  border-radius: 0 5px 5px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.predictive__search--button:hover {
  background: #ff7f00;
}

.predictive__search--box__inner {
  padding: 20px 16px;
  text-align: center;
}

.offcanvas__header--menu__open {
  line-height: 1;
  display: none;
}

.offcanvas__header--menu__open a {
  color: #ff7f00;
  font-size: 30px;
}

.offcanvas__account--items__btn {
  gap: 10px;
  color: #2f2f2f;
}

.predictive__search--close__btn {
  position: absolute;
  top: 20px;
  right: 40px;
  padding: 0;
  border: 0;
  background: inherit;
  width: 28px;
}

.header__account--items {
  margin-right: 2rem;
}

.header__account--items:last-child {
  margin-right: 0;
}

/* Footer Css code  */
.footer__section {
  background: #000;
  padding-top: 70px;
  padding-bottom: 45px;
  color: #9e9e9e;
  overflow: hidden;
}

.footer__section .main-footer__widget .flogo-box img {
  max-width: 190px;
}

.main-footer__widget .mfw-details-box {
  padding: 45px 55px 0 0;
}

.main-footer__widget .mfw-details-box a {
  color: #9e9e9e;
  font-size: 15px;
  line-height: 20px;
  display: block;
  padding: 8px 0;
}

.main-footer__widget .mfw-details-box a:hover,
.footer__widget ul li a:hover {
  color: #fff;
}

.footer-ctitle {
  margin-bottom: 24px;
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.footer__widget ul {
  list-style: none;
  padding-left: 0;
}

.footer__widget ul li {
  margin-bottom: 18px;
}

.footer__widget ul li a {
  color: #9e9e9e;
  font-size: 16px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  text-decoration: none;
}

.social-footer-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-bottom-payimg-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 25px 00 0 0;
  margin-top: 0px;
  border-top: 1px solid #424242;
}

.footer-bottom-payimg-box-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 25px 0 0 0;
  margin-top: 0px;
  text-align: center;
  border-top: 1px solid #424242;
}

.footer-bottom-payimg-box .text-box {
  padding-right: 40px;
  border-right: 2px solid #353233;
}

.footer-top-highlight {
  background: #db5c02;
  padding: 30px 0;
  color: white;
  overflow: hidden;
}

.footer-top-highlight .footer-top-item {
  padding: 15px;
  position: relative;
}

.footer-top-highlight .footer-top-item p {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin: 10px 0;
  /* 17.993px */
}

.footer-top-highlight a,
.footer-top-highlight strong {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}


[x-cloak] {
  display: none !important;
}

/* Media query css code header footer */

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .header-link-box {
    gap: 10px;
  }

  .header-link-box .header__menu--items .header__menu--link {
    padding: 18px 10px;
  }
}

/* ------------ Medium to Large Screens (991px - 1199px) ------------ */
@media only screen and (min-width: 991px) and (max-width: 1199px) {
  .header-link-box {
    flex-wrap: wrap;
    gap: 0;
  }

  .header-link-box .header__menu--items .header__menu--link {
    font-size: 14px;
    padding: 14px 6px;
  }

  .main__header.header__sticky .header__menu {
    width: 100%;
  }

  .header__account {
    display: flex;
    gap: 10px;
  }


  .main-footer__widget .mfw-details-box {
    padding: 45px 15px 0 0;
  }
}

/* ------------ Extra Small to Medium Devices (max-width: 575px) ------------ */
@media only screen and (max-width: 575px) {
  .header__account--items {
    margin-right: 1rem;
  }

  .predictive__search--input {
    height: 45px;
  }

  .predictive__search--close__btn {
    right: 15px;
  }
}

/* ------------ Small Devices to Medium (576px - 767px) ------------ */
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .predictive__search--box__inner {
    padding: 20px 15px;
  }

  .offcanvas__stikcy--toolbar {
    padding: 10px 20px;
    display: block;
    visibility: visible;
  }

  .footer__section {
    padding-top: 40px;
  }

}

/* ------------ Medium Devices (768px - 991px) ------------ */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offcanvas__stikcy--toolbar {
    padding: 10px 60px;
    display: block;
    visibility: visible;
  }

  .header__topbar--inner {
    justify-content: center !important;
  }

  .language__currency {
    padding: 5px 20px;
  }

  .main__header {
    padding: 10px 0;
  }

  .predictive__search--box__inner {
    padding: 30px 80px;
  }
}

/* ------------ Small to Medium Screens (110px - 990px) ------------ */
@media only screen and (min-width: 110px) and (max-width: 990px) {



  .main__header.header__sticky .header__menu {
    width: 100%;
  }

  /*.logo-box {*/
  /*  text-align: center;*/
  /*}*/

  .logo-box img {
    width: 120px;
    object-fit: contain;
  }

  .main__header.header__sticky {
    padding: 10px;
  }

  .sidemenu-logoimg {
    max-width: 160px;
    filter: invert(1);
    object-fit: contain;
  }
}

/* ------------ Toggle button visibility for offcanvas menu ------------ */
@media only screen and (max-width: 1199px) {
  .offcanvas__header--menu__open {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .header__topbar,
  .header__account,
  .header__infobar {
    display: none;
  }

  .main__header.header__sticky {
    padding: 10px;
  }

  .header__section.mb-20 {
    margin-bottom: 0;
  }

  .offcanvas__stikcy--toolbar {
    display: block;
    visibility: visible;
  }

  .main-footer__widget .mfw-details-box {
    padding: 30px 0 10px 0;
  }
}

/* ------------ Large Screens (min-width: 992px) ------------ */
@media only screen and (min-width: 992px) {
  .header__account--search__items.mobile__d--block {
    display: none;
  }

  .predictive__search--box__inner {
    padding: 30px 150px;
  }

  .header__search--box {
    width: 32rem;
  }
}

/* ------------ Extra Large Screens (min-width: 1200px) ------------ */
@media only screen and (min-width: 1200px) {
  .header__select--inner {
    padding: 0 4.3rem 0 2rem;
  }

  .header__search--box {
    width: 45rem;
  }

  .header__search--input {
    padding: 0 7rem 0 2.2rem;
  }
}

/* ------------ Footer Divider Line (Tablet and up) ------------ */
@media only screen and (min-width: 768px) {
  .footer-top-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0%;
    height: 100%;
    width: 1px;
    background-color: #ff7f00;
  }
}

/* ------------ Sticky Toolbar Padding (min-width: 500px) ------------ */
@media only screen and (min-width: 500px) {
  .offcanvas__stikcy--toolbar {
    padding: 10px 40px;
  }
}