/* Products Grid Styles */
.products-grid {
    direction: rtl;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.product-card img {
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.donate-product-btn {
    transition: all 0.3s ease;
}

.donate-product-btn:hover {
    background-color: #1e3a21 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 85, 48, 0.3);
}

.donate-product-btn:active {
    transform: translateY(0);
}

.product-quantity {
    transition: border-color 0.3s ease;
}

.product-quantity:focus {
    outline: none;
    border-color: #2c5530 !important;
    box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.2);
}

/* تحسينات للشاشات الصغيرة */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr !important;
        padding: 1rem !important;
        gap: 1rem !important;
    }
    
    .product-card {
        padding: 1rem !important;
    }
    
    .product-card h3 {
        font-size: 1.1rem !important;
    }
    
    .donate-product-btn {
        padding: 0.7rem 1rem !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .products-grid {
        padding: 0.5rem !important;
    }
    
    .product-card {
        padding: 0.8rem !important;
    }
}

/* تأثيرات التحميل */
.product-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.product-card.loading .donate-product-btn {
    background-color: #ccc !important;
    cursor: not-allowed;
}

/* تحسين عرض الأسعار */
.product-card .price {
    background: linear-gradient(135deg, #d2691e, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* تحسين النصوص */
.product-card h3 {
    line-height: 1.4;
    word-wrap: break-word;
}

.product-card p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}