/* [project]/src/styles/CategoryPage.css [app-client] (css) */
.category-page {
  color: #333;
  background-color: #f8f9fa;
  min-height: 100vh;
}

.breadcrumb {
  color: #000;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1.5rem 2rem;
  font-size: .9rem;
}

.breadcrumb-container {
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.breadcrumb span {
  cursor: pointer;
  color: #4b4949;
  transition: color .2s;
}

.breadcrumb-container a {
  color: #000;
  font-weight: 600;
}

.breadcrumb span:hover {
  color: #000;
}

.cms-category {
  padding-top: 30px;
  padding-bottom: 60px;
}

.category-banner {
  padding-bottom: 30px;
}

.category-banner img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.category-banner h1 {
  color: #000;
  text-align: center;
}

.category-description {
  text-align: center;
  color: #555;
  background: #fff;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
}

.mobile-filter-toggle {
  color: #000;
  cursor: pointer;
  background: #fff;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: 10px 10px 10px 0;
  font-weight: 600;
  transition: all .2s;
  display: none;
}

.category-content {
  display: flex;
  position: relative;
}

.filters-sidebar {
  background: #fff;
  width: 280px;
  height: -moz-fit-content;
  height: fit-content;
  margin-right: 2rem;
  padding: 1.5rem;
  position: -webkit-sticky;
  position: sticky;
  top: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .17);
}

.filter-section {
  color: #000;
  border-bottom: 1px solid #eee;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
}

button.load-more-btn {
  color: #fff;
  cursor: pointer;
  background: #000;
  border: 1px solid #000;
  padding: 3px 8px;
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-section h3 {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
}

.filter-arrow {
  transition: transform .3s;
}

.filter-section.active .filter-arrow {
  transform: rotate(180deg);
}

.price-inputs-container {
  gap: 1rem;
  margin-top: 1rem;
  display: flex;
}

.price-input {
  flex: 1;
}

.price-input label {
  color: #666;
  margin-bottom: .5rem;
  font-size: .9rem;
  display: block;
}

.price-input input {
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  padding: .6rem;
  font-size: .9rem;
}

.category-filters, .brand-filters {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-filters li, .brand-filters li {
  margin: .8rem 0;
}

.filter-checkbox {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-items: center;
  gap: .8rem;
  padding-left: 28px;
  display: flex;
  position: relative;
}

.filter-checkbox input {
  opacity: 0;
  cursor: pointer;
  width: 0;
  height: 0;
  position: absolute;
}

.checkmark {
  border: 1px solid #ddd;
  border-radius: 3px;
  width: 18px;
  height: 18px;
  transition: all .2s;
  position: absolute;
  left: 0;
}

.filter-checkbox:hover input ~ .checkmark {
  border-color: #999;
}

.filter-checkbox input:checked ~ .checkmark {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.checkmark:after {
  content: "";
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  width: 5px;
  height: 10px;
  display: none;
  position: absolute;
  top: 1px;
  left: 5px;
  transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.close-mobile-filters {
  color: #000;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 50%;
  padding: .5rem;
  font-size: 1.5rem;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
}

.close-mobile-filters:hover {
  background-color: #f5f5f5;
}

.products-section {
  flex: 1;
}

.products-controls {
  background: #fff;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 12px 1.5rem;
  display: flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .17);
}

.products-count {
  color: #000;
  font-size: .9rem;
}

.sort-controls {
  align-items: center;
  gap: 1.5rem;
  display: flex;
}

.sort-select-wrapper {
  position: relative;
}

.sort-select-wrapper:after {
  content: "▼";
  pointer-events: none;
  color: #666;
  font-size: .6rem;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

.sort-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
  padding: .6rem 2rem .6rem 1rem;
  font-size: .9rem;
  transition: border-color .2s;
}

.sort-select:hover {
  border-color: #999;
}

.view-toggle {
  background: #f5f5f5;
  border-radius: 4px;
  gap: .5rem;
  padding: .3rem;
  display: flex;
}

.view-toggle button {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  padding: .5rem;
  transition: all .2s;
  display: flex;
}

.view-toggle button:hover {
  background: #e0e0e0;
}

.view-toggle button.active {
  background: #1a1a1a;
}

.view-toggle button.active .lucide {
  stroke: #fff;
}

.products-grid {
  gap: 1.5rem;
  display: grid;
}

.products-grid.grid {
  grid-template-columns: repeat(4, 1fr);
}

.products-grid.list {
  grid-template-columns: 1fr;
}

.products-grid.list .product-card .product-content {
  padding: 0;
}

.products-grid.list .product-card .product-content-box {
  padding: 30px 20px;
}

.products-grid.list .product-card .product-content-box .sort-des {
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 22px;
  display: -webkit-box;
  overflow: hidden;
}

.products-grid.list .product-card .product-footer {
  margin-top: 10px;
}

.products-grid.list .product-card {
  grid-template-columns: 1fr 2fr;
  gap: 1.5rem;
  display: grid;
}

.products-grid.list .product-image {
  height: 100%;
}

.products-grid.list h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.products-grid.list .product-content .price ins, .products-grid.list .product-content .price {
  font-size: 1.325rem;
}

.products-grid.list .add-to-cart-btn {
  position: unset;
  width: auto;
  height: auto;
  padding: .8rem 2rem;
}

.product-card .product-footer {
  opacity: 1;
  transform: translateY(0);
}

.pagination {
  justify-content: center;
  align-items: center;
  gap: .5rem;
  margin-top: 3rem;
  display: flex;
}

.pagination button {
  cursor: pointer;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  transition: all .2s;
  display: flex;
}

.pagination button.active {
  color: #fff;
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.pagination button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.apply-price-filter {
  color: #fff;
  cursor: pointer;
  background-color: #000;
  border: none;
  border-radius: 4px;
  width: 100%;
  margin-top: 10px;
  padding: 8px 16px;
  font-weight: 500;
  transition: background-color .2s;
}

.apply-price-filter:hover {
  background-color: #333;
}

@media (max-width: 1024px) {
  .products-grid.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-filter-toggle {
    display: flex;
  }

  .filters-sidebar {
    z-index: 999999;
    width: 90%;
    max-width: 350px;
    height: 100vh;
    margin-right: 0;
    transition: left .3s;
    position: fixed;
    top: 0;
    left: -100%;
    overflow-y: auto;
  }

  .filters-sidebar.mobile-visible {
    left: 0;
  }

  .close-mobile-filters {
    display: block;
  }

  .category-content {
    flex-direction: column;
  }

  .products-grid.grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .breadcrumb, .view-toggle, span.products-count {
    display: none;
  }

  .products-controls {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .products-controls {
    box-shadow: none;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 15px;
  }

  .pagination {
    flex-wrap: wrap;
  }
}

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