@font-face {
  font-family: 'Open Sans Condensed';
  src: url('OpenSansCondensed-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

#site-header .container {
  max-width: 1140px;
  width: 100%;
  padding-inline: 20px;
  margin: 0 auto;
}

#site-header.nav-open .nav-toggle{
  position: fixed;
  top: 20px;
  right: 20px;
}

#site-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#site-header a {
  color: inherit;
  text-decoration: none;
}

#site-header button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

#site-header .has-submenu {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

#site-header .submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: inherit;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .submenu-toggle i {
  font-size: 12px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .submenu-toggle:hover {
  opacity: 0.75;
}

#site-header .has-submenu.is-open>.submenu-toggle i {
  transform: rotate(180deg);
}

#site-header .submenu {
  position: absolute;
  top: 100%;
  left: 0 !important;
  min-width: 200px;
  padding: 0.35rem 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

#site-header .submenu a {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .submenu a:hover {
  background: #f0f6fb;
  color: #1a7fd4;
}

#site-header .has-submenu.is-open>.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) !important;
}

#site-header .header-top {
  background: #222222;
  color: #ffffff;
}

#site-header .header-top .top-nav {
  display: flex;
  justify-content: center;
}

#site-header .header-top .top-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 3px 0;
}

#site-header .header-top .top-menu>li>a {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
}

#site-header .header-top .top-menu>li>a:hover {
  opacity: 0.8;
}

#site-header .header-top .top-menu .submenu-toggle {
  margin-left: 0.25rem;
  padding: 0.35rem 0.2rem;
}

#site-header .header-top .submenu {
  left: 50%;
  right: auto;
  transform: translateX(-50%) translateY(8px);
  border: 1px solid #e5e5e5;
}

#site-header .header-top .has-submenu.is-open>.submenu {
  transform: translateX(-50%) translateY(0);
}

#site-header .header-top .has-submenu:nth-last-child(-n + 2) .submenu {
  left: auto;
  right: 0;
}

#site-header .header-main {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
}

#site-header .main-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

#site-header .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

#site-header .logo img {
  display: block;
  width: auto;
  height: 44px;
}

#site-header .main-nav {
  display: none;
}

#site-header .main-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

#site-header .main-menu>li>a {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .main-menu>li>a:hover {
  color: #1a7fd4;
}

#site-header .main-menu .submenu-toggle {
  margin-left: 0.2rem;
  padding: 0.5rem 0.15rem;
}

#site-header .nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
}

#site-header .nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

#site-header .nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#site-header .nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

#site-header .nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

#site-header .nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  pointer-events: none;
  visibility: hidden;
}

#site-header .nav-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}

#site-header .nav-overlay.is-open .overlay-backdrop {
  opacity: 1;
}

#site-header .nav-overlay.is-open .overlay-panel {
  transform: translateY(0);
  opacity: 1;
}

#site-header .nav-overlay.is-open .overlay-menu>li {
  opacity: 1;
  transform: translateY(0);
}

#site-header .nav-overlay.is-open .overlay-menu>li:nth-child(1) {
  transition-delay: 0.1s;
}

#site-header .nav-overlay.is-open .overlay-menu>li:nth-child(2) {
  transition-delay: 0.15s;
}

#site-header .nav-overlay.is-open .overlay-menu>li:nth-child(3) {
  transition-delay: 0.2s;
}

#site-header .nav-overlay.is-open .overlay-menu>li:nth-child(4) {
  transition-delay: 0.25s;
}

#site-header .nav-overlay.is-open .overlay-menu>li:nth-child(5) {
  transition-delay: 0.3s;
}

#site-header .nav-overlay.is-open .overlay-menu>li:nth-child(6) {
  transition-delay: 0.35s;
}

#site-header .overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .overlay-panel {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #fff 0%, #f3f8fc 100%);
  overflow-y: auto;
  padding: 91px 20px 20px 20px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease;
}

#site-header .overlay-menu {
  width: 100%;
}

#site-header .overlay-menu>li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border-bottom: 1px solid #e8e8e8;
}

#site-header .overlay-menu>li>a {
  flex: 1;
  padding: 1rem;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .overlay-menu>li>a:hover {
  color: #1a7fd4;
  background: rgba(26, 127, 212, 0.06);
}

#site-header .overlay-menu .submenu-toggle {
  padding: 1rem 1.25rem;
  font-size: 1rem;
}

#site-header .overlay-menu .submenu {
  position: static;
  width: 100%;
  box-shadow: none;
  border: none;
  border-top: 1px solid #e5e5e5;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
  padding: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .overlay-menu .submenu a {
  font-size: 1rem;
  padding: 0.75rem 1rem 0.75rem 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

#site-header .overlay-menu .has-submenu.is-open>.submenu {
  max-height: 320px;
}

#site-header .header-shop {
  background: #0917f4;
  color: #fff;
}

#site-header .shop-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

#site-header .shop-nav {
  display: none;
}

#site-header .shop-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

#site-header .shop-menu>li>a {
  font-size: 16px;
  padding: 6px 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
  font-family: 'Open Sans Condensed';
}

#site-header .shop-menu>li>a:hover {
  opacity: 0.85;
}

#site-header .shop-menu .submenu-toggle {
  margin-left: 0.2rem;
  padding: 0.35rem 0.15rem;
}

#site-header .shop-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

#site-header .shop-link {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.35rem 0.5rem 0.35rem 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .shop-link:hover {
  opacity: 0.85;
}

#site-header .shop-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 28px;
  height: 28px;
  padding: 4px;
  color: #fff;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .shop-icon:hover {
  opacity: 0.85;
}

#site-header .shop-icon span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

#site-header #search-form {
  flex: 1;
  position: relative;
  min-width: 0;
}

#site-header #search-form input {
  width: 100%;
  height: 40px;
  padding: 0 2.75rem 0 1.25rem;
  border: none;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  background: #fff;
  color: #333;
}

#site-header #search-form input::placeholder {
  color: #999;
}

#site-header #search-form input.swp-input--search {
  background-image: url("https://twocrazycatladies-dev.cospark.io/wp-content/uploads/2026/06/search-icon.svg");
  background-position: right 12px top 50%;
  background-repeat: no-repeat;
  background-size: 20px auto;
}

.searchwp-live-search-result {
  display: flex !important;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}

.searchwp-live-search-result--title {
  line-height: 1.3;
  font-size: 16px;
  font-weight: 600;
}

.searchwp-live-search-results {
  z-index: 999 !important;
}

#site-header .shop-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

#site-header .icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

#site-header .cart-link {
  position: relative;
}

#cfw-side-cart-form .cfw-side-cart-quantity{
  display: none;
}

#site-header .cfw-side-cart-quantity {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 4px;
  border-radius: 999px;
  background: #2EA3F2;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

#site-header .shop-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 1003;
  pointer-events: none;
  visibility: hidden;
}

#site-header .shop-offcanvas.is-open {
  pointer-events: auto;
  visibility: visible;
}

#site-header .shop-offcanvas.is-open .panel-backdrop {
  opacity: 1;
}

#site-header .shop-offcanvas.is-open .shop-panel {
  transform: translateX(0);
}

#site-header .panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .shop-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: #fff;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.18);
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#site-header .shop-panel .shop-menu {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

#site-header .shop-panel .shop-menu>li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #eee;
}

#site-header .shop-panel .shop-menu>li>a {
  flex: 1;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #333;
}

#site-header .shop-panel .shop-menu>li>a:hover {
  background: #f5f9fd;
  color: #1a7fd4;
  opacity: 1;
}

#site-header .shop-panel .shop-menu .submenu-toggle {
  padding: 1rem 1.25rem;
}

#site-header .shop-panel .submenu {
  position: static;
  width: 100%;
  box-shadow: none;
  border: none;
  border-top: 1px solid #e5e5e5;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transform: none;
  padding: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .shop-panel .submenu a {
  padding: 0.75rem 1.25rem 0.75rem 2rem;
  border-bottom: 1px solid #e5e5e5;
}

#site-header .shop-panel .has-submenu.is-open>.submenu {
  max-height: 320px;
}

#site-header .panel-head {
  padding: 10px;
}

#site-header .panel-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #000;
  font-size: 1.25rem;
  margin-left: auto;
  transition: background 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

#site-header .panel-close:hover {
  background: rgba(255, 255, 255, 0.2);
}


#site-header .notice-bar {
  background: #EA9367;
  padding: 10px 0;
}

#site-header .notice-bar p {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 481px) {
  #site-header .logo img {
    height: 52px;
  }

  #site-header .icon-link {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  #site-header .shop-actions {
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  #site-header .header-top .top-menu {
    justify-content: flex-end;
    gap: 24px;
  }

  #site-header .header-top .top-nav {
    justify-content: flex-end;
  }

  #site-header .header-top .submenu {
    left: 0;
    transform: translateY(8px);
  }

  #site-header .header-top .has-submenu.is-open>.submenu {
    transform: translateY(0);
  }

  #site-header .shop-bar {
    flex-wrap: wrap;
  }

  #site-header .shop-nav {
    order: -1;
    width: 100%;
    padding-bottom: 0.35rem;
  }
}

@media (min-width: 1024px) {
  #site-header .nav-toggle {
    display: none;
  }

  #site-header .main-nav {
    display: block;
  }

  #site-header .nav-overlay {
    display: none;
  }

  #site-header .shop-mobile {
    display: none;
  }

  #site-header .shop-offcanvas {
    display: none;
  }

  #site-header .logo img {
    height: 64px;
  }

  #site-header .shop-bar {
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: nowrap;
  }

  #site-header .shop-nav {
    order: 0;
    width: auto;
    padding-bottom: 0;
    display: block;
  }

  #site-header .search-form {
    width: min(100%, 560px);
  }
}

@media (min-width:1200px) {
  #site-header .main-menu {
    gap: 28px;
  }
}

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {

  #site-header .header-top .has-submenu:hover>.submenu,
  #site-header .main-nav .has-submenu:hover>.submenu,
  #site-header .shop-nav .has-submenu:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  #site-header .header-top .has-submenu:hover>.submenu-toggle i,
  #site-header .main-nav .has-submenu:hover>.submenu-toggle i,
  #site-header .shop-nav .has-submenu:hover>.submenu-toggle i {
    transform: rotate(180deg);
  }
}


@media (max-width:767px) {
  .searchwp-live-search-results {
    left: 40px !important;
  }
}