/* Actiza modern WooCommerce header */
.actiza-modern-header {
  position: relative;
  z-index: 99;
  background: #fff;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07);
}
.actiza-header-top {
  background: #0f172a;
  color: #fff;
  font-size: 14px;
}
.actiza-header-top a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.actiza-header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 38px;
}
.actiza-header-contact,
.actiza-header-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.actiza-header-main {
  background: #fff;
}
.actiza-header-main-inner {
 	display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 16px 0;
    justify-items: center;
    justify-content: stretch;
}
.actiza-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}
.actiza-logo-img {
  max-width: 200px;
  width: auto;
  height: auto;
  max-height: 72px;
}
.actiza-logo-text {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}
.actiza-product-search {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  overflow: hidden;
}
.actiza-product-search input[type="search"] {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  padding: 0 20px;
  color: #0f172a;
  outline: 0;
}
.actiza-product-search button {
  width: 58px;
  height: 50px;
  border: 0;
  background: var(--theme-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.actiza-product-search button:hover {
  background: var(--theme-color);
}
.actiza-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.actiza-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.actiza-action i {
  font-size: 22px;
  color: #ef4444;
}
.actiza-cart-link em {
  position: absolute;
  top: -11px;
  left: 14px;
  min-width: 20px;
  height: 20px;
  border-radius: 20px;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
.actiza-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}
.actiza-menu-toggle span {
  display: block;
  height: 2px;
  background: #0f172a;
  margin: 5px 0;
  border-radius: 2px;
}
.actiza-header-nav {
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  background: #fff;
}
.actiza-header-nav-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.actiza-cat-dropdown {
  position: relative;
}
.actiza-cat-dropdown > button {
  height: 48px;
  border: 0;
  background: #ef4444;
  color: #fff;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.actiza-cat-dropdown ul {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  margin: 10px 0 0;
  padding: 10px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  border-radius: 16px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}
.actiza-cat-dropdown:hover ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.actiza-cat-dropdown li a {
  display: block;
  padding: 10px 12px;
  color: #334155;
  text-decoration: none;
  border-radius: 10px;
}
.actiza-cat-dropdown li a:hover {
  background: #fff1f2;
  color: #ef4444;
}
.actiza-main-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.actiza-main-menu li {
  position: relative;
  list-style: none;
}
.actiza-main-menu > li > a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  color: var(--color-white);
  font-weight: 800;
  text-decoration: none;
}
.actiza-main-menu > li:hover > a,
.actiza-main-menu > li.current-menu-item > a {
  color: #ef4444;
}
.actiza-main-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.2s;
}
.actiza-main-menu li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.actiza-main-menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  color: #334155;
  text-decoration: none;
  border-radius: 10px;
}
.actiza-main-menu .sub-menu a:hover {
  background: #fff1f2;
  color: #ef4444;
}
.actiza-main-menu .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
.actiza-cart-preloader {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.actiza-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top-color: #ef4444;
  border-radius: 50%;
  animation: actiza-spin 1s linear infinite;
}
@keyframes actiza-spin {
  to {
    transform: rotate(360deg);
  }
}
.actiza-mobile-offcanvas .actiza-mobile-menu {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.actiza-mobile-offcanvas .actiza-mobile-menu li {
  list-style: none;
}
.actiza-mobile-offcanvas .actiza-mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #0f172a;
  text-decoration: none;
  border-bottom: 1px solid #eef2f7;
  font-weight: 700;
}
.actiza-mobile-search {
  height: 46px;
}
@media (max-width: 991px) {
  .actiza-header-top-inner {
    justify-content: center;
  }
  .actiza-header-contact {
    display: none;
  }
  .actiza-header-main-inner {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 12px 0;
    align-items: center;
    justify-items: stretch;
  }
  .actiza-product-search {
    grid-column: 1/-1;
    order: 3;
  }
  .actiza-header-actions .actiza-action span,
  .actiza-header-nav {
    display: none;
  }
  .actiza-menu-toggle {
    display: inline-block;
  }
  .actiza-logo-img {
    max-width: 160px;
  }
  .actiza-header-links {
    font-size: 13px;
    justify-content: center;
  }
  .actiza-header-actions {
    gap: 12px;
  }
}
@media (max-width: 575px) {
  .actiza-header-links a:first-child {
    display: none;
  }
  .actiza-header-main-inner {
    padding: 10px 0;
  }
  .actiza-logo-img {
    max-width: 140px;
  }
  .actiza-product-search {
    height: 44px;
  }
  .actiza-product-search button {
    height: 44px;
    width: 50px;
  }
  .actiza-action i {
    font-size: 20px;
  }
}