/* تعديل الألوان والـ padding لتناسب ألوان اللوجو وتكون أكثر أناقة */

body {
  font-family: 'Cairo', Arial, sans-serif;
  background-color: #f7fafc;
  margin: 0;
  padding: 0;
  direction: rtl;
  text-align: right;
}

/* Navbar */
.navbar {
  background: #1ebea5;
  color: #fff;
  padding: 0.7rem 0;
  box-shadow: 0 2px 8px rgba(30,190,165,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.logo {
  font-size: 1.7em;
  font-weight: bold;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(30,190,165,0.10);
  border: 2px solid #ff9800;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.2s;
  padding: 6px 14px;
  border-radius: 8px;
}
.nav-links li a:hover {
  background: #ff9800;
  color: #fff;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(120deg, #1ebea5 0%, #ff9800 100%);
  padding: 3.5rem 0 2.5rem 0;
  min-height: 320px;
}
.simple-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-logo {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  margin-bottom: 1.2rem;
  border: 2px solid #fff;
  object-fit: cover;
  box-shadow: 0 2px 12px rgba(30,190,165,0.13);
  background: #fff;
}
.hero-content h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 1px;
}
.hero-desc {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.hero-btn {
  background: #fff;
  color: #1ebea5;
  padding: 0.7rem 2.2rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30,190,165,0.10);
  transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
  background: #ff9800;
  color: #fff;
}

/* Product Catalog */
.catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  padding: 32px 18px;
  max-width: 1200px;
  margin: 32px auto 20px auto;
}

.product-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(30,190,165,0.10);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: right;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  border: 1.5px solid #e0f7fa;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 152, 0, 0.13);
  border-color: #ff9800;
}

.product-image {
  width: 100%;
  height: 210px;
  object-fit: fill;
  background: #f7fafc;
  padding: 18px 0;
}

.product-info {
  padding: 18px 18px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-name {
  margin: 0 0 10px;
  font-size: 1.25em;
  color: #1ebea5;
  font-weight: bold;
}

.product-rating {
  color: #ff9800;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.product-description {
  color: #555;
  font-size: 1em;
  margin-bottom: 15px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(90deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 7px 18px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  width: auto;
  min-width: 120px;
  box-shadow: 0 2px 8px rgba(37,211,102,0.10);
  letter-spacing: 0.5px;
  text-decoration: none;
}
.whatsapp-btn:hover {
  background: linear-gradient(90deg, #128c7e 0%, #25d366 100%);
  box-shadow: 0 4px 18px rgba(37,211,102,0.18);
}
.whatsapp-logo {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

/* About & Contact */
.about .container, .contact .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact a {
  color: #ff9800;
  text-decoration: underline;
}
.contact a:hover {
  color: #1ebea5;
}

/* Footer */
.footer {
  background: #1ebea5;
  color: #fff;
  text-align: center;
  padding: 18px 0 10px 0;
  margin-top: 40px;
  font-size: 1em;
}
.footer .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .navbar .container,
  .catalog,
  .about .container,
  .contact .container {
    padding: 0 10px;
  }
  .catalog {
    gap: 18px;
    padding: 18px 6px;
  }
  .hero {
    padding: 2.2rem 0 1.5rem 0;
  }
}
@media (max-width: 600px) {
  .navbar .container,
  .about .container,
  .contact .container {
    padding: 0 4px;
  }
  .catalog {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 10px 2px;
  }
  .hero-content h1 {
    font-size: 1.3rem;
  }
  .hero-logo {
    width: 60px;
    height: 60px;
  }
}