/**
 * Mobile Close Button - Icon only style
 */

@media (max-width: 767px) {
    /* Close button with no background */
    .mobile-menu-close {
        position: absolute !important;
        top: 10px !important;
        right: 10px !important;
        width: 30px !important;
        height: 30px !important;
        padding: 0 !important;
        margin: 0 !important;
        
        /* Remove all backgrounds and borders */
        background: none !important;
        background-color: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        
        /* Icon styling - Red color */
        color: #e74c3c !important;
        font-size: 26px !important;
        font-weight: bold !important;
        line-height: 1 !important;
        text-shadow: none !important;
        
        /* Layout */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        
        /* Interaction */
        cursor: pointer !important;
        z-index: 10001 !important;
        transition: transform 0.3s ease, color 0.3s ease !important;
    }
    
    /* Hover state */
    .mobile-menu-close:hover {
        background: transparent !important;
        border: none !important;
        color: #c8232c !important;
        transform: rotate(90deg) scale(1.2) !important;
    }
    
    /* Focus state */
    .mobile-menu-close:focus {
        outline: none !important;
        background: transparent !important;
    }
    
    /* Active state */
    .mobile-menu-close:active {
        transform: scale(0.9) !important;
    }
    
    /* Make sure the X icon shows properly */
    .mobile-menu-close i.fa-times {
        color: inherit !important;
        font-size: inherit !important;
    }
}