/* بطاقات المنتجات - محسنة للجوالات */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: var(--bg-secondary);
}

.product-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.product-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.6em;
}

.product-market {
    font-size: 0.7rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-market i {
    font-size: 0.65rem;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2px 0;
}

.product-actions {
    display: flex;
    gap: 6px;
    margin-top: auto;
}

.product-actions .btn {
    flex: 1;
    padding: 0.35rem 0.5rem;
    font-size: 0.7rem;
    justify-content: center;
}

.product-actions .btn i {
    font-size: 0.85rem;
}

/* تحسينات للشاشات الصغيرة جداً */
@media (max-width: 400px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-img {
        height: 120px;
    }

    .product-name {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 0.9rem;
    }
}

/* للشاشات المتوسطة */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .product-img {
        height: 160px;
    }
}

/* للشاشات الكبيرة */
@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }

    .product-img {
        height: 180px;
    }

    .product-name {
        font-size: 0.9rem;
    }
}

/* شارة العرض */
.offer-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.product-card {
    position: relative;
}

/* السعر الأصلي المشطوب */
.original-price {
    font-size: 0.75rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-right: 6px;
}