body {
    font-family: 'Vazir', sans-serif;
    background-color: #F3F4F6;
  }
  
  .product-card {
    transition: transform 0.3s;
  }
  
  .product-card:hover {
    transform: scale(1.05);
  }
  
  .filter-btn { margin: 5px; }
  
  .promo-card {
    background: linear-gradient(135deg, #F97316, #FFBB33);
    color: white;
  }
  
  .newsletter-section {
    background-color: #fff;
    padding: 60px 0;
  }
  
  .footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0;
  }
  
  .product-icon {
    font-size: 1.5rem;
    margin-right: 10px;
  }
  
  :root{
    --primary: #4CAF50;
    --accent: #FFC107;
    --bg: #F6F7F9;
    --text: #212529;
  }

  /* Soft background sections */
  section.bg-soft { background: var(--bg); }

  /* Product card */
  .card.product-card img { object-fit: cover; height: 200px; }

  /* Blog card */
  .card.blog-card img { object-fit: cover; height: 160px; }

  /* CTA section */
  .cta-section { background: var(--primary); color: #fff; }

  /* FAQ / accordion tweaks (if used later) */
  .accordion-button { background: #fff; }

  /* Responsive */
  @media (max-width: 767px) {
    .hero-image { min-height: 48vh; background-position: center 30%; }
    .hero-inner { padding: 2.5rem 1rem; }
    .hero-inner .display-5 { font-size: 1.6rem; }
  }