/* SPECIÁLNÍ PŘEPIS STYLŮ PRO MOBILNÍ ZOBRAZENÍ MENU - VERZE 2.1 */

@media (max-width: 768px) {
    /* Agresivní odstranění všech podkladů a ohraničení - globální reset */
    .menu-item,
    .menu-item *,
    .menu-items .menu-item,
    .menu-items .menu-item *,
    .menu-content .menu-item,
    .menu-content .menu-item *,
    body .menu-item,
    body .menu-item *,
    html .menu-item,
    html .menu-item * {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }
    
    /* Speciálně pro kontejner názvu jídla */
    .menu-item-content,
    .menu-item .menu-item-content,
    body .menu-item .menu-item-content,
    .menu-content .menu-item .menu-item-content,
    .menu-items .menu-item .menu-item-content {
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Speciálně pro samotný text jídla */
    .menu-item-content h3,
    .menu-item .menu-item-content h3,
    body .menu-item .menu-item-content h3,
    .menu-content .menu-item .menu-item-content h3,
    .menu-items .menu-item .menu-item-content h3 {
        background: transparent !important;
        background-color: transparent !important;
        box-shadow: none !important;
        border: none !important;
        text-shadow: none !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        word-break: break-word !important;
        word-wrap: break-word !important;
    }
    
    /* Zviditelnění názvů sekcí (Hlavní jídla a Polévky) */
    .menu-section-title,
    .menu-items .menu-section-title,
    .menu-section .menu-section-title,
    body .menu-section-title {
        display: block !important;
        font-weight: bold !important;
        font-size: 1.1rem !important;
        color: #333 !important;
        margin: 15px 0 10px 0 !important;
        padding: 5px 10px !important;
        background-color: #f5f5f5 !important;
        border-radius: 4px !important;
        border-left: 3px solid #ff7700 !important;
        text-align: left !important;
    }
    
    /* Zachování struktury položky */
    .menu-item,
    body .menu-item,
    .menu-content .menu-item {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        grid-gap: 10px !important;
        padding: 8px 0 !important;
        margin-bottom: 8px !important;
        align-items: start !important;
    }
    
    /* Jemné oddělovače mezi položkami */
    .menu-item + .menu-item {
        border-top: 1px solid rgba(0,0,0,0.03) !important;
        padding-top: 8px !important;
    }
    
    /* Cena a gramáž */
    .menu-item .price {
        font-weight: bold !important;
        min-width: 50px !important;
        text-align: right !important;
    }
    
    .menu-item .portion {
        font-size: 0.85rem !important;
        min-width: 40px !important;
        color: #666 !important;
    }
    
    /* Lepší vizuální oddělení dnů v týdnu */
    .menu-category {
        margin-bottom: 20px !important;
        border-bottom: 1px solid #eaeaea !important;
        padding-bottom: 10px !important;
    }
    
    .menu-category h3 {
        font-size: 1.2rem !important;
        color: #333 !important;
        margin-bottom: 15px !important;
        padding: 8px 10px !important;
        background-color: #f0f0f0 !important;
        border-radius: 4px !important;
        text-align: center !important;
    }
}

/* Extrémní řešení pro některé browsery */
@media (max-width: 768px) {
    /* Přímé inline styly přes JavaScript - tohle by mělo fungovat za všech okolností */
    .force-transparent {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        box-shadow: none !important;
        border: none !important;
    }
}