.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  width: 75%;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 0.9rem;
  background-color: #0f62a0;
  color: white;
}

.subtitle {
  margin-bottom: 2rem;
  color: #555;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.card h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.5rem;
}

.price {
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

.explore-btn {
  background: #ff4668;
  color: #fff;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 4px;
  display: inline-block;
  padding: 7px 12px;
  margin-bottom: 1rem;
  transition: background 0.3s ease;
}

.explore-btn:hover {
  background: #d1c8c9;
}



.pagination {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
}

.page {
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page:hover {
  background-color: #c82020;
}

.page.active a{
  background-color: #ff4668;
  color: #d1c8c9;
}