body {
  font-family: 'Tajawal', sans-serif;
  color: #1b1b1b;
}

/* Hero */
.hero-section {
  background-color: #faf9f7;
}
.hero-img {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Product cards */
.ms-card {
  transition: 0.25s ease;
  border-radius: 10px;
}
.ms-card img {
  aspect-ratio: 3/4;
  object-fit: cover;
}
.ms-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Promo banner */
.promo-section {
  background-color: #f3f2f1;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 1200px;
}
.promo-eyebrow {
  color: #6e5636;
  letter-spacing: 1px;
}
.promo-img {
  border-radius: 12px;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* Store features */
.feature-icon {
  font-size: 1.8rem;
  color: #6e5636;
}
.feature-item h6 {
  font-size: 0.95rem;
}

/* Buttons */
.btn-dark:hover {
  background-color: #6e5636;
  border-color: #6e5636;
}

/* Section spacing */
section {
  scroll-margin-top: 80px;
}