/* =======================
   🎨 إعداد الألوان العامة
   ======================= */
:root {
  --main-color: #C61537;
  --main-hover: #a0102d;
  --bg-color: #ffffff;
  --text-color: #1a1a1a;
}

/* =======================
   🌍 أساس التنسيق العام
   ======================= */
body {
  font-family: 'Tajawal', sans-serif !important;
  background-color: var(--bg-color) !important;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.7;
  scroll-behavior: smooth;
  margin: 0;
}

/* =======================
   🏷 العناوين
   ======================= */
h1, h2, h3, h4, h5, h6 {
  color: var(--main-color) !important;
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
}
h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--main-color);
  margin-top: 6px;
  border-radius: 5px;
}

/* =======================
   🔗 الروابط
   ======================= */
a {
  color: var(--main-color) !important;
  text-decoration: none !important;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--main-hover) !important;
  text-decoration: underline !important;
}

/* =======================
   🖼 الصور والبنرات والسلايدر
   ======================= */
img, .banner img, .carousel img, .slider img {
  background: transparent !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  transition: transform 0.4s ease, filter 0.3s ease;
}
img:hover {
  transform: scale(1.03);
  filter: brightness(1.03);
}

/* =======================
   🔘 أزرار الموقع
   ======================= */
button, .btn, .button, .btn-primary, .button-primary {
  background-color: var(--main-color) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 5px 15px rgba(198, 21, 55, 0.25);
  transition: all 0.3s ease-in-out;
}
button:hover, .btn:hover, .button:hover, .btn-primary:hover, .button-primary:hover {
  background-color: var(--main-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 21, 55, 0.35);
}

/* =======================
   🛍️ كروت المنتجات
   ======================= */
.product-card, .product-item, .product-box {
  background-color: var(--bg-color) !important;
  border-radius: 20px !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06) !important;
  overflow: hidden;
  padding: 18px !important;
  border: 1px solid #f1f1f1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08) !important;
}
.product-card img {
  border-radius: 12px;
}

/* =======================
   💰 الأسعار
   ======================= */
.price, .product-price, .new-price, .product-box .price {
  color: var(--main-color) !important;
  font-weight: 700;
  font-size: 17px;
  margin-top: 8px;
}

/* =======================
   🧭 السهم يمين/يسار في القوائم
   ======================= */
.sub-arrow, .dropdown-toggle::after, .navbar .dropdown-toggle::after,
.slick-prev:before, .slick-next:before {
  color: #fff !important;
  fill: #fff !important;
  opacity: 1 !important;
}

/* =======================
   👤 أيقونة الحساب
   ======================= */
.icon-account, .user-login-icon, .fa-user, .account-icon {
  color: #fff !important;
}

/* =======================
   🏷 شارات وبادجات الموقع
   ======================= */
.badge, .feature-badge, .tag-feature, .product-badge, .label-feature {
  background-color: var(--main-color) !important;
  color: #fff !important;
  border: none !important;
}

/* =======================
   📦 مميزات المتجر - الدوائر
   ======================= */
.s-block--features__item .feature-icon {
  margin-bottom: 0.75rem;
  display: flex;
  height: 4rem;
  width: 4rem;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50% !important;
  background-color: var(--main-color) !important;
}
.s-block--features__item .feature-icon i {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #fff !important;
}

/* =======================
   📞 زر واتساب عائم
   ======================= */
.sahar-whatsapp-btn,
body > a[href*="wa.me"] {
  position: fixed !important;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background: var(--main-color);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-size: 16px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  gap: 7px;
}
.sahar-whatsapp-btn:hover,
body > a[href*="wa.me"]:hover {
  background-color: var(--main-hover) !important;
}

/* =======================
   📰 الفوتر (Footer)
   ======================= */
footer {
  background-color: var(--bg-color) !important;
  padding: 50px 20px;
  font-size: 14px;
  color: #444;
  border-top: 1px solid #eee;
}
footer h4, footer h5 {
  color: var(--main-color) !important;
  font-weight: 700;
}
footer a {
  color: var(--main-color) !important;
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--main-hover) !important;
  text-decoration: underline;
}

/* =======================
   🧭 شريط البحث
   ======================= */
.search-input, input[type="search"] {
  border-radius: 50px !important;
  padding: 12px 20px !important;
  border: 1px solid #ddd !important;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-input:focus, input[type="search"]:focus {
  border-color: var(--main-color) !important;
  box-shadow: 0 0 0 3px rgba(198,21,55,0.1);
}

/* =======================
   🏁 الأقسام والعناوين
   ======================= */
.section-title, .home-section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 24px;
}

/* =======================
   ⬆️ زر الرجوع لأعلى
   ======================= */
.back-to-top {
  background-color: var(--main-color) !important;
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(198,21,55,0.3);
  transition: background 0.3s ease;
}
.back-to-top:hover {
  background-color: var(--main-hover) !important;
}

/* =======================
   📱 استجابة للشاشات الصغيرة
   ======================= */
@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.5;
  }
  h2::after {
    width: 30px;
  }
  button, .btn, .button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .product-card, .product-item, .product-box {
    padding: 12px !important;
  }
  .sahar-whatsapp-btn,
  body > a[href*="wa.me"] {
    bottom: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

/* =======================
   📱 تابلت
   ======================= */
@media (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 14.5px;
  }
  h2::after {
    width: 35px;
  }
  button, .btn, .button {
    padding: 11px 24px;
    font-size: 14.5px;
  }
}
<div class="grid grid-cols-2 gap-4 px-4 py-6">
  <!-- بانر 1 -->
  <a href="#" class="block overflow-hidden rounded-xl shadow-md transition-transform duration-300 hover:scale-105">
    <img src="your-banner1.jpg" alt="لحافات" class="w-full h-auto object-cover rounded-xl" />
  </a>

  <!-- بانر 2 -->
  <a href="#" class="block overflow-hidden rounded-xl shadow-md transition-transform duration-300 hover:scale-105">
    <img src="your-banner2.jpg" alt="مخدات" class="w-full h-auto object-cover rounded-xl" />
  </a>
</div>