.product-slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     opacity: 0;
     transition: opacity 0.5s ease;
     will-change: opacity;
     backface-visibility: hidden;
 }

 .product-slide.active {
     opacity: 1;
     position: relative;
 }

 .product-slides {
     position: relative;
     height: 100%;
 }

 /* تحسينات التصميم للهواتف */
 @media (max-width: 768px) {
     .products-grid {
         grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
         gap: 12px;
     }

     .product-card {
         padding: 8px;
     }

     .product-name {
         font-size: 13px;
         line-height: 1.3;
         margin: 5px 0;
         font-weight: bold;
         color: #333;
         text-align: center;
     }
 }

 /* تصميم اسم المنتج */
 .product-name {
     font-size: 16px;
     font-weight: bold;
     color: #333;
     margin: 10px 0;
     text-align: center;
     line-height: 1.4;
     height: 1.2em;
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
 }

 /* تحسينات التحميل التدريجي للصور */
 img.lazy {
     opacity: 0;
     transition: opacity 0.3s;
 }

 img.lazy.loaded {
     opacity: 1;
 }

 /* تحميل لانهائي */
 .loading-indicator {
     display: none;
     text-align: center;
     padding: 20px;
     font-size: 18px;
     color: #4CAF50;
 }

 .loading-indicator.active {
     display: block;
 }

 .no-more-products {
     text-align: center;
     padding: 20px;
     font-size: 16px;
     color: #666;
     grid-column: 1 / -1;
 }
