.products-hero {
  position: relative;
  background: radial-gradient(circle at 10% 15%, rgba(249, 64, 56, 0.08), transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(0, 0, 0, 0.04), transparent 45%);
  overflow: hidden;
}

.products-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80H160' stroke='%23f94038' stroke-opacity='0.08'/%3E%3Cpath d='M80 0V160' stroke='%23000000' stroke-opacity='0.05'/%3E%3Ccircle cx='80' cy='80' r='10' fill='%23f94038' fill-opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.products-hero .container {
  position: relative;
  z-index: 1;
}

.products-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.breadcrumb {
  color: #6a6a6a;
  font-size: 0.9rem;
}

.category-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  overflow: hidden;
}

.category-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  box-shadow: 0 14px 28px rgba(15, 15, 15, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 15, 15, 0.18);
  background: #fff8f7;
}

.category-cta {
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.category-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
}

.category-enquire {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 150px;
  justify-content: center;
  height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(249, 64, 56, 0.08);
  color: #f94038;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(249, 64, 56, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.category-enquire img {
  width: 18px;
  height: 18px;
}

.category-enquire:hover {
  background: rgba(249, 64, 56, 0.15);
  box-shadow: 0 10px 18px rgba(249, 64, 56, 0.25);
  transform: translateY(-1px);
}

.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-top: 24px;
}

.category-layout.hidden {
  display: none;
}

.filters {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.12);
  border: 1px solid rgba(249, 64, 56, 0.12);
  display: grid;
  gap: 16px;
  height: fit-content;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.filter-options {
  display: grid;
  gap: 8px;
}

.filter-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #555;
}

.price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.products-area {
  display: grid;
  gap: 16px;
}

.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 36px rgba(15, 15, 15, 0.12);
  border: 1px solid rgba(249, 64, 56, 0.12);
  display: grid;
  gap: 10px;
}

.product-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tag {
  background: rgba(249, 64, 56, 0.1);
  color: var(--red);
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
}

.product-actions {
  display: grid;
  gap: 8px;
}

.product-actions .btn {
  justify-content: center;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
}

@media (max-width: 980px) {
  .category-layout {
    grid-template-columns: 1fr;
  }
}
