/**
 * Mobile Styles - KEIN Accordion, IMMER offen
 */

@media (max-width: 768px) {
    
    /* Card ist NICHT klickbar */
    .product-card {
        cursor: default;
        user-select: auto;
    }
    
    /* KEIN Expand Icon */
    .product-card-expand-icon {
        display: none !important;
    }
    
    /* Prices Container - IMMER sichtbar */
    .product-card-prices {
        max-height: none !important;
        overflow: visible !important;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid #f3f4f6;
    }
    
    /* Header hat Border */
    .product-card-header {
        margin-bottom: 0;
        padding-bottom: 10px;
        border-bottom: 1px solid #f3f4f6;
    }
    
    /* Price Rows - Sofort sichtbar */
    .product-card-price-row {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* KEIN Hint */
    .product-card::after {
        display: none !important;
    }
}

