@media (max-width: 768px) {

  /* (1) الصف = شريط تمرير أفقي يمين/يسار */
  *:has(> * > .product-item) {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    gap: 12px !important;
    padding: 4px 10px 14px !important;
    scrollbar-width: none !important;
  }
  *:has(> * > .product-item)::-webkit-scrollbar { display: none !important; }

  /* (2) كل عمود = شريحة بعرض ~نصف الشاشة (يظهر منتجان + إطلالة على الثالث) */
  *:has(> .product-item) {
    flex: 0 0 46% !important;
    width: 46% !important;
    max-width: 46% !important;
    min-width: 46% !important;
    scroll-snap-align: start !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    height: auto !important;
  }

  /* (3) البطاقة داخل الشريحة */
  .product-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    max-height: unset !important;
    margin: 0 !important;
    float: none !important;
  }

  /* (4) صورة المنتج */
  .product-item img {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  /* (5) عنوان المنتج: سطران كحد أقصى */
  .product-item .product-title > span {
    height: 40px !important;
    overflow: hidden !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  /* (6) منطقة الشارة/المواصفات لا تقص السعر */
  .product-item .product-crd-spec {
    height: auto !important;
    overflow: visible !important;
    font-size: 11px !important;
  }

  /* (7) السعر يظهر دائمًا */
  .product-item [class*="price"] {
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  /* (8) زر "أضف إلى السلة" */
  .product-item .yasmeen-product-info .yasmeen-product-info-btn,
  .product-item .yasmeen-product-info-btn {
    height: auto !important;
    min-height: 0 !important;
    font-size: 12px !important;
    padding: 8px 5px !important;
  }

  /* (9) أيقونة المفضّلة أصغر */
  .product-item [class*="wishlist"],
  .product-item [class*="favorite"] {
    width: 30px !important;
    height: 30px !important;
  }
}


body .footer .google-app-stores,
body .footer .google-app-stores *{
	display: none !important;
}