/* ===== Active Nav Link ===== */
.active-link {
  color: #000 !important;
  font-weight: 600 !important;
  border-bottom: 2px solid #000;
  padding-bottom: 4px;
}

/* ===== Page Banner ===== */
.page-banner {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #222;
}
.banner-overlay {
  text-align: center;
  color: #fff;
  z-index: 1;
}
.banner-overlay h1 {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.banner-overlay p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  color: #ccc;
}

/* Kids specific banner */
.kids-banner {
  background: linear-gradient(135deg, #2d3436 0%, #636e72 50%, #b2bec3 100%);
}

/* ===== Filter Section ===== */
.filter-section {
  padding: 30px 40px;
  border-bottom: 1px solid #eee;
}
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-categories {
  display: flex;
  gap: 10px;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid #ddd;
  background-color: transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.filter-btn:hover {
  border-color: #222;
  color: #222;
}
.filter-btn.active {
  background-color: #222;
  color: #fff;
  border-color: #222;
}
.filter-sort select {
  padding: 10px 20px;
  border: 1px solid #ddd;
  font-size: 13px;
  outline: none;
  cursor: pointer;
  background-color: #fff;
  transition: border-color 0.3s ease;
}
.filter-sort select:focus {
  border-color: #222;
}

/* ===== Products Grid ===== */
.products-section {
  padding: 40px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.products-grid .card-item {
  min-width: unset;
  max-width: unset;
}

/* Animation for filter */
.products-grid .card-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.products-grid .card-item.hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
