/* ============================================================================
   FACEM.LIVE - CARD BUTTONS FIX
   ============================================================================
   Fix DOAR pentru butoanele din cards (.card)
   NU atinge navbar-ul!
   ============================================================================ */

@media (max-width: 768px) {
    
    /* ============================================
       FIX CARD BUTTONS - Specific și izolat
       ============================================ */
    
    /* Reset butoanele din cards la position normal */
    .card a[class*="btn"],
    .card button,
    .card a[class*="cta"] {
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        bottom: auto !important;
        max-width: 100% !important;
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        margin: 0.5rem 0 !important;
        padding: 0.75rem 1rem !important;
        font-size: 14px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    /* Asigură că card-ul are position relative */
    .card {
        position: relative !important;
    }
    
    /* Container pentru butoane în card */
    .card > a[class*="btn"]:last-child,
    .card > button:last-child {
        margin-top: 1rem !important;
    }
}

/* ============================================================================
   NOTES:
   - Acest fișier fixează DOAR butoanele din .card
   - NU atinge body > a (navbar buttons)
   - NU atinge hamburger
   - NU atinge logo
   - Safe să se adauge la mobile-fix.css v8.5
   ============================================================================ */
