body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffafc;
  color: #333;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 40px 20px;
  background-color: #f3e6ea;
}

header img {
  width: 200px;
  max-width: 100%;
}

header h1 {
  margin: 20px 0 10px;
  font-size: 2em;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 15px;
  font-size: 1em;
}

.whatsapp-btn i {
  margin-left: 8px;
}

.about {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.gallery {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.gallery h2 {
  text-align: center;
  margin-bottom: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.products {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.products h2 {
  text-align: center;
  margin-bottom: 30px;
}

.product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product {
  background-color: #fef2f5;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.product img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product h3 {
  margin: 10px 0;
  font-size: 1.2em;
}

.product p {
  font-size: 0.95em;
  margin-bottom: 15px;
}

.product .whatsapp-btn {
  background-color: #25D366;
  padding: 10px 20px;
  font-size: 0.9em;
  display: inline-block;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.contact-form {
  background-color: #f9f9f9;
  padding: 30px 20px;
  max-width: 600px;
  margin: 60px auto;
  border-radius: 10px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: right;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  direction: rtl;
}

.contact-form button {
  background-color: #d44f87;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
}
