/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GENERAL */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
}

nav .logo {
  font-weight: bold;
  font-size: 1.2em;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* HEADER */
header {
  text-align: center;
  padding: 60px 20px;
  background-color: #f2f2f2;
}

header h1 {
  margin-bottom: 10px;
}

header p {
  margin-bottom: 20px;
}

.order-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background 0.3s;
}

.order-btn:hover {
  background-color: #128C7E;
}

/* PRODUCTS */
.products {
  padding: 40px 20px;
  background-color: #fafafa;
}

.products h2 {
  text-align: center;
  margin-bottom: 30px;
}

.product-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin: 15px;
  padding: 15px;
  text-align: center;
  width: 280px;
}

.product img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.status {
  margin: 10px 0;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
}

.disponible {
  background-color: #d4edda;
  color: #155724;
}

.indisponible {
  background-color: #f8d7da;
  color: #721c24;
}

/* ABOUT */
.about {
  padding: 40px 20px;
  text-align: center;
  background-color: #f2f2f2;
}

.about h2 {
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  text-align: center;
  background-color: #25D366;
  color: white;
  padding: 20px;
  font-size: 0.9em;
}

footer a {
  color: white;
  text-decoration: underline;
}
nav .logo img {
  height: 40px;
  margin-right: 8px;
  vertical-align: middle;
}