.page-header {
  background: var(--primary-color);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 1.1rem;
  opacity: 0.9;
}

.page-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  padding: 60px 20px;
  min-height: 50vh;
}

.filters {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filters h3 {
  margin-bottom: 20px;
  color: var(--text-dark);
  font-size: 1.2rem;
  border-bottom: 2px solid var(--bg-color);
  padding-bottom: 10px;
}

.filters ul li a {
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 5px;
  color: #555;
  transition: var(--transition);
  font-weight: 500;
}

.filters ul li a:hover, .filters ul li a.active {
  background: var(--primary-color);
  color: var(--white);
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  background: var(--accent-color);
  color: var(--text-dark);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.product-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.product-card .btn {
  width: 100%;
  padding: 12px;
  margin-top: auto;
}
