/* Page */
.category-page {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

/* Header */
.category-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;

  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);

  background: linear-gradient(
    to left,
    #dbeafe, /* blue-100 */
    #eff6ff, /* blue-50 */
    #ffffff
  );
}

@media (min-width: 768px) {
  .category-header {
    flex-direction: row;
  }
}

/* Logo */
.category-logo {
  flex-shrink: 0;
  width: 8rem;
  height: 8rem;
  background-color: #f3f4f6;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .category-logo {
    width: 9rem;
    height: 9rem;
  }
}

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

/* Info */
.category-info {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .category-info {
    text-align: left;
  }
}

.cat-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #111827;
}

@media (min-width: 768px) {
  .category-title {
    font-size: 3rem;
  }
}

.category-description {
  margin-top: 0.5rem;
  color: #6b7280;
}

/* Mobile search */
.category-search-mobile {
  position: relative;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .category-search-mobile {
    display: none;
  }
}

.category-search-clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  background: none;
  border: none;
  cursor: pointer;
}

.category-search-clear:hover {
  color: #000000;
}

/* Loader */
.category-loader {
  display: flex;
  justify-content: center;
  padding: 5rem 0;
}

/* Empty */
.category-empty {
  text-align: center;
  padding: 2.5rem 0;
  color: #6b7280;
  font-size: 1.125rem;
  font-weight: 600;

}

.category-empty && highlight {
  font-weight: 700;
  color: #111827;
}
.parent-products {
  margin-bottom: 2rem;
}

/* Parent child */
.category-child {
  margin-bottom: 2rem;
}

.category-child-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

/* Child title */
.category-child-title {
  position: relative;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111827;
  cursor: pointer;
}

.category-child-underline {
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 5rem;
  height: 0.25rem;
  background-color: #000000;
  border-radius: 9999px;
}

/* Explore button */
.category-explore-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  padding: 0.5rem 1rem;
  border-radius: 9999px;

  border: 1px solid #000000;
  background-color: transparent;

  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;

  transition: all 0.3s ease;
}

.category-explore-btn:hover {
  background-color: #000000;
  color: #ffffff;
}

.explore-text {
  display: none;
}

@media (min-width: 768px) {
  .explore-text {
    display: inline;
  }
}
