/* [project]/components/header/mobileMenu.css [app-client] (css) */
.mobile-menu-content {
  max-height: calc(100vh - 40px);
  padding: 20px 0;
  overflow-y: auto;
}

.mobile-menu-section h3 {
  color: var(--primary);
  border-bottom: 1px solid #0000001a;
  margin: 15px 20px;
  padding-bottom: 8px;
}

.mobile-categories-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-categories-list li {
  border-bottom: 1px solid #0000000d;
  position: relative;
}

.mobile-categories-list li:last-child {
  border-bottom: none;
}

.mobile-categories-list .category-header {
  justify-content: space-between;
  align-items: center;
  padding: 0;
  display: flex;
}

.mobile-categories-list .category-header a {
  color: #333;
  flex: 1;
  padding: 12px 20px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.toggle-subcategory {
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  justify-content: center;
  align-items: center;
  padding: 12px 15px;
  display: flex;
}

.arrow {
  border-bottom: 2px solid #666;
  border-right: 2px solid #666;
  width: 10px;
  height: 10px;
  transition: transform .3s;
  display: inline-block;
}

.arrow.down {
  transform: rotate(45deg);
}

.arrow.up {
  transform: rotate(-135deg);
}

.subcategories-list {
  background-color: #00000005;
  max-height: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: max-height .3s ease-out;
  overflow: hidden;
}

li.open .subcategories-list {
  max-height: 1000px;
  transition: max-height .5s ease-in;
}

.subcategories-list li {
  border-bottom: none;
  margin-left: 15px;
}

.subcategories-list li a {
  color: #555;
  border-left: 1px solid #0000001a;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: .9em;
  text-decoration: none;
  display: flex;
}

.product-count {
  color: var(--secondary);
  margin-left: 5px;
  font-size: .85em;
}

.has-submenu {
  transition: background-color .3s;
}

.has-submenu.open {
  background-color: #00000003;
}

.mobile-menu-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu-section ul li a {
  color: #333;
  padding: 12px 20px;
  text-decoration: none;
  display: block;
}


/*# sourceMappingURL=components_header_mobileMenu_5b1aff39.css.map*/