/* [project]/component/categories/categoryFilters.css [app-client] (css) */
.category-filters {
  flex-shrink: 0;
  width: 100%;
  min-width: 220px;
  position: relative;
}

.filter-toggle-button {
  cursor: pointer;
  background-color: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px 15px;
  font-weight: 500;
  display: none;
}

.filter-toggle-button svg {
  width: 20px;
  height: 20px;
}

.filter-content {
  background-color: #fff;
  border-radius: 4px;
}

.filter-header-mobile {
  border-bottom: 1px solid #e0e0e0;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  display: none;
}

.filter-header-mobile h3 {
  margin: 0;
  font-size: 18px;
}

.close-button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.category-filters ul {
  border-radius: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-tabs {
  border-bottom: 1px solid #e0e0e0;
  display: flex;
}

.filter-tab {
  cursor: pointer;
  text-align: center;
  background: none;
  border: none;
  flex: 1;
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
}

.filter-tab:hover {
  background-color: #f8f8f8;
}

.filter-tab.active {
  color: #32a852;
  border-bottom: 2px solid #32a852;
}

.category-filters li {
  border-bottom: 1px solid #f0f0f0;
  margin: 0;
  padding: 0;
}

.category-filters li:last-child {
  border-bottom: none;
}

.category-filters li a {
  color: #333;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
}

.category-filters li a:hover {
  background-color: #f8f8f8;
}

.category-filters li.active a {
  background-color: #f5f5f5;
  font-weight: 600;
}

.sort-options li {
  position: relative;
}

.sort-option {
  width: 100%;
}

.sort-name {
  flex: 1;
}

.check-icon {
  color: #2563eb;
  flex-shrink: 0;
}

.filter-modal-overlay {
  z-index: 998;
  background-color: #00000080;
  display: none;
  position: fixed;
  inset: 0;
}

.sort-options-inline {
  margin: 0 0 20px;
  padding: 0;
  list-style-type: none;
}

.sort-options-inline li {
  margin-bottom: 8px;
}

.sort-options-inline li a {
  color: #333;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.sort-options-inline li.active a {
  color: var(--primary);
  font-weight: 600;
}

.sort-options-inline .check-icon {
  margin-left: 10px;
}

.mobile-only {
  display: none;
}

.filter-header {
  border-bottom: 1px solid #eee;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px 0;
  display: flex;
}

.filter-header span {
  font-size: 18px;
  font-weight: 600;
}

.filter-close-button {
  cursor: pointer;
  color: #333;
  background: none;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 8px;
  transition: background-color .2s;
  display: flex;
}

.filter-close-button:hover {
  background-color: #f5f5f5;
}

@media (width <= 768px) {
  .mobile-only {
    display: flex;
  }

  .filter-content {
    z-index: 999;
    background-color: #fff;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    padding: 15px;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: auto;
    box-shadow: -2px 0 10px #0000001a;
  }

  .filter-content.filter-open {
    display: block;
  }

  .filter-modal-overlay {
    z-index: 998;
    background-color: #00000080;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }

  .filter-close-button {
    background-color: #f8f8f8;
    border-radius: 50%;
    width: 36px;
    height: 36px;
  }

  .filter-close-button:hover {
    background-color: #eee;
  }

  .mobile-price-filters {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .mobile-price-filters h3 {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
  }
}

.product-card[data-slot="card"] {
  background: #fff !important;
}

@media (width <= 768px) {
  .filter-toggle-button {
    width: 100%;
    display: flex;
  }

  .filter-modal-overlay {
    display: block;
  }

  .filter-content {
    z-index: 999;
    background-color: #fff;
    width: 80%;
    max-width: 300px;
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    overflow-y: auto;
    box-shadow: -2px 0 10px #0000001a;
  }

  .filter-content.active {
    display: block;
  }

  .filter-header-mobile {
    display: flex;
  }
}


/* [project]/component/pagination/paginationStyles.css [app-client] (css) */
.pagination {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
  display: flex;
}

.pagination-btn {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  font-size: 14px;
  transition: all .2s;
  display: flex;
}

.pagination-btn:hover {
  background-color: #f5f5f5;
  border-color: #d0d0d0;
}

.pagination-btn.pagination-active {
  color: #fff;
  background-color: #2563eb;
  border-color: #2563eb;
}

.pagination-ellipsis {
  color: #666;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  font-size: 14px;
  display: flex;
}

@media (width <= 768px) {
  .pagination {
    gap: 4px;
  }

  .pagination-btn {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }
}


/*# sourceMappingURL=component_bb2303b7._.css.map*/