body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}

header {
  background: #111;
  color: white;
  padding: 20px;
  text-align: center;
}

.filters {
  display: flex;
  gap: 10px;
  margin: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filters input,
.filters select {
  padding: 10px;
  border-radius: 5px;
  border: none;
  width: 200px;
}

#product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product {
  background: white;
  padding: 15px;
  border-radius: 10px;
}

.product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.price {
  font-weight: bold;
  margin: 10px 0;
}

.actions {
  display: flex;
  gap: 10px;
}

.actions a {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.whatsapp {
  background: #25D366;
}

.call {
  background: #007bff;
}

/* MOBILE */
@media (max-width: 600px) {
  .filters input,
  .filters select {
    width: 100%;
  }

  .actions {
    flex-direction: column;
  }
}
.about {
  max-width: 800px;
  margin: 30px auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
}

.about section {
  margin-bottom: 25px;
}

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

.about ul {
  padding-left: 20px;
}

.contact-box {
  text-align: center;
}

.contact-box a {
  display: inline-block;
  margin: 10px;
  padding: 12px 18px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.contact-box .call {
  background: #111;
}

.contact-box .whatsapp {
  background: #25D366;
}

footer {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  color: #666;
}
.nav {
  margin-top: 10px;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: bold;
}

.nav a:hover {
  text-decoration: underline;
}
.footer {
  background: #111;
  color: #fff;
  padding: 20px;
  margin-top: 40px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin-bottom: 8px;
}
.markets {
  background: #ffffff;
  margin: 20px;
  padding: 20px;
  border-radius: 12px;
}

.markets h2 {
  text-align: center;
  margin-bottom: 10px;
}

.markets p {
  text-align: center;
  color: #444;
}

.markets ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.markets li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
}

.markets-note {
  margin-top: 15px;
  font-size: 14px;
  color: #555;
  text-align: center;
}

/* Mobile friendly */
@media (max-width: 600px) {
  .markets {
    margin: 10px;
    padding: 15px;
  }
}
.product-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

.product-description.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.read-more {
  background: none;
  border: none;
  color: #0a66c2;
  cursor: pointer;
  padding: 0;
  margin-top: 6px;
  font-size: 14px;
}

