
.blushora-catalogue h1, .blushora-catalogue h2, .blushora-catalogue h3 {
  color: #78350F;
  text-align: center;
}

.blushora-catalogue {
  font-family: 'Poppins', sans-serif;
  background: #fffaf7;
  color: #444;
}

.blushora-catalogue .categories {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.blushora-catalogue .category {
  background: #FEF3C7;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  color: #78350F;
  font-weight: 600;
  transition: all 0.3s;
}

.blushora-catalogue .category:hover,
.blushora-catalogue .category.active {
  background: #78350F;
  color: #fff;
}

.blushora-catalogue .product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.blushora-catalogue .card {
  width: 290px;
  height: 505px;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  padding: 16px;
  font-family: 'Montserrat', sans-serif;
}

.blushora-catalogue .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.blushora-catalogue .card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.blushora-catalogue .bestseller {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fcd34d;
  color: #78350F;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 12px;
}

.blushora-catalogue .card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #78350F;
  margin: 12px 0 4px;
  font-family: 'Montserrat', sans-serif;
}

.blushora-catalogue .card-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.blushora-catalogue .card-specs {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  color: #555;
  gap: 8px 16px;
  margin-bottom: 10px;
}

.blushora-catalogue .card-specs div {
  flex: 1 1 45%;
}

.blushora-catalogue .price {
  font-size: 18px;
  color: #78350F;
  font-weight: bold;
  margin-bottom: 8px;
}
.blushora-catalogue .details-btn {
  background: #fef3c7;
  color: #78350F;
  padding: 4px 12px;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  font-size: 100%;
  border-radius: 0.5rem;
  transition: background 0.3s;
}

.blushora-catalogue .details-btn:hover {
  background: #fde68a;
}

.blushora-catalogue .filter-section {
  text-align: center;
  margin: 30px auto;
}

.blushora-catalogue .filter-section select {
  padding: 8px 16px;
  font-size: 16px;
  border-radius: 20px;
  border: 1px solid #ccc;
}
