 body {      font-family: 'Segoe UI', sans-serif;      background-color: #fff0D5;      margin: 0;      padding: 0;    }.container {
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: 24px;
  color: #7e1e41;
  margin-bottom: 10px;
}

.filter-buttons {
  margin-bottom: 20px;
}

.filter-buttons button {
  padding: 8px 16px;
  margin-right: 10px;
  border: 1px solid #e3b97e;
  background-color: transparent;
  color: #7e1e41;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}

.filter-buttons .active {
  background-color: #7e1e41;
  color: white;
  border: none;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 50px;
}

.card {  width: 300px;  background-color: #FFF4E0;  border-radius: 12px;  padding: 10px;  display: flex;  flex-direction: column;  align-items: center;  transition: transform 0.3s ease, box-shadow 0.3s ease; /* smooth effect */  cursor: pointer;}.card:hover {  transform: translateY(-8px) scale(1.03); /* lift & zoom */  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* shadow effect */}.card-image {  width: 100%;  height: auto;  border-radius: 10px;  margin-bottom: 10px;  object-fit: cover;  transition: transform 0.3s ease; /* smooth zoom effect */}.card:hover .card-image {  transform: scale(1.05); /* zoom image slightly */}.card-content {  text-align: center;}.card-content .title {  color: #7e1e41;  font-size: 14px;  margin-bottom: 6px;  transition: color 0.3s ease;}.card:hover .card-content .title {  color: #b52a5d; /* darker on hover */}.card-content .stock {  font-size: 11px;  color: #7e7e7e;}

.view-btn {
  margin-top: 5px;
  padding: 10px 50px;;
  background-color: #faaa00;
  border: none;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 13px;
}

.view-more-container {
  text-align: center;
  margin: 30px 0;
}

.view-more {
  padding: 8px 24px;
  background-color: #7e1e41;
  color: white;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
}