/* product.css */
@import url('https://fonts.googleapis.com/css2?family=Ribeye&display=swap');
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: rgb(24, 43, 68);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Ribeye", serif;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav ul li a:hover {
  color: rgb(189, 195, 202);
  text-decoration: underline;
}
.nav-links a {
  color: white;
  text-decoration: none;
}

main {
  padding: 2rem;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.product-card img {
  max-width: 100%;
  height: 245px;
  width: 245px;
  border-radius: 10px;
}

.product-card button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgb(24, 43, 68);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.no-products {
  text-align: center;
  font-size: 1.2rem;
  color: #888;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color:rgb(24, 43, 68);
  color: white;
}
