/* ====================================
   PRODUCTS STYLES
   ==================================== */

/* App Card Specific Overrides */
.apps-grid .product-card {
    position: relative;
}

.product-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.product-stat {
    flex: 1;
    text-align: center;
}

.product-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
}

.product-stat-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.25rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: auto;
    text-align: center;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        flex: none;
    }
}